From 2528093bbea8862ede0feb6eb29bdc5451a6313b Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Tue, 9 Apr 2024 07:20:49 +0800 Subject: vim-patch:9.1.0277: Cannot highlight the Command-line (#28244) Problem: Cannot highlight the Command-line Solution: Add the MsgArea highlighting group (Shougo Matsushita) closes: vim/vim#14327 https://github.com/vim/vim/commit/be2b03c6eecea3eae5d460e3c19ee43b73b29928 Cherry-pick Test_highlight_User() from patch 8.2.1077. Co-authored-by: Shougo Matsushita --- src/nvim/option_vars.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim') diff --git a/src/nvim/option_vars.h b/src/nvim/option_vars.h index 35cea7c7bc..c98c84d34e 100644 --- a/src/nvim/option_vars.h +++ b/src/nvim/option_vars.h @@ -61,7 +61,7 @@ "-:Conceal,B:SpellBad,P:SpellCap,R:SpellRare,L:SpellLocal,+:Pmenu,=:PmenuSel," \ "[:PmenuKind,]:PmenuKindSel,{:PmenuExtra,}:PmenuExtraSel,x:PmenuSbar,X:PmenuThumb," \ "*:TabLine,#:TabLineSel,_:TabLineFill,!:CursorColumn,.:CursorLine,o:ColorColumn," \ - "q:QuickFixLine,0:Whitespace,I:NormalNC" + "q:QuickFixLine,g:MsgArea,0:Whitespace,I:NormalNC" // Default values for 'errorformat'. // The "%f|%l| %m" one is used for when the contents of the quickfix window is -- cgit