Skip to content

Commit

Permalink
fix: comment highlight for pass
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Oct 31, 2020
1 parent 982ae00 commit 5124737
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
build
idea-flex.skeleton
jflex-1.7.0-2.jar
local.properties
1 change: 1 addition & 0 deletions local.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
PUBLISH_TOKEN = perm:ZmRodWFuZw==.OTItMjc5MQ==.RAJMEPUq1GyqBRi2qwWo0CY7PdaWit
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@ public class CharjSyntaxHighlighter extends SyntaxHighlighterBase {
static {
fillMap(ATTRIBUTES, CharjTokenTypeSets.KEY_WORDS, DefaultLanguageHighlighterColors.KEYWORD);

ATTRIBUTES.put(CharjTypes.DOLLAR, DefaultLanguageHighlighterColors.HIGHLIGHTED_REFERENCE);
ATTRIBUTES.put(CharjTypes.DOLLAR, DefaultLanguageHighlighterColors.INSTANCE_METHOD);

ATTRIBUTES.put(CharjTypes.IDENTIFIER, DefaultLanguageHighlighterColors.IDENTIFIER);
ATTRIBUTES.put(CharjTypes.STRUCT_NAME_DECLARATION, DefaultLanguageHighlighterColors.INSTANCE_METHOD);

ATTRIBUTES.put(CharjTypes.COMMENT, DefaultLanguageHighlighterColors.LINE_COMMENT);
ATTRIBUTES.put(CharjTypes.CLOSE_BRACE, DefaultLanguageHighlighterColors.BRACES);
Expand Down

0 comments on commit 5124737

Please sign in to comment.