From: Simon Ruderich Date: Sun, 25 Sep 2011 22:36:32 +0000 (+0200) Subject: vimrc: Also highlight REMOVED and DELETED. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=3a5fe52f6940f7e57f99ce80b5098903ec9e0837;p=config%2Fdotfiles.git vimrc: Also highlight REMOVED and DELETED. --- diff --git a/vimrc b/vimrc index d0e67e8..4b4e03c 100644 --- a/vimrc +++ b/vimrc @@ -359,8 +359,8 @@ if has('syntax') endif if exists('*matchadd') -" Highlight TODO, FIXME, CHANGED and XXX in all documents. - for x in ['TODO', 'FIXME', 'CHANGED', 'XXX'] +" Highlight some important keywords in all documents. + for x in ['TODO', 'XXX', 'FIXME', 'CHANGED', 'REMOVED', 'DELETED'] call matchadd('Todo', x) endfor endif