mirror of
https://github.com/zadam/trilium.git
synced 2025-11-10 23:35:50 +01:00
ckeditor 5.60.0
This commit is contained in:
4
libraries/codemirror/mode/oz/oz.js
vendored
4
libraries/codemirror/mode/oz/oz.js
vendored
@@ -45,7 +45,7 @@ CodeMirror.defineMode("oz", function (conf) {
|
||||
}
|
||||
|
||||
// Special [] keyword
|
||||
if (stream.match(/(\[])/)) {
|
||||
if (stream.match('[]')) {
|
||||
return "keyword"
|
||||
}
|
||||
|
||||
@@ -130,7 +130,7 @@ CodeMirror.defineMode("oz", function (conf) {
|
||||
return "operator";
|
||||
}
|
||||
|
||||
// If nothing match, we skip the entire alphanumerical block
|
||||
// If nothing match, we skip the entire alphanumeric block
|
||||
stream.eatWhile(/\w/);
|
||||
|
||||
return "variable";
|
||||
|
||||
Reference in New Issue
Block a user