From cd0322dc1d2ebc50a8b3480d4aac873a4078b1cb Mon Sep 17 00:00:00 2001 From: "D. Ben Knoble" Date: Wed, 12 Jun 2024 14:20:14 -0400 Subject: [PATCH] colors: support new PmenuMatch{,Sel} I've used cyan colors for matched text, but kept backgrounds the same. These features were implemented by https://github.com/vim/vim/commit/40c1c3317d92f8c2adadf744fab72e4458e2a9fa, and there is ongoing discussion about some edge-cases and odd behavior IIUC. Close https://github.com/dracula/vim/issues/325 --- colors/dracula.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/colors/dracula.vim b/colors/dracula.vim index 8f2ed59..a64cfbc 100644 --- a/colors/dracula.vim +++ b/colors/dracula.vim @@ -255,6 +255,8 @@ hi! link Pmenu DraculaBgDark hi! link PmenuSbar DraculaBgDark hi! link PmenuSel DraculaSelection hi! link PmenuThumb DraculaSelection +call s:h('PmenuMatch', s:cyan, s:bgdark) +call s:h('PmenuMatchSel', s:cyan, s:selection) hi! link Question DraculaFgBold hi! link Search DraculaSearch call s:h('SignColumn', s:comment)