Skip to content

Commit

Permalink
revert to old behavior (#1679)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aditya Bist committed May 12, 2020
1 parent 1b6a827 commit bd94bff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions syntaxes/SQL.plist
Expand Up @@ -654,7 +654,7 @@
<key>comment</key>
<string>this is faster than the next begin/end rule since sub-pattern will match till end-of-line and SQL files tend to have very long lines.</string>
<key>match</key>
<string>(N)?(')(?:[^'\\]|\\.)*(')</string>
<string>(N)?(')[^']*(')</string>
<key>name</key>
<string>string.quoted.single.sql</string>
</dict>
Expand Down Expand Up @@ -706,7 +706,7 @@
<key>comment</key>
<string>this is faster than the next begin/end rule since sub-pattern will match till end-of-line and SQL files tend to have very long lines.</string>
<key>match</key>
<string>(`)(?:[^`\\]|\\.)*(`)</string>
<string>(`)[^`\\]*(`)</string>
<key>name</key>
<string>string.quoted.other.backtick.sql</string>
</dict>
Expand Down Expand Up @@ -758,7 +758,7 @@
<key>comment</key>
<string>this is faster than the next begin/end rule since sub-pattern will match till end-of-line and SQL files tend to have very long lines.</string>
<key>match</key>
<string>(")(?:[^"#\\]|\\.)*(")</string>
<string>(")[^"#]*(")</string>
<key>name</key>
<string>string.quoted.double.sql</string>
</dict>
Expand Down

0 comments on commit bd94bff

Please sign in to comment.