-
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.1764: ":browse oldfiles" is not tested * 8.1.1763: evalfunc.c is still too big * 8.1.1762: some filetype rules are in the wrong place * 8.1.1761: filetype "vuejs" causes problems for some users * 8.1.1760: extra line break for wrapping output of :args * 8.1.1759: no mode char for terminal mapping from maparg() * 8.1.1758: count of g$ not used correctly when text is not wrapped * 8.1.1757: text added with appendbufline() isn't displayed * 8.1.1756: autocommand that splits window messes up window layout
- 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.1755](https://github.com/vim/vim/releases/tag/v8.1.1755): leaking memory when using a popup window mask\n* [8.1.1754](https://github.com/vim/vim/releases/tag/v8.1.1754): build failure\n* [8.1.1753](https://github.com/vim/vim/releases/tag/v8.1.1753): use of popup window mask is inefficient\n* [8.1.1752](https://github.com/vim/vim/releases/tag/v8.1.1752): resizing hashtable is inefficient\n* [8.1.1751](https://github.com/vim/vim/releases/tag/v8.1.1751): when redrawing popups plines_win() may be called often\n* [8.1.1750](https://github.com/vim/vim/releases/tag/v8.1.1750): depending on the terminal width :version may miss a line break | ||
* [8.1.1764](https://github.com/vim/vim/releases/tag/v8.1.1764): ":browse oldfiles" is not tested\n* [8.1.1763](https://github.com/vim/vim/releases/tag/v8.1.1763): evalfunc.c is still too big\n* [8.1.1762](https://github.com/vim/vim/releases/tag/v8.1.1762): some filetype rules are in the wrong place\n* [8.1.1761](https://github.com/vim/vim/releases/tag/v8.1.1761): filetype "vuejs" causes problems for some users\n* [8.1.1760](https://github.com/vim/vim/releases/tag/v8.1.1760): extra line break for wrapping output of :args\n* [8.1.1759](https://github.com/vim/vim/releases/tag/v8.1.1759): no mode char for terminal mapping from maparg()\n* [8.1.1758](https://github.com/vim/vim/releases/tag/v8.1.1758): count of g$ not used correctly when text is not wrapped\n* [8.1.1757](https://github.com/vim/vim/releases/tag/v8.1.1757): text added with appendbufline() isn't displayed\n* [8.1.1756](https://github.com/vim/vim/releases/tag/v8.1.1756): autocommand that splits window messes up window layout |
Submodule vim
updated
21 files
+6 −6 | runtime/filetype.vim | |
+70 −0 | src/blob.c | |
+7 −0 | src/buffer.c | |
+79 −2 | src/dict.c | |
+6 −677 | src/evalfunc.c | |
+2 −0 | src/getchar.c | |
+537 −0 | src/list.c | |
+5 −1 | src/normal.c | |
+1 −0 | src/proto/blob.pro | |
+5 −0 | src/proto/dict.pro | |
+5 −0 | src/proto/list.pro | |
+10 −0 | src/testdir/dumps/Test_appendbufline_1.dump | |
+19 −0 | src/testdir/test_arglist.vim | |
+26 −0 | src/testdir/test_bufline.vim | |
+9 −6 | src/testdir/test_filetype.vim | |
+6 −0 | src/testdir/test_maparg.vim | |
+55 −0 | src/testdir/test_normal.vim | |
+6 −0 | src/testdir/test_viminfo.vim | |
+3 −2 | src/testdir/test_window_cmd.vim | |
+27 −6 | src/version.c | |
+64 −1 | src/window.c |