Skip to content

Commit 7a813dd

Browse files
committed
[sql mode] Enable backtick closebrackets
Closes codemirror#5325
1 parent 8d14d3e commit 7a813dd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

mode/sql/sql.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,8 @@ CodeMirror.defineMode("sql", function(config, parserConfig) {
194194

195195
blockCommentStart: "/*",
196196
blockCommentEnd: "*/",
197-
lineComment: support.commentSlashSlash ? "//" : support.commentHash ? "#" : "--"
197+
lineComment: support.commentSlashSlash ? "//" : support.commentHash ? "#" : "--",
198+
closeBrackets: "()[]{}''\"\"``"
198199
};
199200
});
200201

0 commit comments

Comments
 (0)