From 0ebc1eb93ddafda3fd2c738fbae3d02645331f08 Mon Sep 17 00:00:00 2001 From: Joshua Hogendorn Date: Wed, 22 Dec 2010 09:30:50 +1000 Subject: [PATCH] Fixes an error setting default colours to NONE It needs to be NONE, not none. --- 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 c6efb16..b993cc7 100644 --- a/autoload/indent_guides.vim +++ b/autoload/indent_guides.vim @@ -181,7 +181,7 @@ 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 IndentGuidesOdd guibg=NONE ctermbg=NONE' + exe 'hi IndentGuidesEven guibg=NONE ctermbg=NONE' endfunction