whitespace: add more lenient mixed whitespace algorithm

This commit is contained in:
Emil Renner Berthing
2015-04-14 19:01:08 +02:00
parent f45ecdac15
commit e6ca2ac58d
2 changed files with 7 additions and 0 deletions

View File

@@ -30,6 +30,8 @@ function! s:check_mixed_indent()
" count of spaces at the end of tabs should be less then tabstop value
let t_l_s = '(^\t+ {' . &ts . ',}' . '\S)'
return search('\v' . t_s_t . '|' . t_l_s, 'nw')
elseif s:indent_algo == 2
return search('\v(^\t* +\t\s*\S)', 'nw')
else
return search('\v(^\t+ +)|(^ +\t+)', 'nw')
endif