aboutsummaryrefslogtreecommitdiff
path: root/runtime/colors/vim.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-12-17 12:40:30 +0800
committerzeertzjq <zeertzjq@outlook.com>2024-12-18 08:15:31 +0800
commitc830901e8cde49467d1c99c2d656a13e51979790 (patch)
tree26e8ec89d933f4697f7ee5bd9e3feaae4d442f8c /runtime/colors/vim.lua
parent0dd933265ff2e64786fd30f949e767e10f401519 (diff)
downloadrneovim-c830901e8cde49467d1c99c2d656a13e51979790.tar.gz
rneovim-c830901e8cde49467d1c99c2d656a13e51979790.tar.bz2
rneovim-c830901e8cde49467d1c99c2d656a13e51979790.zip
vim-patch:9.1.0936: cannot highlight completed text
Problem: cannot highlight completed text Solution: (optionally) highlight auto-completed text using the ComplMatchIns highlight group (glepnir) closes: vim/vim#16173 https://github.com/vim/vim/commit/6a38aff218f5b99a1aed7edaa357df24b9092734 Co-authored-by: glepnir <glephunter@gmail.com>
Diffstat (limited to 'runtime/colors/vim.lua')
-rw-r--r--runtime/colors/vim.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/colors/vim.lua b/runtime/colors/vim.lua
index 5b9309ab38..dd3e83c653 100644
--- a/runtime/colors/vim.lua
+++ b/runtime/colors/vim.lua
@@ -60,6 +60,7 @@ hi('PmenuMatch', { link = 'Pmenu' })
hi('PmenuMatchSel', { link = 'PmenuSel' })
hi('PmenuExtra', { link = 'Pmenu' })
hi('PmenuExtraSel', { link = 'PmenuSel' })
+hi('ComplMatchIns', { link = 'Normal' })
hi('Substitute', { link = 'Search' })
hi('Whitespace', { link = 'NonText' })
hi('MsgSeparator', { link = 'StatusLine' })