diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-06-13 14:08:50 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2024-06-15 04:47:23 +0800 |
commit | dc4037f612c6f3bbc76890adfa638d48ec238eee (patch) | |
tree | 97e79ba5672c7e6190a8379a2f7d1869f48cbf7e /runtime/colors/vim.lua | |
parent | fd950d4998a497cb4258d35af72408105900296a (diff) | |
download | rneovim-dc4037f612c6f3bbc76890adfa638d48ec238eee.tar.gz rneovim-dc4037f612c6f3bbc76890adfa638d48ec238eee.tar.bz2 rneovim-dc4037f612c6f3bbc76890adfa638d48ec238eee.zip |
vim-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)
closes: vim/vim#14694
https://github.com/vim/vim/commit/40c1c3317d92f8c2adadf744fab72e4458e2a9fa
Co-authored-by: glepnir <glephunter@gmail.com>
Diffstat (limited to 'runtime/colors/vim.lua')
-rw-r--r-- | runtime/colors/vim.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/colors/vim.lua b/runtime/colors/vim.lua index 76a56566a6..5b9309ab38 100644 --- a/runtime/colors/vim.lua +++ b/runtime/colors/vim.lua @@ -56,6 +56,8 @@ hi('CursorLineFold', { link = 'FoldColumn' }) hi('CurSearch', { link = 'Search' }) hi('PmenuKind', { link = 'Pmenu' }) hi('PmenuKindSel', { link = 'PmenuSel' }) +hi('PmenuMatch', { link = 'Pmenu' }) +hi('PmenuMatchSel', { link = 'PmenuSel' }) hi('PmenuExtra', { link = 'Pmenu' }) hi('PmenuExtraSel', { link = 'PmenuSel' }) hi('Substitute', { link = 'Search' }) |