1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00
Files
dotfiles/.vim/syntax/todo.vim
Michiel Scholten 8f4e89eca0 More keywords
2015-03-19 07:44:56 +01:00

17 lines
398 B
VimL

if exists("b:current_syntax")
finish
endif
syntax keyword todoKeyword todo done
syntax keyword todoKeyword vrij free
highlight link todoKeyword Keyword
syntax match todoComment "\v#.*$"
highlight link todoComment Comment
syn region todoDay matchgroup=todoHeadingDelimiter start="==\@!" end="==*\s*$" keepend oneline
hi def link todoHeadingDelimiter Delimiter
let b:current_syntax = "todo"