-
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.1601: missing changes to popup window test file * 8.1.1600: cannot specify highlighting for popup window scrollbar * 8.1.1599: compiler warning for uninitialized variable * 8.1.1598: update to test file missing * 8.1.1597: cannot scroll a popup window with the mouse * 8.1.1596: when resizing the screen may draw popup in wrong position * 8.1.1595: MS-Windows with VIMDLL: colors wrong in console
- 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 @@ | ||
* [8.1.1594](https://github.com/vim/vim/releases/tag/v8.1.1594): may still start file dialog while exiting\n* [8.1.1593](https://github.com/vim/vim/releases/tag/v8.1.1593): filetype not detected for C++ header files without extension\n* [8.1.1592](https://github.com/vim/vim/releases/tag/v8.1.1592): may start file dialog while exiting\n* [8.1.1591](https://github.com/vim/vim/releases/tag/v8.1.1591): on error garbage collection may free memory in use\n* [8.1.1590](https://github.com/vim/vim/releases/tag/v8.1.1590): popup window test fails\n* [8.1.1589](https://github.com/vim/vim/releases/tag/v8.1.1589): popup window does not indicate scroll position\n* [8.1.1588](https://github.com/vim/vim/releases/tag/v8.1.1588): in :let-heredoc line continuation is recognized | ||
* [8.1.1601](https://github.com/vim/vim/releases/tag/v8.1.1601): missing changes to popup window test file\n* [8.1.1600](https://github.com/vim/vim/releases/tag/v8.1.1600): cannot specify highlighting for popup window scrollbar\n* [8.1.1599](https://github.com/vim/vim/releases/tag/v8.1.1599): compiler warning for uninitialized variable\n* [8.1.1598](https://github.com/vim/vim/releases/tag/v8.1.1598): update to test file missing\n* [8.1.1597](https://github.com/vim/vim/releases/tag/v8.1.1597): cannot scroll a popup window with the mouse\n* [8.1.1596](https://github.com/vim/vim/releases/tag/v8.1.1596): when resizing the screen may draw popup in wrong position\n* [8.1.1595](https://github.com/vim/vim/releases/tag/v8.1.1595): MS-Windows with VIMDLL: colors wrong in console |
Submodule vim
updated
16 files
+6 −5 | runtime/doc/popup.txt | |
+32 −3 | src/normal.c | |
+49 −10 | src/popupwin.c | |
+6 −2 | src/screen.c | |
+2 −0 | src/structs.h | |
+4 −0 | src/syntax.c | |
+1 −1 | src/testdir/dumps/Test_popupwin_firstline.dump | |
+1 −1 | src/testdir/dumps/Test_popupwin_scroll_1.dump | |
+1 −1 | src/testdir/dumps/Test_popupwin_scroll_2.dump | |
+1 −1 | src/testdir/dumps/Test_popupwin_scroll_3.dump | |
+10 −0 | src/testdir/dumps/Test_popupwin_scroll_5.dump | |
+10 −0 | src/testdir/dumps/Test_popupwin_scroll_6.dump | |
+10 −0 | src/testdir/dumps/Test_popupwin_scroll_7.dump | |
+22 −0 | src/testdir/test_popupwin.vim | |
+14 −0 | src/version.c | |
+2 −0 | src/window.c |