-
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 fc533c9f0...c25a7084e (9): > patch 9.1.0573: ex: no implicit print for single addresses > runtime(vim): make &indentexpr available from the outside > patch 9.1.0572: cannot specify tab page closing behaviour > runtime(doc): remove obsolete Ex insert behavior > patch 9.1.0571: tests: Test_gui_lowlevel_keyevent is flaky > runtime(logindefs): update syntax with new keywords > patch 9.1.0570: tests: test_gettext_make can be improved > runtime(filetype): Fix Prolog file detection regex > patch 9.1.0569: fnamemodify() treats ".." and "../" differently https://github.com/vim/vim-appimage/actions/runs/9915987740
- Loading branch information
1 parent
3d57629
commit baae0b4
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vim
updated
31 files
+1 −1 | runtime/autoload/dist/ft.vim | |
+1 −6 | runtime/doc/insert.txt | |
+1 −0 | runtime/doc/motion.txt | |
+13 −0 | runtime/doc/options.txt | |
+1 −0 | runtime/doc/quickref.txt | |
+3 −2 | runtime/doc/tabpage.txt | |
+2 −0 | runtime/doc/tags | |
+2 −1 | runtime/doc/version9.txt | |
+4 −2 | runtime/indent/vim.vim | |
+3 −1 | runtime/optwin.vim | |
+24 −3 | runtime/syntax/logindefs.vim | |
+3 −3 | runtime/syntax/vim.vim | |
+1 −1 | src/ex_docmd.c | |
+5 −1 | src/option.h | |
+3 −0 | src/optiondefs.h | |
+23 −0 | src/optionstr.c | |
+4 −1 | src/os_unix.c | |
+1 −0 | src/proto/option.pro | |
+1 −0 | src/proto/optionstr.pro | |
+1 −0 | src/testdir/gen_opt_test.vim | |
+11 −0 | src/testdir/test_ex_mode.vim | |
+10 −0 | src/testdir/test_findfile.vim | |
+2 −0 | src/testdir/test_fnamemodify.vim | |
+43 −36 | src/testdir/test_gettext_make.vim | |
+1 −0 | src/testdir/test_gui.vim | |
+5 −1 | src/testdir/test_options.vim | |
+1 −1 | src/testdir/test_paste.vim | |
+58 −0 | src/testdir/test_tabpage.vim | |
+12 −3 | src/testdir/test_taglist.vim | |
+10 −0 | src/version.c | |
+15 −7 | src/window.c |