update plugins

This commit is contained in:
REJack
2020-09-21 11:43:11 +02:00
parent 835d48fbb2
commit e8476fa5a4
208 changed files with 94507 additions and 105613 deletions

View File

@@ -111,7 +111,7 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
if (ch != ">" || !state.lexical || state.lexical.type != ">") {
if (stream.eat("=")) {
if (ch == "!" || ch == "=") stream.eat("=")
} else if (/[<>*+\-]/.test(ch)) {
} else if (/[<>*+\-|&?]/.test(ch)) {
stream.eat(ch)
if (ch == ">") stream.eat(ch)
}