-
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.2.3223: Vim: using {} block in autoloade omnifunc fails * 8.2.3222: Vim9: cannot used loop variable later as lambda argument * 8.2.3221: Vim9: argument types are not checked at compile time * 8.2.3220: Test_term_setansicolors() fails in some configurations * 8.2.3219: :find searches non-existing directories * 8.2.3218: when using xchaha20 crypt undo file is not removed * 8.2.3217: build failure * 8.2.3216: Vim9: crash when using variable in a loop at script level
- 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.3215](https://github.com/vim/vim/commit/5bca906b307728fa74a112914dc55b424d512d39): Vim9: argument types are not checked at compile time\n* [8.2.3214](https://github.com/vim/vim/commit/7d60384a00755e5c0112cebeb5e232fc133c9eca): MS-Windows: passing /D does not set the install location\n* [8.2.3213](https://github.com/vim/vim/commit/9c9472ff49b09c3d8f747b330eeb1cdb92bab449): NOCOMPOUNDSUGS entry in spell file not tested\n* [8.2.3212](https://github.com/vim/vim/commit/5a9e5845e1539592e94963fcdf5b3ad4fdc59db4): Vim9: execution speed can be improved\n* [8.2.3211](https://github.com/vim/vim/commit/7973de35ba6840b7e106e2e8a8912522e9a2a960): Vim9: argument types are not checked at compile time\n* [8.2.3210](https://github.com/vim/vim/commit/dd0b287c1ec8314034a2dbb14c4267994c47520c): Vim9: searchpair() sixth argument is compiled\n* [8.2.3209](https://github.com/vim/vim/commit/88421d6dc812a2f3b0eab34740f174c9558cb734): Vim9: lambda doesn't find block-local variable\n* [8.2.3208](https://github.com/vim/vim/commit/1a3e5747b7df7ddda312bbfd18e04fc2122001fb): dynamic library load error does not mention why it failed\n* [8.2.3207](https://github.com/vim/vim/commit/5a234eb18e6e43408755bb24e813330306c11629): Vim9: crash when compiling string fails | ||
* [8.2.3223](https://github.com/vim/vim/commit/ff34bee3a2d22f2ff7abd4519270b5518082c33d): Vim: using {} block in autoloade omnifunc fails\n* [8.2.3222](https://github.com/vim/vim/commit/3c77b6a1ce1d4a06c60bb9fae7eec2775f547d55): Vim9: cannot used loop variable later as lambda argument\n* [8.2.3221](https://github.com/vim/vim/commit/a764e73d4ffc5d046807c757eaacb9b0a5408152): Vim9: argument types are not checked at compile time\n* [8.2.3220](https://github.com/vim/vim/commit/2ec28aec9d4f1b9c1c008e36adde9fc82affae0f): Test\_term\_setansicolors() fails in some configurations\n* [8.2.3219](https://github.com/vim/vim/commit/7a4ca32175bef0f9a177052796bd9addd10dc218): :find searches non-existing directories\n* [8.2.3218](https://github.com/vim/vim/commit/8a4c812ede5b01a8e71082c1ff4ebfcbf1bd515f): when using xchaha20 crypt undo file is not removed\n* [8.2.3217](https://github.com/vim/vim/commit/3ed0d9379683246a77aa8c1a59da7a0ac6395339): build failure\n* [8.2.3216](https://github.com/vim/vim/commit/2eb6fc3b52148f961e804ec2be361d531ff770d8): Vim9: crash when using variable in a loop at script level |
Submodule vim
updated
28 files
+6 −0 | runtime/doc/editing.txt | |
+13 −4 | src/bufwrite.c | |
+1 −4 | src/crypt.c | |
+7 −3 | src/eval.c | |
+70 −10 | src/evalfunc.c | |
+1 −7 | src/evalvars.c | |
+1 −1 | src/ex_cmds.h | |
+4 −14 | src/ex_eval.c | |
+9 −0 | src/findfile.c | |
+1 −1 | src/globals.h | |
+5 −1 | src/popupwin.c | |
+2 −0 | src/proto/typval.pro | |
+1 −0 | src/proto/undo.pro | |
+3 −0 | src/structs.h | |
+3 −3 | src/testdir/test_assert.vim | |
+4 −3 | src/testdir/test_crypt.vim | |
+22 −0 | src/testdir/test_findfile.vim | |
+31 −0 | src/testdir/test_ins_complete.vim | |
+67 −2 | src/testdir/test_vim9_builtin.vim | |
+10 −1 | src/testdir/test_vim9_func.vim | |
+30 −2 | src/testdir/test_vim9_script.vim | |
+18 −1 | src/testing.c | |
+27 −0 | src/typval.c | |
+22 −0 | src/undo.c | |
+36 −22 | src/userfunc.c | |
+16 −0 | src/version.c | |
+15 −2 | src/vim9compile.c | |
+54 −30 | src/vim9script.c |