Fixed an issue where backslash breaks syntax highlighting. #7528

This commit is contained in:
Aditya Toshniwal
2024-06-17 16:16:15 +05:30
parent b0e7847962
commit 439d6cb28f
2 changed files with 1 additions and 1 deletions

View File

@@ -4,7 +4,6 @@ const extraKeywords = 'unsafe';
const keywords = PostgreSQL.spec.keywords.replace(/\b\w\b/, '') + ' ' + extraKeywords;
const PgSQL = SQLDialect.define({
backslashEscapes: true,
charSetCasts: true,
doubleDollarQuotedStrings: false,
operatorChars: '+-*/<>=~!@#%^&|`?',