diff --git a/after/plugin/indentLine.vim b/after/plugin/indentLine.vim index 83fa189..b9db1e3 100644 --- a/after/plugin/indentLine.vim +++ b/after/plugin/indentLine.vim @@ -37,7 +37,7 @@ function! InitColor() endfunction function! SetIndentLine() - for i in range(&shiftwidth+1, 100, &shiftwidth) + for i in range(&l:shiftwidth+1, 100, &shiftwidth) exe 'syn match IndentLine /\(^\s\+\)\@<=\%'.i.'v / containedin=ALL conceal cchar=' . g:indentLine_char endfor endfunction