-
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.3204: display garbled when 'cursorline' is set and lines wrap * 8.2.3203: Vim9: compiled string expression causes type error * 8.2.3202: Vim9: tests are only executed for legacy script * 8.2.3201: crash in test * 8.2.3200: Vim9: hard to guess where a type error is given * 8.2.3199: Vim9: execution speed can be improved * 8.2.3198: cannot use 'formatlistpat' for breakindent
- 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.3197](https://github.com/vim/vim/commit/d8e44476d84b5f0cc8c4de080a47a3a9af547028): error messages are spread out\n* [8.2.3196](https://github.com/vim/vim/commit/05bd9785fd0fd0102ab64554307bff0ec0ae34c1): Vim9: bool expression with numbers only fails at runtime\n* [8.2.3195](https://github.com/vim/vim/commit/c4c5642513ac41b22b7772cc880c776c69e964c9): Vim9: unclear error when passing too many arguments to lambda\n* [8.2.3194](https://github.com/vim/vim/commit/cd9172077bc8c0aafddf2e5367cc0ae2c00c8ff7): Vim9: argument types are not checked at compile time\n* [8.2.3193](https://github.com/vim/vim/commit/189663bdac1156237c49925f77bd197c1bdea12c): screenpos() is wrong when 'display' is "lastline" | ||
* [8.2.3204](https://github.com/vim/vim/commit/c9e7e344ed390d2a22afb88001b6aa80832d2541): display garbled when 'cursorline' is set and lines wrap\n* [8.2.3203](https://github.com/vim/vim/commit/cd268017cf79a546a494883b4b026a3cbbd9a8a0): Vim9: compiled string expression causes type error\n* [8.2.3202](https://github.com/vim/vim/commit/5dd839ce20466eea52e59ecf86456f1ab370d2bd): Vim9: tests are only executed for legacy script\n* [8.2.3201](https://github.com/vim/vim/commit/2b59df00d80ea8d2c0fcf4f4ae9a018c1790206f): crash in test\n* [8.2.3200](https://github.com/vim/vim/commit/7a3fe3e180bdbce8f193abdf399559c5154bdaae): Vim9: hard to guess where a type error is given\n* [8.2.3199](https://github.com/vim/vim/commit/a74901929e999a0052c1ce388ab09359c10cbb0d): Vim9: execution speed can be improved\n* [8.2.3198](https://github.com/vim/vim/commit/f674b358fc18cf1641a066cc5de73da69e651024): cannot use 'formatlistpat' for breakindent |
Submodule vim
updated
24 files
+3 −1 | runtime/doc/options.txt | |
+3 −3 | src/dict.c | |
+3 −1 | src/drawscreen.c | |
+6 −0 | src/errors.h | |
+5 −5 | src/eval.c | |
+3 −1 | src/evalfunc.c | |
+2 −3 | src/evalvars.c | |
+2 −1 | src/ex_docmd.c | |
+1 −1 | src/if_py_both.h | |
+12 −6 | src/indent.c | |
+18 −13 | src/list.c | |
+1 −1 | src/proto/dict.pro | |
+1 −1 | src/proto/vim9type.pro | |
+3 −0 | src/structs.h | |
+20 −0 | src/testdir/dumps/Test_cursorline_redraw_1.dump | |
+20 −0 | src/testdir/dumps/Test_cursorline_redraw_2.dump | |
+54 −1 | src/testdir/test_breakindent.vim | |
+49 −0 | src/testdir/test_cursorline.vim | |
+116 −38 | src/testdir/test_listdict.vim | |
+5 −3 | src/testdir/test_vim9_builtin.vim | |
+14 −0 | src/version.c | |
+10 −13 | src/vim9compile.c | |
+16 −5 | src/vim9execute.c | |
+22 −10 | src/vim9type.c |