JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
don't stop on foldmethod of other buffers
[vim-syntax.git] / todo.vim
1 highlight done ctermfg=DarkGreen
2 highlight maybedone ctermfg=Blue
3 highlight headline ctermfg=White cterm=bold,underline
4 highlight moot ctermfg=DarkGrey
5 highlight indent ctermfg=NONE
6
7 syntax match done /^\*\+\t\+\zs\S.*$/
8 syntax match maybedone /^\(done\)\??\t\+\zs.*/
9 syntax match moot /^[#]\t\+.*/
10 syntax match indent /^\s\+/
11 syn region headline start=/^$\|\%1l/ contains=indent end="\S.*$"
12 "syntax match headline /^ \+\zs[^\t]*/
13
14 syntax sync minlines=1
15 syntax sync maxlines=1