Skip to content

Commit 7c6363f

Browse files
author
ANDREW M. TRICE
committed
fixed greedy quote regular expressions
1 parent 876920e commit 7c6363f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/syntaxes/log.tmLanguage

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
<dict>
1616
<!-- Quoted strings with " -->
1717
<key>match</key>
18-
<string>\".*\"</string>
18+
<string>"(.*?)"</string>
1919
<key>name</key>
2020
<string>token.string</string>
2121
</dict>
2222
<dict>
2323
<!-- Quoted strings with ' -->
2424
<key>match</key>
25-
<string>\'.*\'</string>
25+
<string>'(.*?)'</string>
2626
<key>name</key>
2727
<string>token.string</string>
2828
</dict>

0 commit comments

Comments
 (0)