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

[sql mode] Work when not given a configuration

Closes #1374
parent fbefd524
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ CodeMirror.defineMode("sql", function(config, parserConfig) {
var client = parserConfig.client || {},
atoms = parserConfig.atoms || {"false": true, "true": true, "null": true},
builtin = parserConfig.builtin || {},
keywords = parserConfig.keywords,
keywords = parserConfig.keywords || {},
operatorChars = parserConfig.operatorChars || /^[*+\-%<>!=&|~^]/,
support = parserConfig.support || {},
hooks = parserConfig.hooks || {},
......
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