From cdcf50529a66388dcc83a899f624c44a309b6b55 Mon Sep 17 00:00:00 2001 From: Yggdroot Date: Mon, 10 Jul 2017 10:31:32 +0800 Subject: [PATCH] fix issue #213 --- after/plugin/indentLine.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/after/plugin/indentLine.vim b/after/plugin/indentLine.vim index f0bf642..f0473fb 100644 --- a/after/plugin/indentLine.vim +++ b/after/plugin/indentLine.vim @@ -54,8 +54,8 @@ function! s:InitColor() let gui_color = g:indentLine_color_gui endif - execute "highlight Conceal ctermfg=" . term_color . " ctermbg=NONE" - execute "highlight Conceal guifg=" . gui_color . " guibg=NONE" + execute "highlight Conceal cterm=NONE ctermfg=" . term_color . " ctermbg=NONE" + execute "highlight Conceal gui=NONE guifg=" . gui_color . " guibg=NONE" if &term ==# "linux" if &background ==# "light"