-
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.
* 9.0.0995: padding before virtual text is highlighted * 9.0.0994: tests for empty prop type name fail * 9.0.0993: display errors when adding or removing text property type * 9.0.0992: Vim9 script: get E1096 when comment follows return * 9.0.0991: crash when reading help index with various options set * 9.0.0990: callback name argument is changed by setqflist() * 9.0.0989: popupwin test is more flaky on MacOS * 9.0.0988: using feedkeys() does not show up in a channel log * 9.0.0987: file missing from list of distributed files * 9.0.0986: build failure with tiny version * 9.0.0985: when using kitty keyboard protocol function keys may not work
- 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 @@ | ||
* [9.0.0984](https://github.com/vim/vim/commit/023930d62e898652e68c938c6d7ac232556cb7a9): GUI: remote\_foreground() does not always work\n* [9.0.0983](https://github.com/vim/vim/commit/184a622adaa4c3d413ee0d38da063474b67ccfe3): stray characters displayed when starting the GUI\n* [9.0.0982](https://github.com/vim/vim/commit/45e4eead2aaf9d883bcf19db779be47ffb4fa44a): 'cursorline' not drawn before virtual text below\n* [9.0.0981](https://github.com/vim/vim/commit/c3f1881aedae5e9a584bacf5a06944fba6357259): build error in tiny version\n* [9.0.0980](https://github.com/vim/vim/commit/733a69b29f0b0c3d2ddca463a41bdd912379bc5e): the keyboard state response may end up in a shell command\n* [9.0.0979](https://github.com/vim/vim/commit/4f501171f7ba8fe3d24c7e5bf5fcec5b5f246df1): ch\_log() text can be hard to find in the log file | ||
* [9.0.0995](https://github.com/vim/vim/commit/37f088eeade7972bce45b663adaba4bf102a9999): padding before virtual text is highlighted\n* [9.0.0994](https://github.com/vim/vim/commit/267db7c3e32e1b55726e72966c75e8549621f9d6): tests for empty prop type name fail\n* [9.0.0993](https://github.com/vim/vim/commit/89469d157aea01513bde826b4519dd6b5fbceae4): display errors when adding or removing text property type\n* [9.0.0992](https://github.com/vim/vim/commit/500c4442834363e02541da564f0b87b82d5783cd): Vim9 script: get E1096 when comment follows return\n* [9.0.0991](https://github.com/vim/vim/commit/c67c89c7589253215d57bad588edcf83a9403560): crash when reading help index with various options set\n* [9.0.0990](https://github.com/vim/vim/commit/c96b7f5d2af241c5eb1589e9da3dc09e45355e65): callback name argument is changed by setqflist()\n* [9.0.0989](https://github.com/vim/vim/commit/9c8d12c8115640927823919001a03c79d4118063): popupwin test is more flaky on MacOS\n* [9.0.0988](https://github.com/vim/vim/commit/b55ae8ce42c8a83d14bfde2c138fcc74f447de68): using feedkeys() does not show up in a channel log\n* [9.0.0987](https://github.com/vim/vim/commit/cf650b7c9bf8310e2d5b04edced6f7290b759044): file missing from list of distributed files\n* [9.0.0986](https://github.com/vim/vim/commit/5390c05a3ca712da8fc56b14517c99c740551c0b): build failure with tiny version\n* [9.0.0985](https://github.com/vim/vim/commit/1a173409ae6a39d59ff99cf3d567c25e859f9ecd): when using kitty keyboard protocol function keys may not work |
Submodule vim
updated
30 files
+1 −0 | Filelist | |
+2 −0 | src/change.c | |
+5 −1 | src/charset.c | |
+29 −31 | src/drawline.c | |
+59 −54 | src/evalfunc.c | |
+8 −12 | src/evalvars.c | |
+23 −20 | src/job.c | |
+14 −0 | src/move.c | |
+2 −0 | src/option.c | |
+15 −1 | src/popupwin.c | |
+1 −0 | src/proto/move.pro | |
+1 −0 | src/proto/textprop.pro | |
+4 −0 | src/quickfix.c | |
+165 −68 | src/term.c | |
+8 −0 | src/testdir/dumps/Test_prop_below_after_empty_3.dump | |
+10 −0 | src/testdir/dumps/Test_prop_delete_updates_1.dump | |
+10 −0 | src/testdir/dumps/Test_prop_delete_updates_2.dump | |
+10 −0 | src/testdir/dumps/Test_prop_delete_updates_3.dump | |
+18 −0 | src/testdir/test_breakindent.vim | |
+5 −2 | src/testdir/test_popupwin.vim | |
+12 −0 | src/testdir/test_quickfix.vim | |
+74 −0 | src/testdir/test_termcodes.vim | |
+42 −1 | src/testdir/test_textprop.vim | |
+4 −4 | src/testdir/test_vim9_builtin.vim | |
+11 −0 | src/testdir/test_vim9_func.vim | |
+12 −0 | src/testdir/view_util.vim | |
+32 −14 | src/textprop.c | |
+2 −0 | src/time.c | |
+22 −0 | src/version.c | |
+2 −1 | src/vim9cmds.c |