Skip to content

Commit a570008

Browse files
committed
Split multiple filetypes on ".".
Thanks @kljohann
1 parent d29fbb3 commit a570008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/indent_guides.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ endfunction
271271
" Detect if any of the buffer filetypes should be excluded.
272272
"
273273
function! indent_guides#exclude_filetype()
274-
for ft in split(&ft, ',')
274+
for ft in split(&ft, '\.')
275275
if index(g:indent_guides_exclude_filetypes, ft) > -1
276276
return 1
277277
end

0 commit comments

Comments
 (0)