From 65032e03e0c43aa847665933c27cfc477b527968 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Tue, 12 Dec 2023 17:22:35 +0100 Subject: vim-patch:1c97b5c0c0b4 runtime(vim): Update syntax file, fix missing for highlight (vim/vim#13668) Fix highlighting of :for command. Link the vimFor syntax group to the vimCommand highlight group. Error introduced in commit f686921 https://github.com/vim/vim/commit/1c97b5c0c0b4a60d652b78da4470aeb8a7509700 Co-authored-by: dkearns --- runtime/syntax/vim.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime') diff --git a/runtime/syntax/vim.vim b/runtime/syntax/vim.vim index b3eb3239d8..8f239a6888 100644 --- a/runtime/syntax/vim.vim +++ b/runtime/syntax/vim.vim @@ -891,6 +891,7 @@ if !exists("skip_vim_syntax_inits") hi def link vimFuncEcho vimCommand hi def link vimHiCtermul vimHiTerm hi def link vimFold Folded + hi def link vimFor vimCommand hi def link vimFTCmd vimCommand hi def link vimFTOption vimSynType hi def link vimFuncKey vimCommand -- cgit