Release Notes: - Improved JSON syntax highlighting. | Zed 0.174.6 | With this PR | | --- | --- | |  |  | - `null`: `constant` -> `constant.builtin` - `,`, `:`: `punctuation.delimiter` ```json { "property": null, "boolean": true } ```
29 lines
280 B
Scheme
29 lines
280 B
Scheme
(comment) @comment
|
|
|
|
(string) @string
|
|
(escape_sequence) @string.escape
|
|
|
|
(pair
|
|
key: (string) @property.json_key)
|
|
|
|
(number) @number
|
|
|
|
[
|
|
(true)
|
|
(false)
|
|
] @boolean
|
|
|
|
(null) @constant.builtin
|
|
|
|
[
|
|
","
|
|
":"
|
|
] @punctuation.delimiter
|
|
|
|
[
|
|
"{"
|
|
"}"
|
|
"["
|
|
"]"
|
|
] @punctuation.bracket
|