diff options
author | Teddy Wing | 2016-04-26 12:04:06 -0400 |
---|---|---|
committer | Teddy Wing | 2016-04-26 12:04:06 -0400 |
commit | 736269abf762924b3b2aba3279be402b41c468da (patch) | |
tree | ee830ef3fecaf45d5828dec8f65deae88609f964 /syntax | |
parent | 8623f14acf1ed504c1e899a3bb3a4dce19ef205c (diff) | |
download | vim-twodo-736269abf762924b3b2aba3279be402b41c468da.tar.bz2 |
Highlight deleted TODOs
Show them in Ignore so that they're not as prominent.
Diffstat (limited to 'syntax')
-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 0aabae7..96d86ee 100644 --- a/syntax/todo.vim +++ b/syntax/todo.vim @@ -6,10 +6,12 @@ syntax match todoUndone /^\s*- .\+/ syntax match todoImportant /^\s*!.\+/ syntax match todoUnimportant /^\s*_.\+/ syntax match todoCompleted /^\s*v.\+/ +syntax match todoDeleted /^\s*x.\+/ highlight link todoUndone Statement highlight link todoImportant Error highlight link todoUnimportant Ignore highlight link todoCompleted Ignore +highlight link todoDeleted Ignore let b:current_syntax = 'todo' |