From 10b809d187584bbf16c4f400e74003032b9a1ac5 Mon Sep 17 00:00:00 2001 From: Will Gray Date: Thu, 17 Feb 2011 15:13:14 -0600 Subject: [PATCH] Don't clobber pre-set custom colors. --- autoload/indent_guides.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/indent_guides.vim b/autoload/indent_guides.vim index 2ac36d2..4340d52 100644 --- a/autoload/indent_guides.vim +++ b/autoload/indent_guides.vim @@ -152,8 +152,8 @@ endfunction " Define default highlights. " function! indent_guides#define_default_highlights() - exe 'hi IndentGuidesOdd guibg=NONE ctermbg=NONE' - exe 'hi IndentGuidesEven guibg=NONE ctermbg=NONE' + exe 'hi default clear IndentGuidesOdd' + exe 'hi default clear IndentGuidesEven' endfunction "