Closed snown closed 7 years ago
Currently the regex only checks for the \t character, but in soft tabbed documents, naturally those are spaces. updating the regex to be ^[ \t]* instead of ^\t*
\t
space
^[ \t]*
^\t*
Never mind, does not work as expected.
Currently the regex only checks for the
\t
character, but in soft tabbed documents, naturally those arespace
s. updating the regex to be^[ \t]*
instead of^\t*