+2

Clojure regexes are not parsed properly

Anthony Grimes 12 ár síðan Uppfært 12 ár síðan 2
Here is an example regex: #".*\"(.*)\".*"

That regex breaks Clojure highlighting, making Sublime Text 2 thing that the last quote is the start of a new string.
Inside Clojure.tmLanguage try changing
<string>source.regexp.oniguruma</string>
to 

<string>#string_escape</string>

Regexp will not look as good as before, but at least escaping should work correctly.
Hah. It will look better than before, considering it was completely broken before. :p