update plugin files
This commit is contained in:
4
plugins/codemirror/mode/sql/sql.js
vendored
4
plugins/codemirror/mode/sql/sql.js
vendored
@@ -122,9 +122,9 @@ CodeMirror.defineMode("sql", function(config, parserConfig) {
|
||||
if (dateSQL.hasOwnProperty(word) && (stream.match(/^( )+'[^']*'/) || stream.match(/^( )+"[^"]*"/)))
|
||||
return "number";
|
||||
if (atoms.hasOwnProperty(word)) return "atom";
|
||||
if (builtin.hasOwnProperty(word)) return "builtin";
|
||||
if (builtin.hasOwnProperty(word)) return "type";
|
||||
if (keywords.hasOwnProperty(word)) return "keyword";
|
||||
if (client.hasOwnProperty(word)) return "string-2";
|
||||
if (client.hasOwnProperty(word)) return "builtin";
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user