mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 11:33:52 -05:00
Fix b:sleuth_culprit for tabs
This commit is contained in:
@@ -1799,10 +1799,11 @@ if !has_key(s:disabled_packages, 'autoindent')
|
|||||||
let heredoc = ''
|
let heredoc = ''
|
||||||
let minindent = 10
|
let minindent = 10
|
||||||
let spaces_minus_tabs = 0
|
let spaces_minus_tabs = 0
|
||||||
let i = 1
|
let i = 0
|
||||||
|
|
||||||
for line in a:lines
|
for line in a:lines
|
||||||
let i += 1
|
let i += 1
|
||||||
|
|
||||||
if !len(line) || line =~# '^\W*$'
|
if !len(line) || line =~# '^\W*$'
|
||||||
continue
|
continue
|
||||||
endif
|
endif
|
||||||
@@ -1871,6 +1872,7 @@ if !has_key(s:disabled_packages, 'autoindent')
|
|||||||
|
|
||||||
if line[0] == "\t"
|
if line[0] == "\t"
|
||||||
setlocal noexpandtab
|
setlocal noexpandtab
|
||||||
|
let b:sleuth_culprit .= ':' . i
|
||||||
return 1
|
return 1
|
||||||
elseif line[0] == " "
|
elseif line[0] == " "
|
||||||
let indent = len(matchstr(line, '^ *'))
|
let indent = len(matchstr(line, '^ *'))
|
||||||
|
|||||||
Reference in New Issue
Block a user