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

syntax match todoUndone /^- .\+/

highlight link todoUndone Statement

let b:current_syntax = 'todo'