-
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.3290: Vim9: compiling dict may use pointer after free * 8.2.3289: compiler warning for unused variable with small features * 8.2.3288: cannot easily access namespace dictionaries from Lua * 8.2.3287: channel events not handled in BufEnter autocommand * 8.2.3286: win_enter_ext() has too many boolean arguments * 8.2.3285: scdoc filetype is not recognized * 8.2.3284: no error for insert() or remove() changing a locked blob * 8.2.3283: Julia filetype is not recognized * 8.2.3282: Vim9: error about using -complete without -nargs is confusing
- 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.3281](https://github.com/vim/vim/commit/23e2e115154ef0bf05d809024eed328a46ed0f82): Vim9: TODO items in tests can be taken care of\n* [8.2.3280](https://github.com/vim/vim/commit/51ad850f5fbafa7aa3f60affa74ec9c9f992c6cc): 'virtualedit' local to buffer is not the best solution | ||
* [8.2.3290](https://github.com/vim/vim/commit/9fe17d473a6041e2ea85229f4fa09831d910def4): Vim9: compiling dict may use pointer after free\n* [8.2.3289](https://github.com/vim/vim/commit/f18e8a969a3414ed5e6b7159c40fe43963021ff3): compiler warning for unused variable with small features\n* [8.2.3288](https://github.com/vim/vim/commit/9dc4bef897a37a610a28d69cee6d30749db61296): cannot easily access namespace dictionaries from Lua\n* [8.2.3287](https://github.com/vim/vim/commit/57942237c1d54d8a236b43c56dc2b002339eb394): channel events not handled in BufEnter autocommand\n* [8.2.3286](https://github.com/vim/vim/commit/d61f2f772a59617850e9aa2f5fa069c1aad8e074): win\_enter\_ext() has too many boolean arguments\n* [8.2.3285](https://github.com/vim/vim/commit/dd097bdc1376e4ca2cfd4a4d64021b6ba0df4bed): scdoc filetype is not recognized\n* [8.2.3284](https://github.com/vim/vim/commit/80d7395dcfe96158428da6bb3d28a6eee1244e28): no error for insert() or remove() changing a locked blob\n* [8.2.3283](https://github.com/vim/vim/commit/0eec8519424eaea7baebfda979c33dd609a4e3fa): Julia filetype is not recognized\n* [8.2.3282](https://github.com/vim/vim/commit/41a3485dd638a09e4c463b1a1da231f4290454f2): Vim9: error about using -complete without -nargs is confusing |
Submodule vim
updated
17 files
+32 −0 | runtime/doc/if_lua.txt | |
+6 −0 | runtime/filetype.vim | |
+5 −2 | src/blob.c | |
+4 −3 | src/errors.h | |
+1 −1 | src/eval.c | |
+138 −0 | src/if_lua.c | |
+32 −28 | src/list.c | |
+1 −1 | src/proto/blob.pro | |
+33 −0 | src/testdir/test_blob.vim | |
+29 −0 | src/testdir/test_channel.vim | |
+3 −3 | src/testdir/test_eval_stuff.vim | |
+3 −0 | src/testdir/test_filetype.vim | |
+242 −0 | src/testdir/test_lua.vim | |
+3 −2 | src/usercmd.c | |
+18 −0 | src/version.c | |
+21 −13 | src/vim9compile.c | |
+60 −27 | src/window.c |