-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 8.1.2214: too much is redrawn when 'cursorline' is set * 8.1.2213: popup_textprop tests fail * 8.1.2212: cannot see the selection type in :reg output * 8.1.2211: listener callback "added" argument is not the total * 8.1.2210: using negative offset for popup_create() does not work * 8.1.2209: LF in escape codes may be expanded to CR-LF * 8.1.2208: Unix: Tabs in output might be expanded to spaces * 8.1.2207: "gn" doesn't work quite right * 8.1.2206: no test for fixed issue #3893 * 8.1.2205: sign entry structure has confusing name
- 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.2204](https://github.com/vim/vim/releases/tag/v8.1.2204): crash on exit when closing terminals\n* [8.1.2203](https://github.com/vim/vim/releases/tag/v8.1.2203): running libvterm tests without the +terminal feature\n* [8.1.2202](https://github.com/vim/vim/releases/tag/v8.1.2202): MS-Windows: build failure with GUI and small features\n* [8.1.2201](https://github.com/vim/vim/releases/tag/v8.1.2201): cannot build with dynamically linked Python 3.8 | ||
* [8.1.2214](https://github.com/vim/vim/releases/tag/v8.1.2214): too much is redrawn when 'cursorline' is set\n* [8.1.2213](https://github.com/vim/vim/releases/tag/v8.1.2213): popup_textprop tests fail\n* [8.1.2212](https://github.com/vim/vim/releases/tag/v8.1.2212): cannot see the selection type in :reg output\n* [8.1.2211](https://github.com/vim/vim/releases/tag/v8.1.2211): listener callback "added" argument is not the total\n* [8.1.2210](https://github.com/vim/vim/releases/tag/v8.1.2210): using negative offset for popup_create() does not work\n* [8.1.2209](https://github.com/vim/vim/releases/tag/v8.1.2209): LF in escape codes may be expanded to CR-LF\n* [8.1.2208](https://github.com/vim/vim/releases/tag/v8.1.2208): Unix: Tabs in output might be expanded to spaces\n* [8.1.2207](https://github.com/vim/vim/releases/tag/v8.1.2207): "gn" doesn't work quite right\n* [8.1.2206](https://github.com/vim/vim/releases/tag/v8.1.2206): no test for fixed issue #3893\n* [8.1.2205](https://github.com/vim/vim/releases/tag/v8.1.2205): sign entry structure has confusing name |
Submodule vim
updated
28 files
+7 −3 | runtime/doc/change.txt | |
+15 −10 | src/change.c | |
+7 −6 | src/drawline.c | |
+6 −1 | src/drawscreen.c | |
+1 −1 | src/globals.h | |
+8 −15 | src/main.c | |
+22 −22 | src/netbeans.c | |
+15 −5 | src/os_unix.c | |
+22 −11 | src/popupwin.c | |
+19 −9 | src/register.c | |
+78 −92 | src/search.c | |
+157 −157 | src/sign.c | |
+17 −18 | src/structs.h | |
+10 −17 | src/term.c | |
+1 −1 | src/testdir/dumps/Test_Xcursorline_13.dump | |
+1 −1 | src/testdir/dumps/Test_Xcursorline_14.dump | |
+1 −1 | src/testdir/dumps/Test_Xcursorline_15.dump | |
+1 −1 | src/testdir/dumps/Test_Xcursorline_16.dump | |
+1 −1 | src/testdir/dumps/Test_Xcursorline_17.dump | |
+1 −1 | src/testdir/dumps/Test_Xcursorline_18.dump | |
+10 −10 | src/testdir/dumps/Test_popupwin_corners.dump | |
+5 −0 | src/testdir/dumps/Test_winline_rnu.dump | |
+23 −0 | src/testdir/test_display.vim | |
+21 −0 | src/testdir/test_gn.vim | |
+7 −2 | src/testdir/test_listener.vim | |
+11 −3 | src/testdir/test_popupwin.vim | |
+14 −14 | src/testdir/test_registers.vim | |
+20 −0 | src/version.c |