-
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.4141: Vim9 builtin functions test fails * 8.2.4140: maparg() does not indicate the type of script * 8.2.4139: using freed memory in expression abbreviation * 8.2.4138: Vim9: no error for return with argument when invalid * 8.2.4137: Vim9: calling import with and without method is inconsistent * 8.2.4136: Vim9: the "autoload" argument of ":vim9script" is not useful * 8.2.4135: Vim9: ":scriptnames" shows unloaded imported autoload script * 8.2.4134: MS-Windows: test for import with absolute path fails * 8.2.4133: output of ":scriptnames" goes into the message history * 8.2.4132: Vim9: wrong error message when autoload script can't be found * 8.2.4131: Vim9: calling function in autoload import does not work * 8.2.4130: MS-Windows: MSVC build may have libraries duplicated * 8.2.4129: building with +sound but without +eval fails * 8.2.4128: crash when method cannot be found
- 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.4127](https://github.com/vim/vim/commit/78f60322f70ab91a32e572fbf3d97c792acbc83a): build failure without the +eval feature\n* [8.2.4126](https://github.com/vim/vim/commit/afa76e1cf2e7e1f9e1097e345a4272e9ddbf14ad): crash on exit when built with dynamic Tcl\n* [8.2.4125](https://github.com/vim/vim/commit/b3d9ceed2bc96acb7a2388e138559df6282118af): completion tests fail\n* [8.2.4124](https://github.com/vim/vim/commit/6389baa6691fde4ca56ec6243ed83322543df300): Vim9: method in compiled function may not see script item\n* [8.2.4123](https://github.com/vim/vim/commit/15d1635e50896002fbd4ebbc896b78a155b2487d): complete function cannot be import.Name\n* [8.2.4122](https://github.com/vim/vim/commit/3f3597be3ffa9ae226b2e9831e4ed64c8ae43c42): ":command Cmd" does not show custom completion argument\n* [8.2.4121](https://github.com/vim/vim/commit/262898ae43fa223916cfa27b0de81e5d9f3fc4b0): Visual test fails on MS-Windows\n* [8.2.4120](https://github.com/vim/vim/commit/9f8c304c8a390ade133bac29963dc8e56ab14cbc): block insert goes over the end of the line\n* [8.2.4119](https://github.com/vim/vim/commit/e8741a73e20cd6043dd1610fb4c22ae9d132eb56): build failure when disabling the channel feature | ||
* [8.2.4141](https://github.com/vim/vim/commit/17dd51963367495f75b0f0a73139081dd7b25500): Vim9 builtin functions test fails\n* [8.2.4140](https://github.com/vim/vim/commit/a9528b39a666dbaa026320f73bae4b1628a7fe51): maparg() does not indicate the type of script\n* [8.2.4139](https://github.com/vim/vim/commit/94075b2b0e8e3b75334799d2c082497fbf85ffa1): using freed memory in expression abbreviation\n* [8.2.4138](https://github.com/vim/vim/commit/ef7aadbe36ad43a1b909f5f6c7e9b170ad62ef91): Vim9: no error for return with argument when invalid\n* [8.2.4137](https://github.com/vim/vim/commit/d02dce2bb572f0e6b4570442e9cdbed14ef41820): Vim9: calling import with and without method is inconsistent\n* [8.2.4136](https://github.com/vim/vim/commit/fd218c8a36e7ed33f7a205163690c5b7d2f31f8a): Vim9: the "autoload" argument of ":vim9script" is not useful\n* [8.2.4135](https://github.com/vim/vim/commit/6079da7cfb10c798535224c92db7fedd3914cb71): Vim9: ":scriptnames" shows unloaded imported autoload script\n* [8.2.4134](https://github.com/vim/vim/commit/113b8dc111febf605cd1492788353be6c3931fce): MS-Windows: test for import with absolute path fails\n* [8.2.4133](https://github.com/vim/vim/commit/840f16202e1ae2d574507ef52a7e8a98775f243c): output of ":scriptnames" goes into the message history\n* [8.2.4132](https://github.com/vim/vim/commit/1836d6157828baddd94e1f2c82488031570e444d): Vim9: wrong error message when autoload script can't be found\n* [8.2.4131](https://github.com/vim/vim/commit/cbbc48f64b9cfd88720dc94b0578a3726f725178): Vim9: calling function in autoload import does not work\n* [8.2.4130](https://github.com/vim/vim/commit/31dcc8de463843e3378bb15a16247940d6a147e4): MS-Windows: MSVC build may have libraries duplicated\n* [8.2.4129](https://github.com/vim/vim/commit/1247126956c2ba666048b2bf99630eef7495e98e): building with +sound but without +eval fails\n* [8.2.4128](https://github.com/vim/vim/commit/64283d5e1f5487e2dbaa17d478e6eae040daa064): crash when method cannot be found |
Submodule vim
updated
22 files
+2 −0 | runtime/doc/builtin.txt | |
+6 −4 | runtime/doc/repeat.txt | |
+8 −7 | runtime/doc/vim9.txt | |
+9 −6 | src/Make_mvc.mak | |
+22 −10 | src/auto/configure | |
+21 −10 | src/configure.ac | |
+1 −2 | src/errors.h | |
+7 −2 | src/eval.c | |
+29 −10 | src/map.c | |
+14 −4 | src/scriptfile.c | |
+8 −4 | src/testdir/test_maparg.vim | |
+13 −1 | src/testdir/test_mapping.vim | |
+4 −0 | src/testdir/test_scriptnames.vim | |
+1 −0 | src/testdir/test_vim9_builtin.vim | |
+8 −0 | src/testdir/test_vim9_expr.vim | |
+14 −0 | src/testdir/test_vim9_func.vim | |
+170 −9 | src/testdir/test_vim9_import.vim | |
+28 −0 | src/version.c | |
+5 −7 | src/vim9cmds.c | |
+18 −8 | src/vim9execute.c | |
+11 −2 | src/vim9expr.c | |
+28 −23 | src/vim9script.c |