Skip to content

Commit

Permalink
feat: add missing kotlin lexer tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
tyron12233 committed Feb 6, 2022
1 parent 227f57c commit 46c9075
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ public void setup() {
KotlinLexer.LineString, KotlinLexer.MultiLineString,
KotlinLexer.StringExpression, KotlinLexer.MultiLineStringQuote,
KotlinLexer.LineStrText, KotlinLexer.SINGLE_QUOTE, KotlinLexer.QUOTE_OPEN,
KotlinLexer.QUOTE_CLOSE, KotlinLexer.HexLiteral, KotlinLexer.MultiLineStrText);
KotlinLexer.QUOTE_CLOSE, KotlinLexer.HexLiteral, KotlinLexer.MultiLineStrText,
KotlinLexer.TRIPLE_QUOTE_CLOSE, KotlinLexer.TRIPLE_QUOTE_OPEN);
putColor(EditorColorScheme.COMMENT, KotlinLexer.DelimitedComment,
KotlinLexer.StrExpr_Comment, KotlinLexer.LineComment,
KotlinLexer.Inside_Comment);
Expand Down

0 comments on commit 46c9075

Please sign in to comment.