diff options
-rw-r--r-- | syntax/todo.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/syntax/todo.vim b/syntax/todo.vim index 8179393..70bdd9f 100644 --- a/syntax/todo.vim +++ b/syntax/todo.vim @@ -4,8 +4,10 @@ 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' |