From 7157291b24cd14ff2e52d3cf24294dd207c4f232 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Tue, 2 Jan 2018 12:47:25 +0100 Subject: [PATCH] 'Cancelled' task is darker --- .vim/syntax/todo.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vim/syntax/todo.vim b/.vim/syntax/todo.vim index 844f11c..97e09f5 100644 --- a/.vim/syntax/todo.vim +++ b/.vim/syntax/todo.vim @@ -54,10 +54,12 @@ highlight note ctermfg=Grey guifg=#eeeeee syntax match todoStatusDone "\v^v " syntax match todoStatusDone "\v v " -syntax match todoStatusDone "\v^x " -syntax match todoStatusDone "\v x " highlight todoStatusDone ctermfg=green guifg=#00ff00 +syntax match todoStatusCancelled "\v^x " +syntax match todoStatusCancelled "\v x " +highlight todoStatusCancelled ctermfg=DarkGreen + syntax match todoStatusDoing "\v^d .*$" syntax match todoStatusDoing "\v d .*$" highlight todoStatusDoing ctermfg=223 guifg=#f0dfaf