Another tweak for a light background.
This commit is contained in:
Kartik Agaram 2018-12-25 23:02:16 -08:00
parent fb7cd3f16c
commit 5beb25b508
1 changed files with 3 additions and 1 deletions

View File

@ -12,11 +12,13 @@ function! HighlightTangledFile()
syntax region tangleDirective start=+:(+ skip=+".*"+ end=+)+
highlight link tangleDirective Delimiter
syntax match traceContains /^+.*/
highlight traceContains ctermfg=darkgreen
highlight traceContains ctermfg=22
syntax match traceAbsent /^-.*/
highlight traceAbsent ctermfg=darkred
syntax match tangleScenarioSetup /^\s*% .*/ | highlight link tangleScenarioSetup SpecialChar
highlight Special ctermfg=160
" Our C++ files can have Mu code in scenarios, so highlight Mu comments like
" regular comments.
syntax match muComment /#.*$/