Skip to content

Commit

Permalink
Set default cterm values for notesItalic and notesBold.
Browse files Browse the repository at this point in the history
  • Loading branch information
john2x committed Mar 29, 2013
1 parent 8881d41 commit aec487d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions syntax/notes.vim
Expand Up @@ -56,7 +56,7 @@ else
syntax match notesItalic /\<_\k[^_]*\k_\>/
endif
syntax cluster notesInline add=notesItalic
highlight notesItalic gui=italic
highlight notesItalic gui=italic cterm=italic

" Highlight text emphasized in bold font. {{{2
if has('conceal')
Expand All @@ -66,7 +66,7 @@ else
syntax match notesBold /\*\k[^*]*\k\*/
endif
syntax cluster notesInline add=notesBold
highlight notesBold gui=bold
highlight notesBold gui=bold cterm=bold

" Highlight domain names, URLs, e-mail addresses and filenames. {{{2

Expand Down

0 comments on commit aec487d

Please sign in to comment.