We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deee5c0 commit b60e456Copy full SHA for b60e456
mode/pascal/pascal.js
@@ -72,7 +72,7 @@ CodeMirror.defineMode("pascal", function() {
72
return "operator";
73
}
74
stream.eatWhile(/[\w\$_]/);
75
- var cur = stream.current();
+ var cur = stream.current().toLowerCase();
76
if (keywords.propertyIsEnumerable(cur)) return "keyword";
77
if (atoms.propertyIsEnumerable(cur)) return "atom";
78
return "variable";
0 commit comments