-
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 1433ac93e...4b3fab14d (9): > patch 9.1.0354: runtime(uci): No support for uci file types > runtime(java): Support "g:ftplugin_java_source_path" with archived files > patch 9.1.0353: tests: Test_autoload_import_relative_compiled fails on Windows > patch 9.1.0352: Finding cmd modifiers and cmdline-specials is inefficient > patch 9.1.0351: No test that completing a partial mapping clears 'showcmd' > patch 9.1.0350: tests: test_vim9_dissamble may fail > patch 9.1.0349: Vim9: need static type for typealias > patch 9.1.0348: X11 does not ignore smooth scroll event > patch 9.1.0347: A few typos in test_xdg when testing gvimrc https://github.com/vim/vim-appimage/actions/runs/8746708777
- Loading branch information
1 parent
7b37133
commit 5a0fc3c
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
22 files
+16 −0 | runtime/autoload/dist/ft.vim | |
+32 −1 | runtime/doc/filetype.txt | |
+1 −0 | runtime/doc/tags | |
+6 −0 | runtime/filetype.vim | |
+50 −3 | runtime/ftplugin/java.vim | |
+21 −0 | runtime/ftplugin/uci.vim | |
+33 −0 | runtime/syntax/uci.vim | |
+2 −1 | src/ex_cmds.h | |
+180 −100 | src/ex_docmd.c | |
+3 −0 | src/getchar.c | |
+8 −1 | src/globals.h | |
+3 −0 | src/gui_gtk_x11.c | |
+3 −3 | src/testdir/test_cmdmods.vim | |
+22 −0 | src/testdir/test_filetype.vim | |
+9 −8 | src/testdir/test_mapping.vim | |
+1 −2 | src/testdir/test_utf8.vim | |
+2 −0 | src/testdir/test_vim9_builtin.vim | |
+1 −1 | src/testdir/test_vim9_disassemble.vim | |
+10 −4 | src/testdir/test_vim9_import.vim | |
+5 −8 | src/testdir/test_xdg.vim | |
+16 −0 | src/version.c | |
+254 −147 | src/vim9type.c |