-
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.2.2637: prop_remove() causes a redraw even when nothing changed * 8.2.2636: memory leak when compiling inline function * 8.2.2635: Vim9: cannot define an inline function * 8.2.2634: 'tagfunc' does not indicate using a pattern * 8.2.2633: multi-byte 'fillchars' for folding do not show properly
- 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.2.2632](https://github.com/vim/vim/commit/c5cf369e9543ff065e2e1da91da3218c223840e2): not all command line arguments are tested\n* [8.2.2631](https://github.com/vim/vim/commit/a0c8aea479ca055ce43ba2984a9933f6c48e6161): commands from winrestcmd() do not always work properly\n* [8.2.2630](https://github.com/vim/vim/commit/592f57f5fec1064cc276a0d7992cc543bed04fd5): hard to see where a test gets stuck\n* [8.2.2629](https://github.com/vim/vim/commit/a0399efa72380115a3eb650544dd64e459476bd2): Vim9: error for #{{ is not desired\n* [8.2.2628](https://github.com/vim/vim/commit/5c7a299c1652b28977c30e3e3a5ab93c65e7f7ed): Vim9: #{ can still be used at the script level\n* [8.2.2627](https://github.com/vim/vim/commit/4355894869355c185e7810e67d52802453576e81): no need to check for BSD after checking for not root\n* [8.2.2626](https://github.com/vim/vim/commit/240014321b0aa5d6eb00a70865fa9935fd888d60): GTK3: error when starting up and -geometry is given | ||
* [8.2.2637](https://github.com/vim/vim/commit/09f8b3a02200a1900a8bb41d7436f9d17ebd2d1b): prop\_remove() causes a redraw even when nothing changed\n* [8.2.2636](https://github.com/vim/vim/commit/67da21a14726b106b49744f9773eba132fedd5f2): memory leak when compiling inline function\n* [8.2.2635](https://github.com/vim/vim/commit/7a6eaa06f98cef61d2131c25b4b47b8262cb8f59): Vim9: cannot define an inline function\n* [8.2.2634](https://github.com/vim/vim/commit/f90c855c71863296859780f7b4e0386e96f1c465): 'tagfunc' does not indicate using a pattern\n* [8.2.2633](https://github.com/vim/vim/commit/196a1f740981e878091fa124a400d1fc4bfa2bb0): multi-byte 'fillchars' for folding do not show properly |
Submodule vim
updated
16 files
+10 −4 | runtime/doc/tagsrch.txt | |
+4 −0 | src/errors.h | |
+2 −2 | src/eval.c | |
+2 −1 | src/globals.h | |
+3 −2 | src/misc2.c | |
+1 −0 | src/proto/vim9compile.pro | |
+6 −1 | src/screen.c | |
+3 −0 | src/structs.h | |
+4 −3 | src/tag.c | |
+6 −0 | src/testdir/test_fold.vim | |
+13 −1 | src/testdir/test_tagfunc.vim | |
+19 −0 | src/testdir/test_vim9_expr.vim | |
+2 −1 | src/textprop.c | |
+617 −438 | src/userfunc.c | |
+10 −0 | src/version.c | |
+20 −4 | src/vim9compile.c |