mirror of https://github.com/helix-editor/helix
feat(toml): highlight table headers (#7441)
parent
08c0a23b79
commit
6c6923c39e
|
@ -1,10 +1,23 @@
|
||||||
; Properties
|
; Properties
|
||||||
;-----------
|
;-----------
|
||||||
|
|
||||||
[
|
(table [
|
||||||
(bare_key)
|
(bare_key)
|
||||||
|
(dotted_key)
|
||||||
(quoted_key)
|
(quoted_key)
|
||||||
] @variable.other.member
|
] @type)
|
||||||
|
|
||||||
|
(table_array_element [
|
||||||
|
(bare_key)
|
||||||
|
(dotted_key)
|
||||||
|
(quoted_key)
|
||||||
|
] @type)
|
||||||
|
|
||||||
|
(pair [
|
||||||
|
(bare_key)
|
||||||
|
(dotted_key)
|
||||||
|
(quoted_key)
|
||||||
|
] @variable.other.member)
|
||||||
|
|
||||||
; Literals
|
; Literals
|
||||||
;---------
|
;---------
|
||||||
|
|
Loading…
Reference in New Issue