-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* vim 8e4c4c7d8...5f1b115af (10): > patch 9.1.0421: filetype: hyprlang files are not recognized > runtime(dart): add basic dart ftplugin file > runtime(graphql): basic ftplugin file for graphql > runtime(doc): mention comment plugin at :h 'commentstring' > runtime(sql): set commentstring for sql files in ftplugin > patch 9.1.0420: :browse oldfiles prompts even with single entry > patch 9.1.0419: eval.c not sufficiently tested > runtime(doc): clarify why E195 is returned > runtime(doc): clarify temporary file clean up > runtime(matchparen): fix :NoMatchParen not working (#14797) https://github.com/vim/vim-appimage/actions/runs/9151853535
- Loading branch information
1 parent
adeb04d
commit 60a9fad
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
25 files
+3 −0 | .github/MAINTAINERS | |
+4 −2 | runtime/doc/builtin.txt | |
+3 −2 | runtime/doc/change.txt | |
+2 −2 | runtime/doc/options.txt | |
+3 −2 | runtime/doc/starting.txt | |
+18 −1 | runtime/doc/usr_21.txt | |
+3 −0 | runtime/filetype.vim | |
+15 −0 | runtime/ftplugin/dart.vim | |
+13 −0 | runtime/ftplugin/graphql.vim | |
+13 −0 | runtime/ftplugin/hyprlang.vim | |
+4 −1 | runtime/ftplugin/sql.vim | |
+2 −2 | runtime/plugin/matchparen.vim | |
+4 −1 | src/eval.c | |
+16 −1 | src/ex_cmds.c | |
+0 −1 | src/testdir/test_autoload.vim | |
+1 −0 | src/testdir/test_filetype.vim | |
+29 −0 | src/testdir/test_fold.vim | |
+9 −9 | src/testdir/test_spellrare.vim | |
+14 −0 | src/testdir/test_substitute.vim | |
+2 −0 | src/testdir/test_vim9_builtin.vim | |
+6 −0 | src/testdir/test_vim9_expr.vim | |
+5 −0 | src/testdir/test_vim9_script.vim | |
+30 −0 | src/testdir/test_viminfo.vim | |
+6 −5 | src/testdir/test_vimscript.vim | |
+6 −0 | src/version.c |