aboutsummaryrefslogtreecommitdiffstats
path: root/syntax/todo.vim
blob: 81793936c6ba5c3bf8ead51eb31a5e0d96df69ce (plain)
1
2
3
4
5
6
7
8
9
10
11
if exists('b:current_syntax')
	finish
endif

syntax match todoUndone /^\s*- .\+/
syntax match todoImportant /^\s*!.\+/

highlight link todoUndone Statement
highlight link todoImportant Error

let b:current_syntax = 'todo'