-
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.0303: TermChanged test fails in the GUI * 8.2.0302: setting 'term' may cause error in TermChanged autocommand * 8.2.0301: insufficient testing for exception handling * 8.2.0300: Vim9: expression test fails without channel support * 8.2.0299: Vim9: ISN_STORE with argument not tested * 8.2.0298: Vim9 script: cannot start command with a string constant * 8.2.0297: compiler warnings for the Ruby interface * 8.2.0296: mixing up "long long" and __int64 may cause problems
- 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.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 | ||
* [8.2.0303](https://github.com/vim/vim/commit/d28e0b3652067788fcc9c99058b0b6eee7beebee): TermChanged test fails in the GUI\n* [8.2.0302](https://github.com/vim/vim/commit/0c81d1b11278b2d962aa6fbb4aa974dab97be59d): setting 'term' may cause error in TermChanged autocommand\n* [8.2.0301](https://github.com/vim/vim/commit/b654103ad1e379348616f354272db86804ab4bdb): insufficient testing for exception handling\n* [8.2.0300](https://github.com/vim/vim/commit/b4d2cb1083974a7a7262417d09baf474ca816452): Vim9: expression test fails without channel support\n* [8.2.0299](https://github.com/vim/vim/commit/8ed04587d3cd53e29be20fde9c36e619ea7da4dc): Vim9: ISN\_STORE with argument not tested\n* [8.2.0298](https://github.com/vim/vim/commit/0c6ceaf90389b41545d803458c4813013811c756): Vim9 script: cannot start command with a string constant\n* [8.2.0297](https://github.com/vim/vim/commit/8b430b4c1df74bde757a7e5ee0ee2854fdad6472): compiler warnings for the Ruby interface\n* [8.2.0296](https://github.com/vim/vim/commit/f9706e9df0e37d214fb08eda30ba29627e97a607): mixing up "long long" and \_\_int64 may cause problems |
Submodule vim
updated
27 files
+7 −2 | runtime/doc/eval.txt | |
+7 −0 | runtime/doc/testing.txt | |
+4 −2 | runtime/doc/various.txt | |
+5 −3 | runtime/doc/vim9.txt | |
+1 −1 | src/eval.c | |
+2 −0 | src/evalfunc.c | |
+3 −1 | src/evalvars.c | |
+4 −2 | src/ex_docmd.c | |
+2 −2 | src/fileio.c | |
+10 −2 | src/if_ruby.c | |
+1 −1 | src/json.c | |
+7 −7 | src/message.c | |
+20 −24 | src/ops.c | |
+2 −0 | src/proto/testing.pro | |
+31 −21 | src/structs.h | |
+8 −5 | src/term.c | |
+22 −0 | src/testdir/test_autocmd.vim | |
+6 −0 | src/testdir/test_eval_stuff.vim | |
+26 −0 | src/testdir/test_swap.vim | |
+171 −6 | src/testdir/test_trycatch.vim | |
+17 −0 | src/testdir/test_vim9_disassemble.vim | |
+19 −0 | src/testdir/test_vim9_expr.vim | |
+5 −0 | src/testdir/test_vim9_script.vim | |
+12 −0 | src/testing.c | |
+16 −0 | src/version.c | |
+26 −35 | src/vim.h | |
+1 −12 | src/vim9compile.c |