-
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.0295: highlighting for :s wrong when using different separator * 8.2.0294: cannot use Ex command that is also a function name * 8.2.0293: various Ex commands not sufficiently tested
- 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.0292](https://github.com/vim/vim/commit/09f28f49c9b5973593f8a9b445cdc2ed3da630b6): Vim9: CHECKNR and CHECKTYPE instructions not tested\n* [8.2.0291](https://github.com/vim/vim/commit/436472f5e0328dc4a635b1c344c04a62d64132ea): Vim9: assigning \[\] to list\<string> doesn't work\n* [8.2.0290](https://github.com/vim/vim/commit/85683ec620be199d63af3b0542a03eeb72b08fb6): running individual test differs from all tests\n* [8.2.0289](https://github.com/vim/vim/commit/e0807ea4a715334bd9a4795d98cad6e7925b5281): Vim9: :echo did not clear the rest of the line\n* [8.2.0288](https://github.com/vim/vim/commit/0062c2d4f91caa2360933068ac46c55bdd303b53): Vim9: some float and blob operators not tested\n* [8.2.0287](https://github.com/vim/vim/commit/f575adff06d4bc5f670939567ce86974683deb7a): Vim9: return in try block not tested; catch not tested\n* [8.2.0286](https://github.com/vim/vim/commit/11ec807639ae642bf55da883918489e2cd9911ab): cannot use popup\_close() for a terminal popup | ||
* [8.2.0295](https://github.com/vim/vim/commit/c036e87bd7001238ab7cc5d9e30e59bbf989a5fd): highlighting for :s wrong when using different separator\n* [8.2.0294](https://github.com/vim/vim/commit/5b1c8fe3d588ab450d4646a0088db4efda88200a): cannot use Ex command that is also a function name\n* [8.2.0293](https://github.com/vim/vim/commit/818fc9ad143911b2faa0d7cee86724aa70a02080): various Ex commands not sufficiently tested |
Submodule vim
updated
28 files
+17 −1 | runtime/doc/vim9.txt | |
+1 −1 | src/ex_docmd.c | |
+14 −8 | src/ex_getln.c | |
+2 −2 | src/gui.c | |
+1 −1 | src/normal.c | |
+1 −1 | src/proto/search.pro | |
+1 −1 | src/quickfix.c | |
+6 −4 | src/search.c | |
+1 −1 | src/spell.c | |
+4 −4 | src/tag.c | |
+4 −0 | src/testdir/dumps/Test_incsearch_substitute_15.dump | |
+7 −1 | src/testdir/test_arglist.vim | |
+29 −0 | src/testdir/test_cmdline.vim | |
+7 −4 | src/testdir/test_ex_mode.vim | |
+38 −0 | src/testdir/test_excmd.vim | |
+17 −1 | src/testdir/test_expand.vim | |
+4 −0 | src/testdir/test_filetype.vim | |
+8 −0 | src/testdir/test_filter_cmd.vim | |
+12 −0 | src/testdir/test_global.vim | |
+10 −0 | src/testdir/test_normal.vim | |
+1 −1 | src/testdir/test_plus_arg_edit.vim | |
+1 −0 | src/testdir/test_quickfix.vim | |
+24 −0 | src/testdir/test_search.vim | |
+39 −0 | src/testdir/test_trycatch.vim | |
+7 −0 | src/testdir/test_vim9_script.vim | |
+23 −0 | src/testdir/test_vimscript.vim | |
+6 −0 | src/version.c | |
+48 −39 | src/vim9compile.c |