-
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.
* 9.1.0998: filetype: TI assembly files are not recognized * 9.1.0997: too many strlen() calls in drawscreen.c * runtime(xf86conf): add section name OutputClass to syntax script * 9.1.0996: ComplMatchIns may highlight wrong text * runtime(vim): Update base-syntax, improve ex-bang matching * runtime(doc): clarify buffer deletion on popup_close()
- Loading branch information
1 parent
f71d68b
commit f454626
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 @@ | ||
* [CI: drop setup of snd-dummy module](https://github.com/vim/vim/commit/e0424b3348042d6486eee0273439c073ed96da15)\n* [9.1.0995](https://github.com/vim/vim/commit/616219f684744bcfad61a53c13166cda9b141dea): filetype: shaderslang files are not detected\n* [9.1.0994](https://github.com/vim/vim/commit/0072ceedc66c4bc26c98d2e9bd81973bbe3f7f74): Vim9: not able to use comment after opening curly brace | ||
* [9.1.0998](https://github.com/vim/vim/commit/4f73c07abff420bad9fa5befc2c284c00b984993): filetype: TI assembly files are not recognized\n* [9.1.0997](https://github.com/vim/vim/commit/a21240b97debea2e087aee6ad1488b5f075d1259): too many strlen() calls in drawscreen.c\n* [runtime(xf86conf): add section name OutputClass to syntax script](https://github.com/vim/vim/commit/8ab1819df625354f6cc9b36cb46989e7b7c9ebae)\n* [9.1.0996](https://github.com/vim/vim/commit/e890887b8052561ac5f8dce218e578ed28599cc6): ComplMatchIns may highlight wrong text\n* [runtime(vim): Update base-syntax, improve ex-bang matching](https://github.com/vim/vim/commit/1718e7d07e391571ac81c507a746b3bc7a7e2024)\n* [runtime(doc): clarify buffer deletion on popup\_close()](https://github.com/vim/vim/commit/1f045f324d0a8e9e897e5ed49c4e21aa9c2a538e) |
Submodule vim
updated
25 files
+2 −0 | .github/MAINTAINERS | |
+13 −1 | runtime/autoload/dist/ft.vim | |
+3 −3 | runtime/doc/popup.txt | |
+3 −3 | runtime/filetype.vim | |
+18 −0 | runtime/ftplugin/tiasm.vim | |
+12 −9 | runtime/syntax/generator/vim.vim.base | |
+1 −1 | runtime/syntax/testdir/dumps/vim_expr_01.dump | |
+1 −1 | runtime/syntax/testdir/dumps/vim_expr_02.dump | |
+1 −1 | runtime/syntax/testdir/dumps/vim_expr_03.dump | |
+5 −5 | runtime/syntax/testdir/dumps/vim_expr_04.dump | |
+5 −0 | runtime/syntax/testdir/input/vim_expr.vim | |
+102 −0 | runtime/syntax/tiasm.vim | |
+18 −15 | runtime/syntax/vim.vim | |
+4 −4 | runtime/syntax/xf86conf.vim | |
+24 −24 | src/buffer.c | |
+85 −91 | src/drawscreen.c | |
+2 −1 | src/highlight.c | |
+4 −1 | src/insexpand.c | |
+2 −2 | src/proto/buffer.pro | |
+13 −7 | src/screen.c | |
+20 −0 | src/testdir/dumps/Test_pum_matchins_combine_07.dump | |
+20 −0 | src/testdir/dumps/Test_pum_matchins_combine_08.dump | |
+16 −1 | src/testdir/test_filetype.vim | |
+14 −0 | src/testdir/test_popup.vim | |
+6 −0 | src/version.c |