Merge pull request #53 from medvid/master

fix issue #51
This commit is contained in:
Yggdroot
2013-08-29 19:22:21 -07:00

View File

@@ -91,7 +91,7 @@ endfunction
"{{{1 function! <SID>SetIndentLine()
function! <SID>SetIndentLine()
let b:indentLine_enabled = 1
let space = &l:shiftwidth
let space = &l:shiftwidth == 0 ? &l:tabstop : &l:shiftwidth
if g:indentLine_showFirstIndentLevel
exec 'syn match IndentLine /^ / containedin=ALL conceal cchar=' . g:indentLine_first_char