Skip to content

Commit

Permalink
Fix not being highlighted as keyword, Closes #23
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Dec 16, 2024
1 parent fd1fd2b commit 8a0c3e2
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public LanguageHandlerJavaScript() {
this.tokenStyles = Maps.newHashMap();

this.tokenStyles.put("const", KEYWORD);
this.tokenStyles.put("delete", KEYWORD);
this.tokenStyles.put("let", KEYWORD);
this.tokenStyles.put("var", KEYWORD);
this.tokenStyles.put("function", KEYWORD);
Expand Down

0 comments on commit 8a0c3e2

Please sign in to comment.