From 7bcefc6bd7abc0e3abc5750b144a0cf5dca0af84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20Gro=C3=9F?= Date: Fri, 21 Jun 2024 18:31:22 +0200 Subject: [PATCH] Add support for pmenu matches This highlights the already typed text. Not sure yet if we really want to keep this, as it can be a bit distracting. --- colors/prism.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/colors/prism.vim b/colors/prism.vim index d6b338e..6704e09 100644 --- a/colors/prism.vim +++ b/colors/prism.vim @@ -183,6 +183,8 @@ exec s:hls('MoreMsg', 'yellow') exec s:hls('NonText', 'dark_grey', 'black') exec s:hls('Normal', 'white', 'black', 'none') exec s:hls('Pmenu', 'white', 'darkest_grey') +exec s:hls('PmenuMatch', 'accent_pink', 'darkest_grey') +exec s:hls('PmenuMatchSel', 'accent_pink', 'light_blue') exec s:hls('PmenuSbar', 'black', 'darkest_grey') exec s:hls('PmenuSel', 'black', 'light_blue') exec s:hls('PmenuThumb', 'black', 'light_grey')