From daa3ae4be1ac6317861bdfab6e1beff80f26201d Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Fri, 30 Apr 2021 22:11:09 +0200 Subject: [PATCH] fish_config: use background color for some themes search matches See https://github.com/fish-shell/fish-shell/issues/2442#issuecomment-829636721 --- share/tools/web_config/js/colorutils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/tools/web_config/js/colorutils.js b/share/tools/web_config/js/colorutils.js index 720efaa5b..f97fd1fca 100644 --- a/share/tools/web_config/js/colorutils.js +++ b/share/tools/web_config/js/colorutils.js @@ -329,8 +329,8 @@ var ayuTheme = { receiver['param'] = theme.fg receiver['quote'] = theme.string receiver['redirection'] = theme.constant - receiver['search_match'] = theme.accent - receiver['selection'] = theme.accent + receiver['search_match'] = "--background="+theme.accent + receiver['selection'] = "--background="+theme.accent receiver['colors'] = [] for (var key in theme) receiver['colors'].push(theme[key])