-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 9.0.2077: CI fails because of trailing whitespace in test * 9.0.2076: Vim9: No support for type aliases * 9.0.2075: TextChangedI may not always trigger * 9.0.2074: Completion menu may be wrong * runtime(netrw): don't echo empty lines (#13431)
- 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 @@ | ||
* [9.0.2073](https://github.com/vim/vim/commit/b0221819f3f7cf5cd526338070ea30b59d69315b): typo in quickfix.c comments\n* [runtime(debian): update debian related runtime files (#13423)](https://github.com/vim/vim/commit/7b7cda67a1246874520b280277d9b1447e1a7ef5)\n* [9.0.2072](https://github.com/vim/vim/commit/c229a6ac0775e07dff456ca8832c516e57a74e74): Vim9: no nr2str conversion in list-unpack\n* [9.0.2071](https://github.com/vim/vim/commit/10407df7a95d0311c7d2eb920d3b72020db5b301): objdump files not recognized\n* [9.0.2070](https://github.com/vim/vim/commit/6b89dd6a7257a1e2e9c7ea070b407bc4674a5118): \[security\] disallow setting env in restricted mode\n* [9.0.2069](https://github.com/vim/vim/commit/67ec6553839f070cd4cc8effa26a9db1750e17b6): possible to escape bracketed paste mode with Ctrl-C\n* [9.0.2068](https://github.com/vim/vim/commit/9198c1f2b1ddecde22af918541e0de2a32f0f45a): \[security\] overflow in :history\n* [runtime(doc): clarify bracketed paste mode](https://github.com/vim/vim/commit/5f5131d775bf9966976e39aa38b070036cbfe969)\n* [runtime(doc): missing code formatting in if\_pyth.txt](https://github.com/vim/vim/commit/a56f02d824288104823e9740e1b1fe045c3ab994)\n* [9.0.2067](https://github.com/vim/vim/commit/c4a403860353ff35dc47e2a52818e771fa228083): xxd: coloring was disabled on Cygwin\n* [9.0.2066](https://github.com/vim/vim/commit/1c14030aff238abef03bdf87e6b33c7e5d7ffd51): xxd: corrupting files when reversing bit dumps\n* [9.0.2065](https://github.com/vim/vim/commit/3932072ab435eb171ab55b2a2c0185358cd0d7bf): EXPAND flag set for filetype option\n* [9.0.2064](https://github.com/vim/vim/commit/b731800522af00fd348814d33a065b92e698afc3): cannot use buffer-number for errorformat\n* [runtime(doc): Fix typos in several documents (#13420)](https://github.com/vim/vim/commit/5985879e3c36383155f84649fa42d06813a1893e)\n* [please report security issues to the vim-security list](https://github.com/vim/vim/commit/50f3ec2898a43feaa6add2bc4875754cf9224d5e) | ||
* [9.0.2077](https://github.com/vim/vim/commit/87ca5e86fa0ef305f3d39cc4261b622f21417f7f): CI fails because of trailing whitespace in test\n* [9.0.2076](https://github.com/vim/vim/commit/ec3cebbd2b6b7583d2f683f5e66345163ec122aa): Vim9: No support for type aliases\n* [9.0.2075](https://github.com/vim/vim/commit/4bca4897a12dfb91b3b27e3083fd5f370bd857d1): TextChangedI may not always trigger\n* [9.0.2074](https://github.com/vim/vim/commit/daef8c74375141974d61b85199b383017644978c): Completion menu may be wrong\n* [runtime(netrw): don't echo empty lines (#13431)](https://github.com/vim/vim/commit/650dcfc8d12e68aa05a358301ec15f9e6dbd03ba) |
Submodule vim
updated
29 files
+0 −3 | runtime/autoload/netrw.vim | |
+5 −4 | runtime/doc/vim9class.txt | |
+0 −3 | src/edit.c | |
+22 −8 | src/errors.h | |
+20 −0 | src/eval.c | |
+8 −0 | src/evalfunc.c | |
+38 −1 | src/evalvars.c | |
+1 −0 | src/if_py_both.h | |
+33 −3 | src/insexpand.c | |
+1 −0 | src/json.c | |
+6 −0 | src/normal.c | |
+6 −0 | src/ops.c | |
+2 −0 | src/proto/vim9class.pro | |
+10 −0 | src/structs.h | |
+25 −7 | src/testdir/test_autocmd.vim | |
+67 −2 | src/testdir/test_ins_complete.vim | |
+6 −6 | src/testdir/test_vim9_class.vim | |
+379 −1 | src/testdir/test_vim9_script.vim | |
+4 −0 | src/testing.c | |
+30 −0 | src/typval.c | |
+8 −0 | src/version.c | |
+3 −1 | src/vim.h | |
+109 −2 | src/vim9class.c | |
+17 −6 | src/vim9compile.c | |
+8 −0 | src/vim9execute.c | |
+8 −0 | src/vim9expr.c | |
+1 −0 | src/vim9instr.c | |
+34 −6 | src/vim9type.c | |
+2 −1 | src/viminfo.c |