Skip to content

Commit

Permalink
assign proper colors and attributes to spelling errors
Browse files Browse the repository at this point in the history
  • Loading branch information
igungor committed Aug 16, 2017
1 parent cfc2a8d commit a9d32fe
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions colors/schellar.vim
Original file line number Diff line number Diff line change
Expand Up @@ -197,21 +197,20 @@ call s:HL('SpecialKey', s:palette.fg, s:palette.bg, 'none')
" Generally: text that is displayed differently from what it
" really is.

" TODO(ig): assign proper colorcodes to spell group.
call s:HL('SpellBad', s:palette.fg, s:palette.bg, 'italic')
call s:HL('SpellBad', s:palette.fg, s:palette.yellow0, 'underline')
" SpellBad Word that is not recognized by the spellchecker.
" This will be combined with the highlighting used otherwise.

call s:HL('SpellCap', s:palette.fg, s:palette.bg, 'italic')
call s:HL('SpellCap', s:palette.fg, s:palette.yellow0, 'underline')
" SpellCap Word that should start with a capital.
" This will be combined with the highlighting used otherwise.

call s:HL('SpellLocal', s:palette.fg, s:palette.bg, 'italic')
call s:HL('SpellLocal', s:palette.fg, s:palette.yellow0, 'underline')
" SpellLocal Word that is recognized by the spellchecker as one that is
" used in another region. This will be combined with the
" highlighting used otherwise.

call s:HL('SpellRare', s:palette.fg, s:palette.bg, 'italic')
call s:HL('SpellRare', s:palette.fg, s:palette.yellow0, 'underline')
" SpellRare Word that is recognized by the spellchecker as one that is
" hardly ever used. This will be combined with the
" highlighting used otherwise.
Expand Down

0 comments on commit a9d32fe

Please sign in to comment.