-
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.3197: error messages are spread out * 8.2.3196: Vim9: bool expression with numbers only fails at runtime * 8.2.3195: Vim9: unclear error when passing too many arguments to lambda * 8.2.3194: Vim9: argument types are not checked at compile time * 8.2.3193: screenpos() is wrong when 'display' is "lastline"
- 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.3192](https://github.com/vim/vim/commit/11d7e62f1d29fdd7a88b86131b7bbb853f29fe8b): build failure with small version\n* [8.2.3191](https://github.com/vim/vim/commit/63cb6567f0153c35dc75cbc09039ff5d0a7b60e3): Vim9: not enough code is tested\n* [8.2.3190](https://github.com/vim/vim/commit/e29a27f6f8eef8f00d3c2d4cd9811d81cf3026b3): error messages are spread out\n* [8.2.3189](https://github.com/vim/vim/commit/9fa5dabedc4ed5af85773413e91c2fdbe4cb9f0a): Vim9: error when using "try|"\n* [8.2.3188](https://github.com/vim/vim/commit/83494b4ac61898f687d6ef9dce4bad5802fb8e51): Vim9: argument types are not checked at compile time | ||
* [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" |
Submodule vim
updated
28 files
+1 −1 | src/diff.c | |
+1 −1 | src/edit.c | |
+33 −0 | src/errors.h | |
+11 −1 | src/evalbuffer.c | |
+115 −92 | src/evalfunc.c | |
+3 −2 | src/evalvars.c | |
+1 −1 | src/ex_cmds.c | |
+1 −1 | src/ex_docmd.c | |
+0 −8 | src/globals.h | |
+1 −1 | src/job.c | |
+4 −4 | src/move.c | |
+4 −4 | src/option.c | |
+3 −0 | src/proto/typval.pro | |
+1 −1 | src/quickfix.c | |
+0 −3 | src/regexp.c | |
+8 −8 | src/regexp_bt.c | |
+4 −3 | src/regexp_nfa.c | |
+1 −1 | src/sign.c | |
+36 −10 | src/terminal.c | |
+16 −0 | src/testdir/test_cursor_func.vim | |
+28 −0 | src/testdir/test_vim9_builtin.vim | |
+18 −11 | src/testdir/test_vim9_expr.vim | |
+6 −0 | src/testdir/test_vim9_func.vim | |
+55 −33 | src/typval.c | |
+1 −1 | src/undo.c | |
+10 −0 | src/version.c | |
+39 −14 | src/vim9compile.c | |
+1 −1 | src/vim9script.c |