-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* runtime(java): Quietly opt out for unsupported markdown.vim versions * runtime(vim): fix failing vim syntax test * 9.1.0988: Vim9: no error when using uninitialized var in new() * runtime(doc): update index.txt * 9.1.0987: filetype: cake files are not recognized * 9.1.0986: filetype: 'jj' filetype is a bit imprecise * runtime(jj): Support diffs in jj syntax * runtime(vim): Update matchit pattern, no Vim9 short names * 9.1.0985: Vim9: some ex commands can be shortened
- Loading branch information
1 parent
0dd8f43
commit 4298716
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.0984](https://github.com/vim/vim/commit/663d18d6102f40d14e36096ec590445e61026ed6): exception handling can be improved\n* [runtime(doc): update doc for :horizontal](https://github.com/vim/vim/commit/fd771613b3e59923b1a82a5ed9036c82899d133b)\n* [runtime(doc): update index.txt, windows.txt and version9.txt](https://github.com/vim/vim/commit/0c3e57b403e0e3a1fefca7bbd5ad4cb950eea616)\n* [runtime(doc): Tweak documentation about base64 function](https://github.com/vim/vim/commit/e80f345b5dbc0ef3186d640e3d5adb7fcdfef64c) | ||
* [runtime(java): Quietly opt out for unsupported markdown.vim versions](https://github.com/vim/vim/commit/cd96075cdee6b606c6e39aa1aed19b7cdc867df8)\n* [runtime(vim): fix failing vim syntax test](https://github.com/vim/vim/commit/6139766e825ca34948223cb4c88d3900b1940a17)\n* [9.1.0988](https://github.com/vim/vim/commit/b04af4cc9636ccbadc625e743a265a394bd48943): Vim9: no error when using uninitialized var in new()\n* [runtime(doc): update index.txt](https://github.com/vim/vim/commit/27f2e473e1d6077264b214e58995001383162705)\n* [9.1.0987](https://github.com/vim/vim/commit/a407573f30a978b3aa61532bbd9b0ae94a87dc32): filetype: cake files are not recognized\n* [9.1.0986](https://github.com/vim/vim/commit/58c44e8833365e1a777330491c2799ae324ed893): filetype: 'jj' filetype is a bit imprecise\n* [runtime(jj): Support diffs in jj syntax](https://github.com/vim/vim/commit/bde76da4d02d93d8ea9e523d1057d59a19de276a)\n* [runtime(vim): Update matchit pattern, no Vim9 short names](https://github.com/vim/vim/commit/fc61cfd60e6d99765d1a68d39d6613e0917c7c56)\n* [9.1.0985](https://github.com/vim/vim/commit/aa979c763da2fa7ede2416a1ab8de7a46d88cd04): Vim9: some ex commands can be shortened |
Submodule vim
updated
20 files
+2 −2 | .github/MAINTAINERS | |
+5 −5 | runtime/doc/index.txt | |
+2 −2 | runtime/filetype.vim | |
+0 −0 | runtime/ftplugin/jjdescription.vim | |
+4 −4 | runtime/ftplugin/vim.vim | |
+52 −5 | runtime/syntax/generator/gen_syntax_vim.vim | |
+1 −1 | runtime/syntax/generator/vim.vim.base | |
+23 −10 | runtime/syntax/java.vim | |
+5 −1 | runtime/syntax/jjdescription.vim | |
+1 −1 | runtime/syntax/testdir/dumps/vim_ex_commands_65.dump | |
+2 −2 | runtime/syntax/testdir/dumps/vim_ex_commands_66.dump | |
+10 −10 | runtime/syntax/vim.vim | |
+3 −1 | src/errors.h | |
+3 −3 | src/ex_cmds.h | |
+2 −2 | src/testdir/test_filetype.vim | |
+140 −0 | src/testdir/test_vim9_class.vim | |
+7 −0 | src/testdir/test_vim9_typealias.vim | |
+8 −0 | src/version.c | |
+1 −0 | src/vim9class.c | |
+25 −0 | src/vim9execute.c |