From aac56b9e2de6154cb2ff02916a14abab8164428c Mon Sep 17 00:00:00 2001 From: Simon Smith Date: Tue, 10 May 2016 17:11:09 +0100 Subject: [PATCH] Improve visibility of incsearch (#27) --- colors/onedark.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/onedark.vim b/colors/onedark.vim index 8eccfb4..9ef5bc6 100644 --- a/colors/onedark.vim +++ b/colors/onedark.vim @@ -150,7 +150,7 @@ call s:h("VertSplit", { "fg": s:vertsplit }) " the column separating vertically call s:h("Folded", { "fg": s:comment_grey }) " line used for closed folds call s:h("FoldColumn", {}) " 'foldcolumn' call s:h("SignColumn", {}) " column where signs are displayed -call s:h("IncSearch", { "fg": s:visual_black, "bg": s:visual_grey }) " 'incsearch' highlighting; also used for the text replaced with ":s///c" +call s:h("IncSearch", { "fg": s:black, "bg": s:yellow }) " 'incsearch' highlighting; also used for the text replaced with ":s///c" call s:h("LineNr", { "fg": s:gutter_fg_grey, "bg": s:gutter_bg_grey }) " Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set. call s:h("CursorLineNr", {}) " Like LineNr when 'cursorline' or 'relativenumber' is set for the cursor line. call s:h("MatchParen", { "fg": s:blue, "gui": "underline" }) " The character under the cursor or just before it, if it is a paired bracket, and its match.