-
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.0700: using "gt" sometimes does not redraw a tab * 8.1.0699: compiler warning for uninitialized variable * 8.1.0698: clearing the window is used too often * 8.1.0697: ":sign place" requires the buffer argument * 8.1.0696: when test_edit fails 'insertmode' may not be reset * 8.1.0695: internal error when using :popup * 8.1.0694: when using text props may free memory that is not allocated
- 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.0693](https://github.com/vim/vim/releases/tag/v8.1.0693): channel test fails sometimes\n* [8.1.0692](https://github.com/vim/vim/releases/tag/v8.1.0692): if a buffer was deleted a channel can't write to it | ||
* [8.1.0700](https://github.com/vim/vim/releases/tag/v8.1.0700): using "gt" sometimes does not redraw a tab\n* [8.1.0699](https://github.com/vim/vim/releases/tag/v8.1.0699): compiler warning for uninitialized variable\n* [8.1.0698](https://github.com/vim/vim/releases/tag/v8.1.0698): clearing the window is used too often\n* [8.1.0697](https://github.com/vim/vim/releases/tag/v8.1.0697): ":sign place" requires the buffer argument\n* [8.1.0696](https://github.com/vim/vim/releases/tag/v8.1.0696): when test_edit fails 'insertmode' may not be reset\n* [8.1.0695](https://github.com/vim/vim/releases/tag/v8.1.0695): internal error when using :popup\n* [8.1.0694](https://github.com/vim/vim/releases/tag/v8.1.0694): when using text props may free memory that is not allocated |
Submodule vim
updated
15 files
+25 −11 | runtime/doc/eval.txt | |
+4 −2 | runtime/doc/gui.txt | |
+27 −14 | runtime/doc/sign.txt | |
+12 −1 | src/edit.c | |
+3 −0 | src/globals.h | |
+2 −3 | src/menu.c | |
+8 −0 | src/popupmnu.c | |
+3 −0 | src/screen.c | |
+6 −1 | src/sign.c | |
+5 −1 | src/testdir/runtest.vim | |
+13 −0 | src/testdir/test_popup.vim | |
+46 −48 | src/testdir/test_signs.vim | |
+10 −3 | src/textprop.c | |
+14 −0 | src/version.c | |
+6 −7 | src/window.c |