mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-06-05 09:14:02 -04:00
Updated codemirror to 5.4.0
This commit is contained in:
parent
1d843c8ac2
commit
01685c255f
69 changed files with 2988 additions and 558 deletions
3
public/vendor/codemirror/mode/apl/apl.js
vendored
3
public/vendor/codemirror/mode/apl/apl.js
vendored
|
@ -102,7 +102,7 @@ CodeMirror.defineMode("apl", function() {
|
|||
};
|
||||
},
|
||||
token: function(stream, state) {
|
||||
var ch, funcName, word;
|
||||
var ch, funcName;
|
||||
if (stream.eatSpace()) {
|
||||
return null;
|
||||
}
|
||||
|
@ -163,7 +163,6 @@ CodeMirror.defineMode("apl", function() {
|
|||
return "function jot-dot";
|
||||
}
|
||||
stream.eatWhile(/[\w\$_]/);
|
||||
word = stream.current();
|
||||
state.prev = true;
|
||||
return "keyword";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue