Collapse variant and type into the same color

This commit is contained in:
Max Brunsfeld 2022-10-07 12:44:55 -07:00
parent fcf13b44fb
commit 95cb9ceac9
3 changed files with 5 additions and 18 deletions

View file

@ -27,17 +27,8 @@
; Identifier conventions
; Assume uppercase names are enum constructors
((identifier) @variant
(#match? @variant "^[A-Z]"))
; Assume that uppercase names in paths are types
((scoped_identifier
path: (identifier) @type)
(#match? @type "^[A-Z]"))
((scoped_identifier
path: (scoped_identifier
name: (identifier) @type))
; Assume uppercase names are types/enum-constructors
((identifier) @type
(#match? @type "^[A-Z]"))
; Assume all-caps names are constants