Skip to content

Commit

Permalink
Vim: v9.1.0530
Browse files Browse the repository at this point in the history
* vim ecd642af4...7a44f96fe (24):
  > runtime(tutor): Fix wrong spanish translation
  > runtime(netrw): fix remaining case of register clobber
  > patch 9.1.0530: xxd: MSVC warning about non-ASCII character
  > patch 9.1.0529: silent! causes following try/catch to not work
  > runtime(rust): use shiftwidth() in indent script
  > patch 9.1.0528: spell completion message still wrong in translations
  > patch 9.1.0527: inconsistent parameter in Makefiles for Vim executable
  > patch 9.1.0526: Unwanted cursor movement with pagescroll at start of buffer
  > runtime(doc): mention $XDG_CONFIG_HOME instead of $HOME/.config
  > patch 9.1.0525: Right release selects immediately when pum is truncated.
  > patch 9.1.0524: the recursive parameter in the *_equal functions can be removed
  > runtime(termdebug): Add Deprecation warnings
  > patch 9.1.0523: Vim9: cannot downcast an object
  > patch 9.1.0522: Vim9: string(object) hangs for recursive references
  > patch 9.1.0521: if_py: _PyObject_CallFunction_SizeT is dropped in Python 3.13
  > patch 9.1.0520: Vim9: incorrect type checking for modifying lists
  > runtime(manpager): avoid readonly prompt
  > patch 9.1.0519: MS-Windows: libvterm compilation can be optimized
  > patch 9.1.0518: initialize the random buffer can be improved
  > patch 9.1.0517: MS-Windows: too long lines in Make_mvc.mak
  > runtime(terraform): Add filetype plugin for terraform
  > runtime(dockerfile): enable spellchecking of comments in syntax script
  > runtime(doc): rename variable for pandoc markdown support
  > runtime(doc): In builtin overview use {buf} as param for appendbufline/setbufline (#15089)

https://github.com/vim/vim-appimage/actions/runs/9801464359
  • Loading branch information
github-actions[bot] committed Jul 5, 2024
1 parent 0508c8a commit 354b57c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vim
Submodule vim updated 92 files
+1 −0 .github/MAINTAINERS
+1 −4 Makefile
+13 −3 runtime/autoload/netrw.vim
+3 −3 runtime/doc/Make_mvc.mak
+4 −4 runtime/doc/Makefile
+5 −5 runtime/doc/builtin.txt
+11 −11 runtime/doc/starting.txt
+3 −3 runtime/doc/syntax.txt
+1 −0 runtime/doc/tags
+17 −1 runtime/doc/terminal.txt
+1 −5 runtime/doc/todo.txt
+14 −0 runtime/ftplugin/terraform.vim
+2 −2 runtime/indent/Make_mvc.mak
+2 −2 runtime/indent/Makefile
+6 −3 runtime/indent/rust.vim
+30 −1 runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
+4 −4 runtime/plugin/manpager.vim
+2 −2 runtime/syntax/dockerfile.vim
+3 −3 runtime/syntax/generator/Makefile
+1 −1 runtime/tutor/tutor.es
+1 −1 runtime/tutor/tutor.es.utf-8
+73 −62 src/Make_mvc.mak
+2 −2 src/Makefile
+3 −4 src/dict.c
+55 −4 src/eval.c
+27 −49 src/evalfunc.c
+7 −2 src/ex_docmd.c
+13 −1 src/if_python3.c
+3 −4 src/list.c
+6 −3 src/move.c
+34 −0 src/os_mswin.c
+28 −0 src/os_unix.c
+5 −5 src/po/Make_cyg.mak
+6 −6 src/po/Make_ming.mak
+8 −8 src/po/Make_mvc.mak
+4 −4 src/po/Makefile
+2 −2 src/po/ca.po
+2 −2 src/po/da.po
+2 −2 src/po/de.po
+2 −2 src/po/eo.po
+2 −2 src/po/es.po
+2 −2 src/po/fi.po
+2 −2 src/po/fr.po
+2 −2 src/po/ga.po
+2 −2 src/po/hu.po
+2 −2 src/po/it.po
+2 −2 src/po/ja.euc-jp.po
+2 −2 src/po/ja.po
+2 −2 src/po/ja.sjis.po
+2 −2 src/po/ko.UTF-8.po
+2 −2 src/po/ko.po
+2 −3 src/po/nb.po
+2 −2 src/po/nl.po
+2 −3 src/po/no.po
+2 −2 src/po/pl.UTF-8.po
+2 −2 src/po/pl.cp1250.po
+2 −2 src/po/pl.po
+2 −2 src/po/pt_BR.po
+1 −1 src/po/ru.cp1251.po
+1 −1 src/po/ru.po
+2 −2 src/po/sr.po
+2 −2 src/po/sv.po
+2 −2 src/po/tr.po
+2 −2 src/po/uk.cp1251.po
+2 −2 src/po/uk.po
+2 −2 src/po/zh_CN.UTF-8.po
+2 −2 src/po/zh_CN.cp936.po
+2 −2 src/po/zh_CN.po
+4 −3 src/popupmenu.c
+1 −1 src/proto/dict.pro
+1 −1 src/proto/list.pro
+1 −0 src/proto/os_mswin.pro
+1 −0 src/proto/os_unix.pro
+1 −1 src/proto/typval.pro
+1 −1 src/proto/vim9class.pro
+2 −1 src/structs.h
+2 −2 src/testdir/Make_mvc.mak
+2 −2 src/testdir/Makefile
+13 −0 src/testdir/test_listdict.vim
+38 −3 src/testdir/test_menu.vim
+3 −0 src/testdir/test_normal.vim
+112 −0 src/testdir/test_vim9_class.vim
+90 −0 src/testdir/test_vim9_disassemble.vim
+25 −0 src/testdir/test_vimscript.vim
+2 −2 src/testing.c
+12 −14 src/typval.c
+28 −0 src/version.c
+52 −39 src/vim9class.c
+12 −1 src/vim9compile.c
+3 −2 src/vim9expr.c
+10 −1 src/vim9type.c
+1 −1 src/xxd/Make_mvc.mak

0 comments on commit 354b57c

Please sign in to comment.