remove the only tab character in the file

This commit is contained in:
Kemal Hadimli 2013-08-27 12:09:00 +03:00
parent 551cf1e378
commit dc3c860a25

View File

@ -48,7 +48,7 @@ def find_whitespaces_spaces(view):
last_whitespace = bool(hws_settings.get('highlight_last_whitespace',DEFAULT_LAST_WHITESPACE))
regex = ' {2,}'
if last_whitespace:
regex += '| {1,}$'
regex += '| {1,}$'
return view.find_all(regex)