-
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.1701: Vim9: sort("i") does not work * 8.2.1700: Vim9: try/catch causes wrong value to be returned * 8.2.1699: build failure due to missing error message * 8.2.1698: cannot lock a variable in legacy Vim script like in Vim9 * 8.2.1697: inconsistent capitalization of error messages * 8.2.1696: unused (duplicate) macros * 8.2.1695: Vim9: crash when using varargs type "any" * 8.2.1694: compiler warning for loss if data * 8.2.1693: "hi def" does not work for cleared highlight * 8.2.1692: build fails because TTFLAG_STATIC is missing * 8.2.1691: Vim9: list<any> is not accepted where list<number> is expected
- 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.1690](https://github.com/vim/vim/commit/8b51b7f0f17af149a8ce76e805050977857f9e50): text properties not adjusted for "I" in Visual block mode\n* [8.2.1689](https://github.com/vim/vim/commit/ad5e5631c5dc93a50bbe637be254c5e9968848ea): 'colorcolumn' doesn't show in indent\n* [8.2.1688](https://github.com/vim/vim/commit/c8f12c9856df58c760fe54d81b2ec5ed4dcaffd6): increment/decrement removes text property | ||
* [8.2.1701](https://github.com/vim/vim/commit/08e51f446bd4bf1a0342c471163b1ed083e9eedb): Vim9: sort("i") does not work\n* [8.2.1700](https://github.com/vim/vim/commit/9939f57b7f1c17a0142ebfe4f9e0b634158593e1): Vim9: try/catch causes wrong value to be returned\n* [8.2.1699](https://github.com/vim/vim/commit/916911f598718bc76bc6b87ed703d2805fa49c53): build failure due to missing error message\n* [8.2.1698](https://github.com/vim/vim/commit/a187c43cfe8863d48b2159d695fedcb71f8525c1): cannot lock a variable in legacy Vim script like in Vim9\n* [8.2.1697](https://github.com/vim/vim/commit/7707228aace9aff16434edf5377a354c6ad07316): inconsistent capitalization of error messages\n* [8.2.1696](https://github.com/vim/vim/commit/2c12f890551bbdf5605472a4d711d48a273685d7): unused (duplicate) macros\n* [8.2.1695](https://github.com/vim/vim/commit/2f8cbc4b225ba707c3926070a3f133eb0473aed2): Vim9: crash when using varargs type "any"\n* [8.2.1694](https://github.com/vim/vim/commit/573545a55afb5d42614cdb69f356abb32409270b): compiler warning for loss if data\n* [8.2.1693](https://github.com/vim/vim/commit/05eb5b9cae123b138bbd23cc77e50657ece6b4ad): "hi def" does not work for cleared highlight\n* [8.2.1692](https://github.com/vim/vim/commit/fb489af2ec1b181d212a8aa8151d7784b260d01b): build fails because TTFLAG\_STATIC is missing\n* [8.2.1691](https://github.com/vim/vim/commit/5e654230777ad21363a929dce3cfe0387da031a7): Vim9: list\<any> is not accepted where list\<number> is expected |
Submodule vim
updated
29 files
+13 −2 | runtime/doc/eval.txt | |
+2 −2 | src/dict.c | |
+39 −37 | src/errors.h | |
+5 −4 | src/eval.c | |
+9 −6 | src/evalfunc.c | |
+36 −13 | src/evalvars.c | |
+35 −36 | src/globals.h | |
+4 −2 | src/highlight.c | |
+30 −23 | src/list.c | |
+2 −1 | src/ops.c | |
+2 −1 | src/proto/evalvars.pro | |
+3 −1 | src/proto/vim9type.pro | |
+0 −4 | src/spell.c | |
+1 −0 | src/structs.h | |
+5 −5 | src/testdir/test_assert.vim | |
+8 −0 | src/testdir/test_const.vim | |
+32 −0 | src/testdir/test_highlight.vim | |
+8 −5 | src/testdir/test_listdict.vim | |
+3 −3 | src/testdir/test_vim9_disassemble.vim | |
+31 −28 | src/testdir/test_vim9_expr.vim | |
+44 −30 | src/testdir/test_vim9_func.vim | |
+45 −7 | src/testdir/test_vim9_script.vim | |
+2 −2 | src/typval.c | |
+2 −2 | src/userfunc.c | |
+22 −0 | src/version.c | |
+1 −1 | src/vim9.h | |
+38 −21 | src/vim9compile.c | |
+23 −26 | src/vim9execute.c | |
+87 −22 | src/vim9type.c |