blob: 70bdd9f766fb67ecbf613cdab7e262d985195ddf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
if exists('b:current_syntax')
finish
endif
syntax match todoUndone /^\s*- .\+/
syntax match todoImportant /^\s*!.\+/
syntax match todoUnimportant /^\s*_.\+/
highlight link todoUndone Statement
highlight link todoImportant Error
highlight link todoUnimportant Ignore
let b:current_syntax = 'todo'
|