blob: f1cd86233feef396776200b2c94202f081f74cef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
if exists('b:current_syntax')
finish
endif
" highlight Undone ctermbg=yellow ctermfg=235
" match Undone /^- .\+/
syntax match todoUndone /^- .\+/
highlight link todoUndone Statement
let b:current_syntax = 'todo'
|