mirror of
https://github.com/helix-editor/helix
synced 2026-08-04 14:27:07 +02:00
23 lines
473 B
Scheme
23 lines
473 B
Scheme
; Rule sets and their declaration blocks
|
|
(rule_set) @function.around
|
|
(rule_set
|
|
(block) @function.inside)
|
|
|
|
(keyframe_block_list) @function.around
|
|
(keyframe_block
|
|
(block) @function.inside)
|
|
|
|
; At-rules with a body (e.g. @media, @supports)
|
|
(media_statement) @class.around
|
|
(media_statement
|
|
(block) @class.inside)
|
|
|
|
; Declarations as key/value entries
|
|
(declaration) @entry.around
|
|
(declaration
|
|
":"
|
|
(_) @entry.inside)
|
|
|
|
(comment) @comment.inside
|
|
(comment)+ @comment.around
|