Skip to content

Commit

Permalink
Vim: v9.0.1777
Browse files Browse the repository at this point in the history
* vim 4b1cc7906...75dc1ed1a (37):
  > patch 9.0.1778: if_py_both: code-style issue
  > patch 9.0.1777: patch 9.0.1771 causes problems
  > runtime(sdc): Add underscore to sdc flags in syntax file (#6201)
  > Runtime(javascript): add new document properties to completion file
  > runtime(haskell): Add single quote to `iskeyword` in ftplugin (#8191)
  > runtime(spec): ftplugin: Revert change dropping <SID> from SpecChangelog (#9032)
  > runtime(css): Update pseudo-classes in syntax script (#11595)
  > runtime(lua): fix lua indentation of non-lowercase "keywords" (#11759)
  > runtime(javascript): fix default link of javaScriptNumber in syntax file (#11788)
  > patch 9.0.1776: No support for stable Python 3 ABI
  > patch 9.0.1775: Wrong comparison in vim9type.c
  > patch 9.0.1774: no support for custom cmdline completion
  > patch 9.0.1773: cannot distinguish Forth and Fortran *.f files
  > runtime(lua): indent curly bracket followed by line comment (#12306)
  > patch 9.0.1772: Cursor may be adjusted in 'splitkeep'ed windows
  > runtime(rust): fix rust indent (#12542)
  > runtime(man): remove backslashes in man pages using Vim script (#12557)
  > patch 9.0.1771: regex: combining chars in collections not handled
  > patch 9.0.1770: lines disappear when modifying chars before virt text
  > runtime(termdebug): refactor error printing (#12856)
  > runtime(termdebug): re-indent lines (#12857)
  > patch 9.0.1769: executable() ignoring symlinks on Windows
  > Runtime(termdebug): Add support to view local and argument variables
  > Runtime: Add nixInherit matcher in nix.vim syntax
  > patch 9.0.1768: Runtime: no support for bicep files
  > patch 9.0.1767: '.-' no allowed in highlight group names
  > patch 9.0.1766: Runtime: Missing QML support
  > patch 9.0.1765: Error when cross-compiling Vim
  > patch 9.0.1764: CI: label should not be set on all yml files
  > Translation: also update ru.cp1251.po file after 6cc8bc836616e9b0
  > patch 9.0.1763: crash when passing invalid buffer to undotree()
  > patch 9.0.1762: Not able to get the virtual text property
  > patch 9.0.1761: g<kEnd> behaves different from g<end>
  > patch 9.0.1760: vim9 class problem with new() constructor
  > Translation: Russian PO file updated to Vim version 9.0.1757 (#12864)
  > patch 9.0.1759: Visual highlight not working with cursor at end of screen line
  > patch 9.0.1758: vim9 no class identifiers in stack dumps

https://github.com/vim/vim-appimage/actions/runs/5920611894
  • Loading branch information
github-actions[bot] committed Aug 21, 2023
1 parent 63d4899 commit cb7893e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vim
Submodule vim updated 77 files
+3 −0 .github/CODEOWNERS
+3 −1 .github/labeler.yml
+30 −3 .github/workflows/ci.yml
+34 −11 runtime/autoload/dist/ft.vim
+7 −2 runtime/autoload/dist/man.vim
+3 −3 runtime/autoload/javascriptcomplete.vim
+3 −0 runtime/doc/builtin.txt
+19 −0 runtime/doc/eval.txt
+1 −0 runtime/doc/filetype.txt
+25 −1 runtime/doc/if_pyth.txt
+2 −1 runtime/doc/motion.txt
+8 −7 runtime/doc/syntax.txt
+6 −0 runtime/doc/tags
+12 −0 runtime/doc/terminal.txt
+4 −0 runtime/doc/textprop.txt
+2 −0 runtime/doc/various.txt
+3 −0 runtime/doc/vim9class.txt
+10 −4 runtime/filetype.vim
+1 −0 runtime/ftplugin/haskell.vim
+31 −0 runtime/ftplugin/qml.vim
+11 −1 runtime/indent/lua.vim
+59 −0 runtime/indent/qml.vim
+16 −0 runtime/indent/rust.vim
+184 −45 runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
+3 −3 runtime/syntax/css.vim
+1 −1 runtime/syntax/javascript.vim
+5 −3 runtime/syntax/nix.vim
+1,130 −0 runtime/syntax/qml.vim
+1 −1 runtime/syntax/sdc.vim
+6 −0 src/Make_cyg_ming.mak
+6 −0 src/Make_mvc.mak
+179 −140 src/auto/configure
+4 −6 src/charset.c
+25 −0 src/cmdexpand.c
+3 −0 src/config.h.in
+32 −23 src/configure.ac
+3 −1 src/drawline.c
+3 −1 src/errors.h
+7 −0 src/evalfunc.c
+5 −0 src/evalvars.c
+13 −3 src/ex_getln.c
+2 −2 src/highlight.c
+431 −118 src/if_py_both.h
+144 −23 src/if_python3.c
+1 −1 src/normal.c
+5 −1 src/os_mswin.c
+2 −0 src/os_win32.c
+7,315 −3,068 src/po/ru.cp1251.po
+7,315 −3,068 src/po/ru.po
+1 −0 src/proto/if_python3.pro
+1 −0 src/proto/os_mswin.pro
+26 −21 src/scriptfile.c
+1 −0 src/structs.h
+5 −0 src/testdir/dumps/Test_modify_text_before_prop_1.dump
+5 −0 src/testdir/dumps/Test_modify_text_before_prop_2.dump
+8 −0 src/testdir/dumps/Test_splitkeep_cursor_1.dump
+8 −0 src/testdir/dumps/Test_splitkeep_cursor_2.dump
+8 −0 src/testdir/dumps/Test_splitkeep_cursor_3.dump
+6 −0 src/testdir/dumps/Test_visual_hl_with_showbreak.dump
+38 −0 src/testdir/test_cmdline.vim
+64 −3 src/testdir/test_filetype.vim
+4 −0 src/testdir/test_functions.vim
+7 −3 src/testdir/test_normal.vim
+57 −0 src/testdir/test_textprop.vim
+12 −0 src/testdir/test_undo.vim
+133 −0 src/testdir/test_vim9_class.vim
+18 −0 src/testdir/test_visual.vim
+27 −0 src/testdir/test_window_cmd.vim
+25 −0 src/textprop.c
+7 −12 src/undo.c
+5 −0 src/usercmd.c
+46 −0 src/version.c
+2 −1 src/vim.h
+24 −5 src/vim9class.c
+10 −2 src/vim9cmds.c
+1 −1 src/vim9type.c
+11 −3 src/window.c

0 comments on commit cb7893e

Please sign in to comment.