We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bddb161 commit a62c680Copy full SHA for a62c680
mode/pascal.js
@@ -58,7 +58,7 @@ function tokenBase(stream, state) {
58
return "operator";
59
}
60
stream.eatWhile(/[\w\$_]/);
61
- var cur = stream.current();
+ var cur = stream.current().toLowerCase();
62
if (keywords.propertyIsEnumerable(cur)) return "keyword";
63
if (atoms.propertyIsEnumerable(cur)) return "atom";
64
return "variable";
0 commit comments