-
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.0292: Vim9: CHECKNR and CHECKTYPE instructions not tested * 8.2.0291: Vim9: assigning [] to list<string> doesn't work * 8.2.0290: running individual test differs from all tests * 8.2.0289: Vim9: :echo did not clear the rest of the line * 8.2.0288: Vim9: some float and blob operators not tested * 8.2.0287: Vim9: return in try block not tested; catch not tested * 8.2.0286: cannot use popup_close() for a terminal popup
- 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.0285](https://github.com/vim/vim/commit/0bbf722aaaa75b1bbe87ef6afc44c5fff8e3893b): unused error message; cannot create s:var\n* [8.2.0284](https://github.com/vim/vim/commit/c0d656c89df4cf5a7d712dfb264853b9ca7d586f): Vim9: assignment test fails\n* [8.2.0283](https://github.com/vim/vim/commit/fd1823e0b783c31a5022c7a4d31c34d84ff0a744): Vim9: failing to load script var not tested\n* [8.2.0282](https://github.com/vim/vim/commit/401d9ffb5a8a40102c000c2d2614aa043f541f90): Vim9: setting number option not tested\n* [8.2.0281](https://github.com/vim/vim/commit/a2f6e42ded067df8ee682c15aa246491a389b1a0): two placed signs in the same line are not combined\n* [8.2.0280](https://github.com/vim/vim/commit/257cc5ee9593cd0653beca8b5945dc7fbf7f2d8d): Vim9: throw in :def function not caught higher up\n* [8.2.0279](https://github.com/vim/vim/commit/63ce4849efa54d3980446ad337d0e1248ec86182): Vim9: no test for deleted :def function\n* [8.2.0278](https://github.com/vim/vim/commit/9ae3bbdb960c3bed20a6db75a75a0a567d570bea): channel test is flaky on Mac\n* [8.2.0277](https://github.com/vim/vim/commit/ee2e52aa0655e02f900c74fb3a770bc55956d63d): Vim9: not all instructions covered by tests\n* [8.2.0276](https://github.com/vim/vim/commit/38a5f517a70d7b76361152d2898d7f826c5b2491): Vim9: not allowing space before ")" in function call | ||
* [8.2.0292](https://github.com/vim/vim/commit/09f28f49c9b5973593f8a9b445cdc2ed3da630b6): Vim9: CHECKNR and CHECKTYPE instructions not tested\n* [8.2.0291](https://github.com/vim/vim/commit/436472f5e0328dc4a635b1c344c04a62d64132ea): Vim9: assigning \[\] to list\<string> doesn't work\n* [8.2.0290](https://github.com/vim/vim/commit/85683ec620be199d63af3b0542a03eeb72b08fb6): running individual test differs from all tests\n* [8.2.0289](https://github.com/vim/vim/commit/e0807ea4a715334bd9a4795d98cad6e7925b5281): Vim9: :echo did not clear the rest of the line\n* [8.2.0288](https://github.com/vim/vim/commit/0062c2d4f91caa2360933068ac46c55bdd303b53): Vim9: some float and blob operators not tested\n* [8.2.0287](https://github.com/vim/vim/commit/f575adff06d4bc5f670939567ce86974683deb7a): Vim9: return in try block not tested; catch not tested\n* [8.2.0286](https://github.com/vim/vim/commit/11ec807639ae642bf55da883918489e2cd9911ab): cannot use popup\_close() for a terminal popup |
Submodule vim
updated
13 files
+3 −1 | runtime/doc/popup.txt | |
+4 −2 | src/globals.h | |
+6 −1 | src/popupwin.c | |
+1 −1 | src/testdir/Makefile | |
+2 −0 | src/testdir/README.txt | |
+15 −0 | src/testdir/dumps/Test_terminal_popup_5.dump | |
+15 −0 | src/testdir/dumps/Test_terminal_popup_6.dump | |
+15 −2 | src/testdir/test_terminal.vim | |
+76 −19 | src/testdir/test_vim9_expr.vim | |
+37 −3 | src/testdir/test_vim9_script.vim | |
+14 −0 | src/version.c | |
+35 −11 | src/vim9compile.c | |
+4 −1 | src/vim9execute.c |