Update vim-actodo

This commit is contained in:
Anthony Rose 2022-06-22 11:36:55 +00:00
parent a827aa58f4
commit a26529a381

View file

@ -44,13 +44,15 @@ syntax match actodoDate /\<Sun\>/
highlight actodoName term=bold,underline cterm=bold,underline gui=bold,underline
highlight actodoTodo term=bold cterm=bold gui=bold ctermfg=red guifg=red
highlight actodoWork term=bold cterm=bold gui=bold ctermfg=green guifg=green
highlight actodoDate term=bold cterm=bold gui=bold ctermfg=blue guifg=blue
highlight actodoUrl ctermfg=blue guifg=blue
highlight actodoTicket term=bold cterm=bold gui=bold ctermfg=DarkCyan guifg=DarkCyan
if &background ==# 'light'
highlight actodoDone term=bold cterm=bold gui=bold ctermfg=LightGray guifg=LightGray
highlight actodoUrl ctermfg=blue guifg=blue
highlight actodoDate term=bold cterm=bold gui=bold ctermfg=blue guifg=blue
else
highlight actodoDone term=bold cterm=bold gui=bold ctermfg=DarkGray guifg=DarkGray
highlight actodoUrl ctermfg=cyan guifg=cyan
highlight actodoDate term=bold cterm=bold gui=bold ctermfg=cyan guifg=cyan
endif
let b:current_syntax = 'actodo'