mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 9.1.0476: Cannot see matched text in popup menu
Problem: Cannot see matched text in popup menu Solution: Introduce 2 new highlighting groups: PmenuMatch and PmenuMatchSel (glepnir) ping @habamax, @neutaaaaan @romainl because vim/colorschemes may need some updates, @lifepillar for updating vim-colortemplate closes: #14694 Signed-off-by: glepnir <glephunter@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
059cbe8933
commit
40c1c3317d
@@ -1500,6 +1500,8 @@ typedef enum
|
||||
, HLF_SPL // SpellLocal
|
||||
, HLF_PNI // popup menu normal item
|
||||
, HLF_PSI // popup menu selected item
|
||||
, HLF_PMNI // popup menu matched text in normal item
|
||||
, HLF_PMSI // popup menu matched text in selected item
|
||||
, HLF_PNK // popup menu normal item "kind"
|
||||
, HLF_PSK // popup menu selected item "kind"
|
||||
, HLF_PNX // popup menu normal item "menu" (extra text)
|
||||
@@ -1525,7 +1527,7 @@ typedef enum
|
||||
'n', 'a', 'b', 'N', 'G', 'O', 'r', 's', 'S', 'c', 't', 'v', 'V', \
|
||||
'w', 'W', 'f', 'F', 'A', 'C', 'D', 'T', '-', '>', \
|
||||
'B', 'P', 'R', 'L', \
|
||||
'+', '=', '[', ']', '{', '}', 'x', 'X', \
|
||||
'+', '=', 'k', '<','[', ']', '{', '}', 'x', 'X', \
|
||||
'*', '#', '_', '!', '.', 'o', 'q', \
|
||||
'z', 'Z', 'g'}
|
||||
|
||||
|
Reference in New Issue
Block a user