diff options
author | Teddy Wing | 2016-04-05 10:59:26 -0400 |
---|---|---|
committer | Teddy Wing | 2016-04-05 10:59:26 -0400 |
commit | 3c15183dc93fcabccca1e324a83baf02b2e9bf8a (patch) | |
tree | 4f3c722b8c86e49178c05442be48510d6291c8d2 /syntax | |
parent | b0e0cef8349daf16d9b4c4ce7dd76ddf95719b03 (diff) | |
download | vim-twodo-3c15183dc93fcabccca1e324a83baf02b2e9bf8a.tar.bz2 |
syntax/todo.vim: Remove old highlight code
These lines were copied from my manual highlighting of TODO files
created a few days ago. They served as a guide while creating the
highlighting in the syntax file.
Diffstat (limited to 'syntax')
-rw-r--r-- | syntax/todo.vim | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/syntax/todo.vim b/syntax/todo.vim index f1cd862..56cce73 100644 --- a/syntax/todo.vim +++ b/syntax/todo.vim @@ -2,9 +2,6 @@ if exists('b:current_syntax') finish endif -" highlight Undone ctermbg=yellow ctermfg=235 -" match Undone /^- .\+/ - syntax match todoUndone /^- .\+/ highlight link todoUndone Statement |