-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 8.1.1446: popup window callback not implemented yet * 8.1.1445: popup window border highlight not implemented yet * 8.1.1444: not using double line characters for popup border * 8.1.1443: popup window padding and border not implemented yet * 8.1.1442: popup windows not considered when the Vim window is resized * 8.1.1441: popup window filter not yet implemented * 8.1.1440: win_execute() test fails * 8.1.1439: json_encode() is very slow for large results * 8.1.1438: some commands cause trouble in a popup window * 8.1.1437: code to handle callbacks is duplicated
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* Update runtime files.\n* [8.1.1436](https://github.com/vim/vim/releases/tag/v8.1.1436): writefile test fails when run under /tmp\n* [8.1.1435](https://github.com/vim/vim/releases/tag/v8.1.1435): memory usage test is a bit too flaky\n* [8.1.1434](https://github.com/vim/vim/releases/tag/v8.1.1434): test 3 is old style\n* [8.1.1433](https://github.com/vim/vim/releases/tag/v8.1.1433): win_execute() may leave popup window focused | ||
* [8.1.1446](https://github.com/vim/vim/releases/tag/v8.1.1446): popup window callback not implemented yet\n* [8.1.1445](https://github.com/vim/vim/releases/tag/v8.1.1445): popup window border highlight not implemented yet\n* [8.1.1444](https://github.com/vim/vim/releases/tag/v8.1.1444): not using double line characters for popup border\n* [8.1.1443](https://github.com/vim/vim/releases/tag/v8.1.1443): popup window padding and border not implemented yet\n* [8.1.1442](https://github.com/vim/vim/releases/tag/v8.1.1442): popup windows not considered when the Vim window is resized\n* [8.1.1441](https://github.com/vim/vim/releases/tag/v8.1.1441): popup window filter not yet implemented\n* [8.1.1440](https://github.com/vim/vim/releases/tag/v8.1.1440): win_execute() test fails\n* [8.1.1439](https://github.com/vim/vim/releases/tag/v8.1.1439): json_encode() is very slow for large results\n* [8.1.1438](https://github.com/vim/vim/releases/tag/v8.1.1438): some commands cause trouble in a popup window\n* [8.1.1437](https://github.com/vim/vim/releases/tag/v8.1.1437): code to handle callbacks is duplicated |
Submodule vim
updated
28 files
+59 −28 | runtime/doc/popup.txt | |
+1 −1 | src/buffer.c | |
+11 −13 | src/change.c | |
+118 −160 | src/channel.c | |
+11 −10 | src/eval.c | |
+99 −55 | src/evalfunc.c | |
+9 −17 | src/ex_cmds2.c | |
+11 −0 | src/ex_docmd.c | |
+4 −0 | src/getchar.c | |
+6 −0 | src/macros.h | |
+24 −3 | src/misc2.c | |
+290 −8 | src/popupwin.c | |
+1 −1 | src/proto/channel.pro | |
+4 −2 | src/proto/evalfunc.pro | |
+1 −0 | src/proto/misc2.pro | |
+4 −0 | src/proto/popupwin.pro | |
+1 −0 | src/proto/userfunc.pro | |
+191 −51 | src/screen.c | |
+39 −36 | src/structs.h | |
+15 −0 | src/testdir/dumps/Test_popupwin_20.dump | |
+15 −0 | src/testdir/dumps/Test_popupwin_21.dump | |
+12 −0 | src/testdir/dumps/Test_popupwin_22.dump | |
+0 −2 | src/testdir/test_execute_func.vim | |
+145 −2 | src/testdir/test_popupwin.vim | |
+24 −0 | src/userfunc.c | |
+20 −0 | src/version.c | |
+1 −1 | src/vim.h | |
+21 −2 | src/window.c |