mirror of
https://github.com/zadam/trilium.git
synced 2025-11-07 22:05:44 +01:00
ckeditor 5.60.0
This commit is contained in:
4
libraries/codemirror/mode/cypher/cypher.js
vendored
4
libraries/codemirror/mode/cypher/cypher.js
vendored
@@ -21,11 +21,11 @@
|
||||
var tokenBase = function(stream/*, state*/) {
|
||||
var ch = stream.next();
|
||||
if (ch ==='"') {
|
||||
stream.match(/.*?"/);
|
||||
stream.match(/^[^"]*"/);
|
||||
return "string";
|
||||
}
|
||||
if (ch === "'") {
|
||||
stream.match(/.*?'/);
|
||||
stream.match(/^[^']*'/);
|
||||
return "string";
|
||||
}
|
||||
if (/[{}\(\),\.;\[\]]/.test(ch)) {
|
||||
|
||||
Reference in New Issue
Block a user