-
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.3060: Vim9: cannot use ternary operator in parenthesis * 8.2.3059: Vim9: memory leak when using lambda * 8.2.3058: Vim9: cannot use ternary operator in parenthesis * 8.2.3057: Vim9: debugger test fails with normal features and +terminal * 8.2.3056: Vim9: using default value in lambda gives confusing error * 8.2.3055: strange error for assigning to "x.key" on non-dictionary * 8.2.3054: Vim9: unpack assignment using "_" after semicolon fails * 8.2.3053: Vim9: cannot assign to @@ in :def function * 8.2.3052: Vim9: "legacy call" does not work * 8.2.3051: Vim9: for loop with one list variable does not work * 8.2.3050: cannot recognize elixir files
- 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.3049](https://github.com/vim/vim/commit/6582e230a0f6592287b1123c5fc3807d6fed997e): JSON patch file not recognized\n* [8.2.3048](https://github.com/vim/vim/commit/22480d147fe83cb31316d2dabc5c5f249477af15): strange error for white space after ++ command\n* [8.2.3047](https://github.com/vim/vim/commit/f3d30842dcc8ef4134da462bd4197ae2e2c6c0c1): increment and decrement don't allow for next command | ||
* [8.2.3060](https://github.com/vim/vim/commit/98f9a5f4cbe6061e09bccf6074afe0a88a504219): Vim9: cannot use ternary operator in parenthesis\n* [8.2.3059](https://github.com/vim/vim/commit/e3ffaa6b7c2d53ab53da933ec91382d003cf9a12): Vim9: memory leak when using lambda\n* [8.2.3058](https://github.com/vim/vim/commit/015cf103115f9a0380ae3e3e85a77792cfe87d49): Vim9: cannot use ternary operator in parenthesis\n* [8.2.3057](https://github.com/vim/vim/commit/307dec4567e0f64a7a4cfc2d5302d2aba26db775): Vim9: debugger test fails with normal features and +terminal\n* [8.2.3056](https://github.com/vim/vim/commit/14ded11fcad77ebf41032ec80a95d516ca9acb1c): Vim9: using default value in lambda gives confusing error\n* [8.2.3055](https://github.com/vim/vim/commit/3a3b10e87a10dd0bc355618dbfc4a0a6c828aad7): strange error for assigning to "x.key" on non-dictionary\n* [8.2.3054](https://github.com/vim/vim/commit/4d5dfe20839e9d13c95eaf4254467f952653b042): Vim9: unpack assignment using "\_" after semicolon fails\n* [8.2.3053](https://github.com/vim/vim/commit/13e45d14ba7f590fb243c041bc45e6d4d47c8432): Vim9: cannot assign to @@ in :def function\n* [8.2.3052](https://github.com/vim/vim/commit/ce024c3e20839465dc8c8f79dcccc5414dd8c506): Vim9: "legacy call" does not work\n* [8.2.3051](https://github.com/vim/vim/commit/444d878324525787e55185ce3c3e29a3de9b700a): Vim9: for loop with one list variable does not work\n* [8.2.3050](https://github.com/vim/vim/commit/f3caeb63d62c08b579e9b5f40b35e8bf64dde87a): cannot recognize elixir files |
Submodule vim
updated
14 files
+11 −0 | runtime/autoload/dist/ft.vim | |
+9 −2 | runtime/filetype.vim | |
+3 −1 | src/errors.h | |
+7 −1 | src/eval.c | |
+38 −0 | src/testdir/test_filetype.vim | |
+1 −1 | src/testdir/test_let.vim | |
+3 −0 | src/testdir/test_listdict.vim | |
+31 −10 | src/testdir/test_vim9_assign.vim | |
+33 −0 | src/testdir/test_vim9_func.vim | |
+7 −0 | src/testdir/test_vim9_script.vim | |
+28 −19 | src/userfunc.c | |
+22 −0 | src/version.c | |
+1 −1 | src/vim9.h | |
+37 −26 | src/vim9compile.c |