Skip to content

Commit 95cb75e

Browse files
authored
Fix typo (#230)
1 parent 7eec467 commit 95cb75e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugin/editorconfig.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ function! s:ApplyConfig(bufnr, config) abort
455455
endif
456456

457457
" Set tabstop. Skip this for terminal buffers, e.g., :FZF (#224).
458-
if s:IsRuleActive('tab_width', a:config) && bufname(l:bufnr) !~# '^!\w*sh$'
458+
if s:IsRuleActive('tab_width', a:config) && bufname(a:bufnr) !~# '^!\w*sh$'
459459
let l:tabstop = str2nr(a:config["tab_width"])
460460
call setbufvar(a:bufnr, '&tabstop', l:tabstop)
461461
else

0 commit comments

Comments
 (0)