-
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.3113: no error when for loop variable shadows script variable * 8.2.3112: in rare cases the cursor may be somewhere in a folded line * 8.2.3111: Vim9: confusing error with extra whitespace before colon * 8.2.3110: a pattern that matches the cursor position is complicated * 8.2.3109: check for $DISPLAY never fails * 8.2.3108: test for remote_foreground() fails
- 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.3107](https://github.com/vim/vim/commit/22f85d04594e1a09936227ef62955a7939d584b4): Vim9: error for arguments while type didn't specify arguments\n* [8.2.3106](https://github.com/vim/vim/commit/6977dba04b68b91410585ada65079651788ca7dc): Vim9: confusing line number reported for error\n* [8.2.3105](https://github.com/vim/vim/commit/97f227d9c9351f12138d923ffdf9232dc5520bef): Vim9: type of partial is wrong when it has arguments\n* [8.2.3104](https://github.com/vim/vim/commit/b7480cd8931fa1696265f75c7d4d9fdf0be69e12): Vim9: unspecified function type causes type error\n* [8.2.3103](https://github.com/vim/vim/commit/f33cae605064c8bdb908a8069d936f752572cd76): swap test may fail on some systems\n* [8.2.3102](https://github.com/vim/vim/commit/3777d6e32b22f0a70b774760c24160079e303bad): test for crash fix does not fail without the fix\n* [8.2.3101](https://github.com/vim/vim/commit/26e88ec8e23fa04e559044199ccb369aed29e570): missing function prototype for vim\_round()\n* [8.2.3101](https://github.com/vim/vim/commit/67b17a6fc62156383d24dcbd6e6df34e180d7235): missing function prototype for vim\_round()\n* [8.2.3100](https://github.com/vim/vim/commit/7a40ff00edd35cc4313d74a43e7a7b67cd24372d): Vim9: no error when using type with unknown number of args\n* [8.2.3099](https://github.com/vim/vim/commit/4197828dc666f2d258594f7f9461534d23cc50e4): Vim9: missing catch/finally not reported at script level\n* [8.2.3098](https://github.com/vim/vim/commit/999db2346b61e6f6e6fde2d0b56f4646a46b727d): popup window test is flaky on MS-Windows with GUI\n* [8.2.3097](https://github.com/vim/vim/commit/1d97efce0ce31ddf0dd4c1ae2228ef4caee6880c): crash when using "quit" at recovery prompt\n* [8.2.3096](https://github.com/vim/vim/commit/6c72fd51a899e6f0c272b08b9784d3c7a3cede20): temp files remain after running tests | ||
* [8.2.3113](https://github.com/vim/vim/commit/442b29c968eff1c8fec1a96418aa47be9cba62ea): no error when for loop variable shadows script variable\n* [8.2.3112](https://github.com/vim/vim/commit/5cb09620c1e0a0178c0dc986230997a8aac0e61a): in rare cases the cursor may be somewhere in a folded line\n* [8.2.3111](https://github.com/vim/vim/commit/404557e6a60389d09bbf91dd0cf3bae11bd623b9): Vim9: confusing error with extra whitespace before colon\n* [8.2.3110](https://github.com/vim/vim/commit/04db26b36000a4677b95403ec94bd11f6cc73975): a pattern that matches the cursor position is complicated\n* [8.2.3109](https://github.com/vim/vim/commit/f6d877975ba93fc9b4bee2c5d2aff88dbf9bea59): check for $DISPLAY never fails\n* [8.2.3108](https://github.com/vim/vim/commit/d6fa7bd5b900dd363d3a824e0ebe3619a1634df6): test for remote\_foreground() fails |
Submodule vim
updated
13 files
+27 −4 | runtime/doc/pattern.txt | |
+4 −1 | src/drawscreen.c | |
+2 −0 | src/errors.h | |
+15 −5 | src/eval.c | |
+33 −1 | src/regexp_bt.c | |
+29 −1 | src/regexp_nfa.c | |
+8 −0 | src/testdir/check.vim | |
+1 −3 | src/testdir/test_clientserver.vim | |
+90 −0 | src/testdir/test_regexp_latin.vim | |
+2 −0 | src/testdir/test_vim9_builtin.vim | |
+13 −6 | src/testdir/test_vim9_script.vim | |
+12 −0 | src/version.c | |
+4 −1 | src/vim9compile.c |