textmate / shellscript.tmbundle

TextMate support for ShellScript
43 stars 29 forks source link

Support Heredoc endCaptures in soft tabbed scripts #34

Closed snown closed 7 years ago

snown commented 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*

snown commented 7 years ago

Never mind, does not work as expected.