vim-patch:8c1b8cb2e0b5 (#18966)

Update runtime files
8c1b8cb2e0
This commit is contained in:
Christian Clason
2022-06-15 09:20:32 +02:00
committed by GitHub
parent 1493efdc14
commit 504d7decbd
39 changed files with 2857 additions and 1547 deletions

View File

@@ -44,12 +44,13 @@ local function cmd_kw(prev_cmd, cmd)
end
-- Exclude these from the vimCommand keyword list, they are handled specially
-- in syntax/vim.vim (vimAugroupKey, vimAutoCmd, vimSubst). #9327
-- in syntax/vim.vim (vimAugroupKey, vimAutoCmd, vimGlobal, vimSubst). #9327
local function is_special_cased_cmd(cmd)
return (cmd == 'augroup'
or cmd == 'autocmd'
or cmd == 'doautocmd'
or cmd == 'doautoall'
or cmd == 'global'
or cmd == 'substitute')
end