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

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

highlight link todoUndone Statement

let b:current_syntax = 'todo'