Fixes an error setting default colours to NONE

It needs to be NONE, not none.
This commit is contained in:
Joshua Hogendorn 2010-12-22 09:30:50 +10:00
parent 78f60359c8
commit 0ebc1eb93d

View File

@ -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