From 08179e18606c0b468299043f5564325f95b3335a Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Sun, 30 Dec 2018 18:16:33 -0500 Subject: [PATCH] Declare highlights as defaults --- syntax/fugitive.vim | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/syntax/fugitive.vim b/syntax/fugitive.vim index fe58e9b..c987a24 100644 --- a/syntax/fugitive.vim +++ b/syntax/fugitive.vim @@ -20,11 +20,11 @@ syn match fugitiveHash /^\x\{4,\}\>/ contained containedin=fugitiveSection syn region fugitiveHunk start=/^\%(@@ -\)\@=/ end=/^\%(diff --\%(git\|cc\|combined\) \|@@\|$\)\@=/ contains=@fugitiveDiff containedin=fugitiveSection fold -hi link fugitiveModifier Type -hi link fugitiveHeader Label -hi link fugitiveHeading PreProc -hi link fugitiveHash Identifier -hi link fugitiveSymbolicRef Function -hi link fugitiveCount Number +hi def link fugitiveModifier Type +hi def link fugitiveHeader Label +hi def link fugitiveHeading PreProc +hi def link fugitiveHash Identifier +hi def link fugitiveSymbolicRef Function +hi def link fugitiveCount Number let b:current_syntax = "fugitive"