-
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.4058: Vim9: import test failure in wrong line * 8.2.4057: Vim9: not fully implementing the autoload mechanism * 8.2.4056: Vim9: memory leak when exporting function in autoload script * 8.2.4055: Vim9: line break in expression causes v:errmsg to be fillec * 8.2.4054: Vim9 script test fails * 8.2.4053: Vim9: autoload mechanism doesn't fully work yet * 8.2.4052: not easy to resize a window from a plugin * 8.2.4051: compiler complains about possibly 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.4050](https://github.com/vim/vim/commit/dc4451df61a6aa12a0661817b7094fb32f09e11d): Vim9: need to prefix every item in an autoload script\n* [8.2.4049](https://github.com/vim/vim/commit/5f25c3855071bd7e26255c68bf458b1b5cf92f39): Vim9: reading before the start of the line with "$"\n* [8.2.4048](https://github.com/vim/vim/commit/c14f667626ba677a767d474324306e39096dc43e): gcc complains about use of "%p" in printf\n* [8.2.4047](https://github.com/vim/vim/commit/f85a424c832777892c4efaff163c2fa710ce8d91): depending on the build features error messages are unused\n* [Update runtime files](https://github.com/vim/vim/commit/2f0936cb9a2eb026acac03e6a8fd0b2a5d97508b) | ||
* [8.2.4058](https://github.com/vim/vim/commit/762838218feb223f53ab87d80928dadd991a1746): Vim9: import test failure in wrong line\n* [8.2.4057](https://github.com/vim/vim/commit/160aa86a9d5f4b99437bf48ef16400de33bf2f50): Vim9: not fully implementing the autoload mechanism\n* [8.2.4056](https://github.com/vim/vim/commit/6990b78f253eb7f3ebd296fd5c8353e3da1cc8f2): Vim9: memory leak when exporting function in autoload script\n* [8.2.4055](https://github.com/vim/vim/commit/5e6b9882fe0218ae4878f6ad0561c8654a2277d8): Vim9: line break in expression causes v:errmsg to be fillec\n* [8.2.4054](https://github.com/vim/vim/commit/577bd85d55f30019c890ec80fd44d91108ec35c9): Vim9 script test fails\n* [8.2.4053](https://github.com/vim/vim/commit/fe2ef0b2cda0b25c45bd9e320f8b77931ee8ef2e): Vim9: autoload mechanism doesn't fully work yet\n* [8.2.4052](https://github.com/vim/vim/commit/ee63031b572eb7aea27be4c7e3dafba0daaf681b): not easy to resize a window from a plugin\n* [8.2.4051](https://github.com/vim/vim/commit/b06cfcf5a3b0248527fd70f9323272aa96db2f56): compiler complains about possibly uninitialized variable |
Submodule vim
updated
18 files
+31 −0 | runtime/doc/builtin.txt | |
+2 −0 | runtime/doc/usr_41.txt | |
+4 −0 | src/evalfunc.c | |
+38 −11 | src/evalvars.c | |
+50 −0 | src/evalwindow.c | |
+2 −0 | src/proto/evalwindow.pro | |
+1 −0 | src/proto/scriptfile.pro | |
+1 −1 | src/proto/vim9script.pro | |
+59 −29 | src/scriptfile.c | |
+3 −1 | src/structs.h | |
+16 −0 | src/testdir/test_vim9_expr.vim | |
+245 −0 | src/testdir/test_vim9_import.vim | |
+0 −168 | src/testdir/test_vim9_script.vim | |
+98 −0 | src/testdir/test_window_cmd.vim | |
+13 −5 | src/userfunc.c | |
+16 −0 | src/version.c | |
+12 −0 | src/vim9compile.c | |
+29 −12 | src/vim9script.c |