File tree Expand file tree Collapse file tree 3 files changed +6
-10
lines changed
src/org/ice1000/julia/devkt/lang Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ object DocfmtParserDefinition : ParserDefinition {
19
19
override fun createElement (node : ASTNode ? ): PsiElement = DocfmtTypes .Factory .createElement(node)
20
20
override fun getCommentTokens () = DocfmtTokenType .COMMENTS
21
21
override fun createLexer (project : Project ? ) = DocfmtLexerAdapter ()
22
- override fun getWhitespaceTokens () = TokenSet .WHITE_SPACE
23
22
override fun getStringLiteralElements (): TokenSet = TokenSet .EMPTY
24
23
override fun getFileNodeType () = FILE
25
24
}
Original file line number Diff line number Diff line change @@ -21,6 +21,12 @@ class Julia<TextAttributes> : ExtendedDevKtLanguage<TextAttributes>(
21
21
JuliaTypes .TRIPLE_QUOTE_END ,
22
22
JuliaTypes .REGEX_START ,
23
23
JuliaTypes .REGEX_END ,
24
+ JuliaTypes .BYTE_ARRAY_START ,
25
+ JuliaTypes .BYTE_ARRAY_END ,
26
+ JuliaTypes .VERSION_START ,
27
+ JuliaTypes .VERSION_END ,
28
+ JuliaTypes .RAW_STR_START ,
29
+ JuliaTypes .RAW_STR_END ,
24
30
JuliaTypes .REGULAR_STRING_PART_LITERAL -> colorScheme.string
25
31
JuliaTypes .STRING_INTERPOLATE_START ,
26
32
JuliaTypes .STRING_INTERPOLATE_END -> colorScheme.interpolation
You can’t perform that action at this time.
0 commit comments