Browse Source

Comment changes; use highlight group descriptions from NeoVim for QuickFixLine/Search

pull/113/head
Josh Dick 7 years ago
parent
commit
9a269a5419
No known key found for this signature in database GPG Key ID: 504C35EB636445DC
  1. 6
      colors/onedark.vim

6
colors/onedark.vim

@ -170,7 +170,7 @@ call s:h("Todo", { "fg": s:purple }) " anything that needs extra attention; most
" }}}
" Highlighting Groups (descriptions and ordering from `:h hitest.vim`) {{{
" Highlighting Groups (descriptions and ordering from `:h highlight-groups`) {{{
call s:h("ColorColumn", { "bg": s:cursor_grey }) " used for the columns set with 'colorcolumn'
call s:h("Conceal", {}) " placeholder characters substituted for concealed text (see 'conceallevel')
@ -201,8 +201,8 @@ call s:h("PmenuSel", { "fg": s:black, "bg": s:blue }) " Popup menu: selected ite
call s:h("PmenuSbar", { "bg": s:special_grey }) " Popup menu: scrollbar.
call s:h("PmenuThumb", { "bg": s:white }) " Popup menu: Thumb of the scrollbar.
call s:h("Question", { "fg": s:purple }) " hit-enter prompt and yes/no questions
call s:h("Search", { "fg": s:black, "bg": s:yellow }) " Last search pattern highlighting (see 'hlsearch'). Also used by few other items that need to stand out.
call s:h("QuickFixLine", { "fg": s:black, "bg": s:yellow }) " Used for highlighting the current line in the quickfix window.
call s:h("Search", { "fg": s:black, "bg": s:yellow }) " Last search pattern highlighting (see 'hlsearch'). Also used for similar items that need to stand out.
call s:h("QuickFixLine", { "fg": s:black, "bg": s:yellow }) " Current quickfix item in the quickfix window.
call s:h("SpecialKey", { "fg": s:special_grey }) " Meta and special keys listed with ":map", also for text used to show unprintable characters in the text, 'listchars'. Generally: text that is displayed differently from what it really is.
call s:h("SpellBad", { "fg": s:red, "gui": "underline", "cterm": "underline" }) " Word that is not recognized by the spellchecker. This will be combined with the highlighting used otherwise.
call s:h("SpellCap", { "fg": s:dark_yellow }) " Word that should start with a capital. This will be combined with the highlighting used otherwise.

Loading…
Cancel
Save