Skip to content

Commit

Permalink
fixed greedy quote regular expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
ANDREW M. TRICE committed Sep 1, 2016
1 parent 876920e commit 7c6363f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/syntaxes/log.tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
<dict>
<!-- Quoted strings with " -->
<key>match</key>
<string>\".*\"</string>
<string>"(.*?)"</string>
<key>name</key>
<string>token.string</string>
</dict>
<dict>
<!-- Quoted strings with ' -->
<key>match</key>
<string>\'.*\'</string>
<string>'(.*?)'</string>
<key>name</key>
<string>token.string</string>
</dict>
Expand Down

0 comments on commit 7c6363f

Please sign in to comment.