File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/com/intellij/devkt/json Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ public T attributesOf(IElementType iElementType, ColorScheme<? extends T> colorS
36
36
if (iElementType == JsonElementTypes .LINE_COMMENT ) return colorScheme .getLineComments ();
37
37
else if (iElementType == JsonElementTypes .BLOCK_COMMENT ) return colorScheme .getBlockComments ();
38
38
else if (iElementType == JsonElementTypes .NUMBER ) return colorScheme .getNumbers ();
39
- else if (iElementType == JsonElementTypes .STRING_LITERAL ) return colorScheme .getProperty ();
39
+ else if (iElementType == JsonElementTypes .SINGLE_QUOTED_STRING ) return colorScheme .getString ();
40
+ else if (iElementType == JsonElementTypes .DOUBLE_QUOTED_STRING ) return colorScheme .getProperty ();
40
41
else if (iElementType == JsonElementTypes .IDENTIFIER ) return colorScheme .getIdentifiers ();
41
42
else if (JsonParserDefinition .JSON_BRACES .contains (iElementType )) return colorScheme .getBraces ();
42
43
else if (JsonParserDefinition .JSON_KEYWORDS .contains (iElementType )) return colorScheme .getKeywords ();
You can’t perform that action at this time.
0 commit comments