Skip to content
Snippets Groups Projects
Commit 7a813dd9 authored by Marijn Haverbeke's avatar Marijn Haverbeke
Browse files

[sql mode] Enable backtick closebrackets

Closes #5325
parent 8d14d3ec
No related branches found
No related tags found
No related merge requests found
...@@ -194,7 +194,8 @@ CodeMirror.defineMode("sql", function(config, parserConfig) { ...@@ -194,7 +194,8 @@ CodeMirror.defineMode("sql", function(config, parserConfig) {
blockCommentStart: "/*", blockCommentStart: "/*",
blockCommentEnd: "*/", blockCommentEnd: "*/",
lineComment: support.commentSlashSlash ? "//" : support.commentHash ? "#" : "--" lineComment: support.commentSlashSlash ? "//" : support.commentHash ? "#" : "--",
closeBrackets: "()[]{}''\"\"``"
}; };
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment