lang(json): make field key highlighting consistent with toml and yaml (#10676)
This commit is contained in:
parent
50b13d1aea
commit
6876f923d5
2 changed files with 18 additions and 8 deletions
|
@ -4,8 +4,9 @@
|
|||
] @constant.builtin.boolean
|
||||
(null) @constant.builtin
|
||||
(number) @constant.numeric
|
||||
|
||||
(pair
|
||||
key: (_) @keyword)
|
||||
key: (_) @variable.other.member)
|
||||
|
||||
(string) @string
|
||||
(escape_sequence) @constant.character.escape
|
||||
|
|
|
@ -1,11 +1,20 @@
|
|||
(string) @string
|
||||
|
||||
(identifier) @constant
|
||||
|
||||
[
|
||||
(true)
|
||||
(false)
|
||||
] @constant.builtin.boolean
|
||||
(null) @constant.builtin
|
||||
(number) @constant.numeric
|
||||
|
||||
(null) @constant.builtin
|
||||
|
||||
[(true) (false)] @constant.builtin.boolean
|
||||
(member
|
||||
name: (_) @variable.other.member)
|
||||
|
||||
(string) @string
|
||||
(comment) @comment
|
||||
|
||||
"," @punctuation.delimiter
|
||||
[
|
||||
"["
|
||||
"]"
|
||||
"{"
|
||||
"}"
|
||||
] @punctuation.bracket
|
||||
|
|
Loading…
Reference in a new issue