nvim-treesitter/queries/wgsl_bevy/highlights.scm
Stephan Seitz 4920a4e732 highlights(wgsl_bevy): add support for naga_oil features
Bevy has switched to https://github.com/bevyengine/naga_oil which allows
new syntax constructs.
2023-07-25 22:22:35 +02:00

36 lines
611 B
Scheme

; inherits wgsl
[
"virtual"
"override"
] @keyword
[
"#import"
"#define_import_path"
"as"
] @include
"::" @punctuation.delimiter
(function_declaration
(import_path
((identifier) @function .)))
(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