-
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.0752: Rprofile files are not recognized * 9.0.0751: 'scrolloff' does not work well with 'smoothscroll' * 9.0.0750: crash when popup closed in callback * 9.0.0749: alloc/free of buffer for each quickfix entry is inefficient * 9.0.0748: Kitty may send key without modifiers with CSI u code
- 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.0747](https://github.com/vim/vim/commit/ba43e76fcd5b2da57dbaa4d9a555793fe8ac344e): too many #ifdefs\n* [9.0.0746](https://github.com/vim/vim/commit/856c5d2bc7c3864f8b63a0ab3e376d5c5e51f1d5): breakindent test cases are commented out\n* [9.0.0745](https://github.com/vim/vim/commit/4b6172e108fe06be47c09f8690dc54608be3ee80): wrong cursor position when using "gj" and "gk" in a long line\n* [9.0.0744](https://github.com/vim/vim/commit/6c4d4a64449ea225b1a568f5517e309b2054b490): in script in autoload dir exported variable is not found\n* [9.0.0743](https://github.com/vim/vim/commit/66b8d2a89efb6bd482e3160c7494e646e31aea27): starting cscope on Unix does not quote the arguments right\n* [9.0.0742](https://github.com/vim/vim/commit/3558afe9e9e904cabb8475392d859f2d2fc21041): reading past end of the line when compiling a function\n* [9.0.0741](https://github.com/vim/vim/commit/d93009eb35c88bfc38781fefdf42ebdb02c61474): cannot specify an ID for each item with prop\_add\_list()\n* [9.0.0740](https://github.com/vim/vim/commit/4997f2a605e15261c4f825494324371f271ef6a8): prop\_add\_list() gives multiple errors for invalid argument\n* [9.0.0739](https://github.com/vim/vim/commit/17822c507c03d509037c9ee5eee5cfbb201b3f01): mouse column not correctly used for popup\_setpos\n* [9.0.0738](https://github.com/vim/vim/commit/91ccbad5ded8bcf2cc93a873ff2c3179b0c548c7): cannot suppress completion "scanning" messages\n* [9.0.0737](https://github.com/vim/vim/commit/d26c5805bcbd630dab0478c2d22503a6e32a83c1): Lisp word only recognized when a space follows\n* [9.0.0736](https://github.com/vim/vim/commit/f8412c9d7cc487dacf47a217ae947da68a525c53): quickfix listing does not handle very long messages | ||
* [9.0.0752](https://github.com/vim/vim/commit/7e120ffccbf81ae8acac28f11fbd5eab79a1630d): Rprofile files are not recognized\n* [9.0.0751](https://github.com/vim/vim/commit/c9121f798f49fa71e814912cb186d89c164090c3): 'scrolloff' does not work well with 'smoothscroll'\n* [9.0.0750](https://github.com/vim/vim/commit/0abd6cf62d65180dc2c40d67cd95f13b0691f7ea): crash when popup closed in callback\n* [9.0.0749](https://github.com/vim/vim/commit/975a665d4811649a51e2c6a97a6ce096290d87ae): alloc/free of buffer for each quickfix entry is inefficient\n* [9.0.0748](https://github.com/vim/vim/commit/b9c09c118e951bc6ea2059941101939dc572b4ce): Kitty may send key without modifiers with CSI u code |
Submodule vim
updated
20 files
+3 −0 | runtime/filetype.vim | |
+1 −9 | src/alloc.c | |
+14 −3 | src/charset.c | |
+2 −2 | src/drawscreen.c | |
+2 −2 | src/edit.c | |
+1 −1 | src/ex_cmds.c | |
+2 −2 | src/misc2.c | |
+33 −7 | src/move.c | |
+4 −4 | src/normal.c | |
+1 −1 | src/ops.c | |
+1 −2 | src/popupwin.c | |
+2 −1 | src/proto/charset.pro | |
+1 −0 | src/proto/quickfix.pro | |
+1 −1 | src/proto/syntax.pro | |
+78 −43 | src/quickfix.c | |
+3 −1 | src/syntax.c | |
+56 −12 | src/term.c | |
+1 −1 | src/testdir/test_filetype.vim | |
+18 −0 | src/testdir/test_termcodes.vim | |
+10 −0 | src/version.c |