Skip to content

Commit 30ce443

Browse files
rockandskaalerque
authored andcommitted
fix: lint
1 parent 6cffc17 commit 30ce443

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload/indent_guides.vim

+2-2
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ endfunction
296296
" Choose local buffer variable first if exist or global variable if not
297297
" return -1 if none of local buffer / global variable exists
298298
"
299-
function! indent_guides#getvar(var)
300-
let l:varName = "indent_guides_" . a:var
299+
function! indent_guides#getvar(var) abort
300+
let l:varName = 'indent_guides_' . a:var
301301
return get(b:, l:varName, get(g:, l:varName, -1))
302302
endfunction

0 commit comments

Comments
 (0)