From dc3c860a25296c3505e1641fcbe54d89ababaf50 Mon Sep 17 00:00:00 2001 From: Kemal Hadimli Date: Tue, 27 Aug 2013 12:09:00 +0300 Subject: [PATCH] remove the only tab character in the file --- highlight_whitespaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/highlight_whitespaces.py b/highlight_whitespaces.py index 3c03d47..21f689a 100644 --- a/highlight_whitespaces.py +++ b/highlight_whitespaces.py @@ -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)