-
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.2340: win_execute() unexpectedly returns number zero when failing * 8.2.2339: cannot get the type of a value as a string * 8.2.2338: Vim9: no error if using job_info() result wrongly * 8.2.2337: configure test for GTK only says "no" * 8.2.2336: Vim9: not possible to extend dictionary with different type * 8.2.2335: Vim9: "silent return" does not restore command modifiers * 8.2.2334: Pascal-like filetypes not always detected * 8.2.2333: Vim9: warning for uninitialized variable
- 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.2332](https://github.com/vim/vim/commit/9567efa1b4a41baca9b2266f5903d5dda7ad1e88): Vim9: missing :endif not reported when using :windo\n* [8.2.2331](https://github.com/vim/vim/commit/082517570d1dce2faf3baa9f752ce0858355d221): Vim9: wrong error when modifying dict declared with :final\n* [8.2.2330](https://github.com/vim/vim/commit/9e1d9e3473f852735ffd605a0fa4d224b81a4f0c): Vim9: crash when using :trow in a not executed block\n* [8.2.2329](https://github.com/vim/vim/commit/df4c9af7e73aa5d0fb5bf4c0e19a39b4e1d73517): not all ways Vim can be started are tested\n* [Update runtime files.](https://github.com/vim/vim/commit/82be4849eed0b8fbee45bc8da99b685ec89af59a)\n* [8.2.2328](https://github.com/vim/vim/commit/48e11c10548782f573411b6302f77adb69c40401): some test files may not be deleted | ||
* [8.2.2340](https://github.com/vim/vim/commit/37487e16da7877129edee8d11b9b7f5c8df312c6): win\_execute() unexpectedly returns number zero when failing\n* [8.2.2339](https://github.com/vim/vim/commit/a47e05f04a5a5c0369c949157c24d09cbe64ad6a): cannot get the type of a value as a string\n* [8.2.2338](https://github.com/vim/vim/commit/64ed4d4398e92ac56a9bbd66d5ec992dd4c335f7): Vim9: no error if using job\_info() result wrongly\n* [8.2.2337](https://github.com/vim/vim/commit/67876de7bbc4254268d8180d68203b965e25ed95): configure test for GTK only says "no"\n* [8.2.2336](https://github.com/vim/vim/commit/b0e6b513648db7035046613431a4aa9d71ef4653): Vim9: not possible to extend dictionary with different type\n* [8.2.2335](https://github.com/vim/vim/commit/7cd24227c02afdb4249db406e2174eda1e6b36b4): Vim9: "silent return" does not restore command modifiers\n* [8.2.2334](https://github.com/vim/vim/commit/a0122dcd1cc9e9bb62c071a9b91426a8bce4f8d9): Pascal-like filetypes not always detected\n* [8.2.2333](https://github.com/vim/vim/commit/cb6cbf29e97b7abdeb1e6cbdc5e735f5b55e97a1): Vim9: warning for uninitialized variable |
Submodule vim
updated
23 files
+21 −2 | runtime/autoload/dist/ft.vim | |
+20 −1 | runtime/doc/eval.txt | |
+4 −1 | runtime/doc/usr_41.txt | |
+3 −1 | runtime/filetype.vim | |
+4 −0 | runtime/scripts.vim | |
+4 −0 | src/auto/configure | |
+3 −0 | src/configure.ac | |
+29 −2 | src/evalfunc.c | |
+4 −0 | src/evalwindow.c | |
+1 −0 | src/globals.h | |
+62 −11 | src/list.c | |
+1 −0 | src/proto/list.pro | |
+1 −0 | src/proto/vim9type.pro | |
+2 −0 | src/testdir/test_execute_func.vim | |
+31 −1 | src/testdir/test_filetype.vim | |
+12 −0 | src/testdir/test_listdict.vim | |
+25 −0 | src/testdir/test_vim9_builtin.vim | |
+15 −0 | src/testdir/test_vim9_disassemble.vim | |
+8 −0 | src/testdir/test_vimscript.vim | |
+16 −0 | src/version.c | |
+5 −0 | src/vim9compile.c | |
+2 −2 | src/vim9execute.c | |
+25 −0 | src/vim9type.c |