neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 65032e03e0c43aa847665933c27cfc477b527968
parent 7e717805be35813bff69493b3d0363e969c47613
Author: Christian Clason <c.clason@uni-graz.at>
Date:   Tue, 12 Dec 2023 17:22:35 +0100

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 <dougkearns@gmail.com>

Diffstat:
Mruntime/syntax/vim.vim | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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