Change hightlight of current selection in taglist
dblume

dblume commited on 2024-04-02 09:21:08
Showing 2 changed files, with 3 additions and 0 deletions.


taglist's current selection gets hidden by other search highlights.
See: https://github.com/yegappan/taglist/blob/master/doc/taglist.txt#L499

Also make note of a User1 I'd like if I could get it into the statusline
but not the statuslineNC.
... ...
@@ -20,4 +20,6 @@ hi statusline   cterm=bold,reverse ctermfg=23 ctermbg=250  " override scheme
20 20
 hi statuslineNC cterm=reverse ctermfg=238 ctermbg=Gray  " override scheme
21 21
 hi MatchParen   term=reverse ctermbg=23  " 23 is more subtle than default
22 22
 
23
+hi MyTagListTagName ctermbg=25
24
+
23 25
 "vim: sw=4
... ...
@@ -79,6 +79,7 @@ else
79 79
     highlight ColorColumn ctermbg=233 guibg=Black " dark gray (or 17, dark blue)
80 80
   endif
81 81
   highlight statusline   ctermfg=23 ctermbg=250  " override scheme
82
+"  highlight User1        ctermfg=250 ctermbg=30
82 83
   highlight statuslineNC ctermfg=237 ctermbg=Gray  " override scheme
83 84
   highlight MatchParen   term=reverse ctermbg=23  " 23 is more subtle than default
84 85
 endif
85 86