-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* runtime(filetype): commit 99181205c5f8284a3 breaks V lang detection * runtime: decouple Open and Launch commands and gx mapping from netrw * 9.1.1053: "nosort" enables fuzzy filtering even if "fuzzy" isn't in 'completeopt' * runtime(just): fix typo in syntax file * runtime(filetype): Improve Verilog detection by checking for modules definition * 9.1.1052: tests: off-by-one error in CheckCWD in test_debugger.vim * 9.1.1051: tests: no support for env variables when running Vim in terminal
- Loading branch information
1 parent
549687b
commit 3be5d1b
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.1.1050](https://github.com/vim/vim/commit/efc41a5958bf25b352e0916af5f57dafbbb44f17): too many strlen() calls in os\_unix.c\n* [9.1.1049](https://github.com/vim/vim/commit/f400a0cc41113eb75516bdd7f38aeaa15208ba2c): insert-completed items are always sorted | ||
* [runtime(filetype): commit 99181205c5f8284a3 breaks V lang detection](https://github.com/vim/vim/commit/fb49e3cde79de4ce558c86d21a56eb9d60aeabd5)\n* [runtime: decouple Open and Launch commands and gx mapping from netrw](https://github.com/vim/vim/commit/c729d6d154e097b439ff264b9736604824f4a5f4)\n* [9.1.1053](https://github.com/vim/vim/commit/d65aa1bbdb808ef8fecde6df240c48cc39a52a8e): "nosort" enables fuzzy filtering even if "fuzzy" isn't in 'completeopt'\n* [runtime(just): fix typo in syntax file](https://github.com/vim/vim/commit/509a8d58f9a8ce00744114c1f21f0d951a559ecd)\n* [runtime(filetype): Improve Verilog detection by checking for modules definition](https://github.com/vim/vim/commit/99181205c5f8284a30f839107a12932924168f17)\n* [9.1.1052](https://github.com/vim/vim/commit/3acfbb4b548f4b1659ff1368a1b626cdd263acbe): tests: off-by-one error in CheckCWD in test\_debugger.vim\n* [9.1.1051](https://github.com/vim/vim/commit/08ea2e1fb05b7a64557cc29ad3fa47ea7f23ea57): tests: no support for env variables when running Vim in terminal |
Submodule vim
updated
17 files
+5 −4 | runtime/autoload/dist/ft.vim | |
+118 −9 | runtime/autoload/dist/vim9.vim | |
+36 −1 | runtime/doc/eval.txt | |
+0 −2 | runtime/doc/index.txt | |
+5 −9 | runtime/doc/tags | |
+3 −1 | runtime/doc/version9.txt | |
+6 −123 | runtime/pack/dist/opt/netrw/doc/netrw.txt | |
+0 −21 | runtime/pack/dist/opt/netrw/plugin/netrwPlugin.vim | |
+24 −0 | runtime/plugin/openPlugin.vim | |
+3 −3 | runtime/syntax/just.vim | |
+5 −5 | src/insexpand.c | |
+5 −0 | src/testdir/term_util.vim | |
+3 −2 | src/testdir/test_debugger.vim | |
+7 −2 | src/testdir/test_ins_complete.vim | |
+7 −8 | src/testdir/test_termcodes.vim | |
+3 −3 | src/testdir/test_termencoding.vim | |
+6 −0 | src/version.c |