From 54b1c7f31e1b0478371def30f51183a5572c43af Mon Sep 17 00:00:00 2001 From: NagatoPain Date: Thu, 20 Dec 2012 01:26:08 +0800 Subject: [PATCH] fix buffer local shiftwidth variable --- after/plugin/indentLine.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/after/plugin/indentLine.vim b/after/plugin/indentLine.vim index b9db1e3..20c792f 100644 --- a/after/plugin/indentLine.vim +++ b/after/plugin/indentLine.vim @@ -37,7 +37,7 @@ function! InitColor() endfunction function! SetIndentLine() - for i in range(&l:shiftwidth+1, 100, &shiftwidth) + for i in range(&l:shiftwidth+1, 100, &l:shiftwidth) exe 'syn match IndentLine /\(^\s\+\)\@<=\%'.i.'v / containedin=ALL conceal cchar=' . g:indentLine_char endfor endfunction