nvim-treesitter/queries/wgsl_bevy/highlights.scm
Stephan Seitz 817531ce6f parsers: add wgsl_bevy
This adds an extension of tree-sitter-wgsl that understands
[Bevy's](https://bevyengine.org/) preprocessor directives.
2022-12-31 15:19:48 +01:00

25 lines
496 B
Scheme

; inherits wgsl
[
"#import"
"#define_import_path"
] @include
"::" @punctuation.delimiter
(import_path (identifier) @namespace (identifier))
(struct_declaration
(preproc_ifdef (struct_member (variable_identifier_declaration (identifier) @field))))
(struct_declaration
(preproc_ifdef
(preproc_else (struct_member (variable_identifier_declaration (identifier) @field)))))
(preproc_ifdef
name: (identifier) @constant.macro)
[
"#ifdef"
"#ifndef"
"#endif"
"#else"
] @preproc