-
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.2019: 'cursorline' always highlights the whole line * 8.1.2018: using freed memory when out of memory and displaying message * 8.1.2017: cannot execute commands after closing the cmdline window
- 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.2016](https://github.com/vim/vim/releases/tag/v8.1.2016): terminal altscreen test now fails on MS-Windows\n* [8.1.2015](https://github.com/vim/vim/releases/tag/v8.1.2015): terminal altscreen test still fails sometimes\n* [8.1.2014](https://github.com/vim/vim/releases/tag/v8.1.2014): terminal altscreen test fails sometimes\n* [8.1.2013](https://github.com/vim/vim/releases/tag/v8.1.2013): more functions can be used as methods\n* [8.1.2012](https://github.com/vim/vim/releases/tag/v8.1.2012): more functions can be used as methods\n* [8.1.2011](https://github.com/vim/vim/releases/tag/v8.1.2011): more functions can be used as methods\n* [8.1.2010](https://github.com/vim/vim/releases/tag/v8.1.2010): new file uses old style comments\n* [8.1.2009](https://github.com/vim/vim/releases/tag/v8.1.2009): cursorline highlighting not updated in popup window\n* [8.1.2008](https://github.com/vim/vim/releases/tag/v8.1.2008): error for invalid range when using listener and undo\n* [8.1.2007](https://github.com/vim/vim/releases/tag/v8.1.2007): no test for what 8.1.1926 fixes | ||
* [8.1.2019](https://github.com/vim/vim/releases/tag/v8.1.2019): 'cursorline' always highlights the whole line\n* [8.1.2018](https://github.com/vim/vim/releases/tag/v8.1.2018): using freed memory when out of memory and displaying message\n* [8.1.2017](https://github.com/vim/vim/releases/tag/v8.1.2017): cannot execute commands after closing the cmdline window |
Submodule vim
updated
20 files
+2 −4 | runtime/doc/autocmd.txt | |
+3 −5 | runtime/doc/cmdline.txt | |
+16 −3 | runtime/doc/options.txt | |
+1 −0 | runtime/doc/quickref.txt | |
+2 −1 | runtime/doc/syntax.txt | |
+3 −0 | runtime/optwin.vim | |
+18 −28 | src/ex_getln.c | |
+13 −10 | src/main.c | |
+0 −5 | src/message.c | |
+9 −4 | src/normal.c | |
+24 −0 | src/option.c | |
+1 −0 | src/option.h | |
+10 −5 | src/screen.c | |
+2 −0 | src/structs.h | |
+1 −0 | src/testdir/Make_all.mak | |
+1 −0 | src/testdir/gen_opt_test.vim | |
+1 −0 | src/testdir/test_alot.vim | |
+33 −2 | src/testdir/test_cmdline.vim | |
+108 −0 | src/testdir/test_cursorline.vim | |
+6 −0 | src/version.c |