diff options
author | zeertzjq <zeertzjq@outlook.com> | 2025-01-06 09:13:00 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2025-01-06 09:16:13 +0800 |
commit | 53f5d528cf655e8ae2c4467d3a6701e66c60bbfb (patch) | |
tree | a2eb0f79ac14becafd2cd26476b0eb97f23730d6 /runtime/syntax/vim.vim | |
parent | b23c28845f9d067c63acb6fb0748c6ef91f0b8f2 (diff) | |
download | rneovim-53f5d528cf655e8ae2c4467d3a6701e66c60bbfb.tar.gz rneovim-53f5d528cf655e8ae2c4467d3a6701e66c60bbfb.tar.bz2 rneovim-53f5d528cf655e8ae2c4467d3a6701e66c60bbfb.zip |
vim-patch:6139766: runtime(vim): fix failing vim syntax test
after v9.1.0985
related: vim/vim#16356
https://github.com/vim/vim/commit/6139766e825ca34948223cb4c88d3900b1940a17
Co-authored-by: h-east <h.east.727@gmail.com>
N/A patch:
vim-patch:8a27d97: runtime(doc): Capitalise the mnemonic "Zero" for the 'z' flag of search()
Diffstat (limited to 'runtime/syntax/vim.vim')
-rw-r--r-- | runtime/syntax/vim.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/syntax/vim.vim b/runtime/syntax/vim.vim index 02827f4914..5bea65436d 100644 --- a/runtime/syntax/vim.vim +++ b/runtime/syntax/vim.vim @@ -196,7 +196,7 @@ syn case match " All vimCommands are contained by vimIsCommand. {{{2 syn cluster vimCmdList contains=vimAbb,vimAddress,vimAutoCmd,vimAugroup,vimBehave,vimCall,vimCatch,vimConst,vimDef,vimDefFold,vimDelcommand,@vimEcho,vimEnddef,vimEndfunction,vimExecute,vimIsCommand,vimExtCmd,vimFor,vimFunction,vimFuncFold,vimGlobal,vimHighlight,vimLet,vimLoadkeymap,vimMap,vimMark,vimMatch,vimNotFunc,vimNormal,vimSet,vimSleep,vimSyntax,vimThrow,vimUnlet,vimUnmap,vimUserCmd,vimMenu,vimMenutranslate,@vim9CmdList -syn cluster vim9CmdList contains=vim9Class,vim9Const,vim9Enum,vim9Export,vim9Final,vim9For,vim9Interface,vim9Type,vim9Var +syn cluster vim9CmdList contains=vim9Abstract,vim9Class,vim9Const,vim9Enum,vim9Export,vim9Final,vim9For,vim9Interface,vim9Type,vim9Var syn match vimCmdSep "[:|]\+" skipwhite nextgroup=@vimCmdList,vimSubst1 syn match vimIsCommand "\<\%(\h\w*\|[23]mat\%[ch]\)\>" contains=vimCommand syn match vimBang contained "!" |