Skip to content

Commit

Permalink
Vim: v9.1.0568
Browse files Browse the repository at this point in the history
* vim 50dc83cf9...fc533c9f0 (12):
  > runtime(mojo): include mojo ftplugin and indent script
  > patch 9.1.0568: Cannot expand paths from 'cdpath' setting
  > patch 9.1.0567: Cannot use relative paths as findfile() stop directories
  > patch 9.1.0566: Stop dir in findfile() doesn't work properly w/o trailing slash
  > patch 9.1.0565: Stop directory doesn't work properly in 'tags'
  > patch 9.1.0564: id() can be faster
  > patch 9.1.0563: Cannot process any Key event
  > patch 9.1.0562: tests: inconsistency in test_findfile.vim
  > runtime(fstab): Add missing keywords to fstab syntax
  > patch 9.1.0561: netbeans: variable used un-initialized (Coverity)
  > patch 9.1.0560: bindtextdomain() does not indicate an error
  > patch 9.1.0559: translation of vim scripts can be improved

https://github.com/vim/vim-appimage/actions/runs/9900650609
  • Loading branch information
github-actions[bot] committed Jul 12, 2024
1 parent 9191257 commit 3d57629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vim
Submodule vim updated 52 files
+2 −0 .github/MAINTAINERS
+12 −0 .github/workflows/ci.yml
+22 −5 ci/appveyor.bat
+18 −1 runtime/doc/autocmd.txt
+19 −14 runtime/doc/builtin.txt
+2 −1 runtime/doc/eval.txt
+2 −1 runtime/doc/map.txt
+4 −2 runtime/doc/mlang.txt
+2 −2 runtime/doc/options.txt
+323 −31 runtime/doc/repeat.txt
+5 −0 runtime/doc/tags
+1 −2 runtime/doc/todo.txt
+5 −1 runtime/doc/version9.txt
+41 −0 runtime/ftplugin/mojo.vim
+6 −0 runtime/indent/mojo.vim
+16 −6 runtime/syntax/fstab.vim
+4 −4 runtime/syntax/vim.vim
+11 −0 src/autocmd.c
+10 −4 src/cmdexpand.c
+26 −11 src/evalfunc.c
+5 −3 src/filepath.c
+38 −32 src/findfile.c
+75 −0 src/getchar.c
+2 −0 src/netbeans.c
+2 −2 src/po/Make_all.mak
+33 −7 src/po/Make_mvc.mak
+44 −14 src/po/Makefile
+17 −0 src/po/README.txt
+18 −0 src/po/README_mvc.txt
+5 −3 src/po/fixfilenames.vim
+9 −4 src/po/tojavascript.vim
+1 −0 src/proto/autocmd.pro
+1 −1 src/proto/findfile.pro
+5 −0 src/tag.c
+2 −0 src/testdir/Make_all.mak
+2 −2 src/testdir/Make_mvc.mak
+70 −0 src/testdir/test_autocmd.vim
+8 −0 src/testdir/test_cd.vim
+2 −1 src/testdir/test_cmdline.vim
+25 −0 src/testdir/test_findfile.vim
+2 −0 src/testdir/test_gettext.vim
+23 −13 src/testdir/test_gettext_cp1251.vim
+65 −0 src/testdir/test_gettext_make.vim
+7 −0 src/testdir/test_gettext_makefile_in1.vim
+6 −0 src/testdir/test_gettext_makefile_in2.vim
+4 −0 src/testdir/test_gettext_makefile_in3.vim
+6 −0 src/testdir/test_gettext_makefile_in4.vim
+23 −13 src/testdir/test_gettext_utf8.vim
+32 −0 src/testdir/test_taglist.vim
+1 −0 src/usercmd.c
+20 −0 src/version.c
+5 −1 src/vim.h

0 comments on commit 3d57629

Please sign in to comment.