aboutsummaryrefslogtreecommitdiffstats
path: root/syntax/todo.vim
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/todo.vim')
-rw-r--r--syntax/todo.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/syntax/todo.vim b/syntax/todo.vim
index 140b0dd..8179393 100644
--- a/syntax/todo.vim
+++ b/syntax/todo.vim
@@ -3,7 +3,9 @@ if exists('b:current_syntax')
endif
syntax match todoUndone /^\s*- .\+/
+syntax match todoImportant /^\s*!.\+/
highlight link todoUndone Statement
+highlight link todoImportant Error
let b:current_syntax = 'todo'