nvim-treesitter/runtime/queries/wgsl_bevy/highlights.scm
Riley Bruins f2204e58db
fix: use proper ; inherits syntax in queries (#8226)
Some queries don't add a colon after the `inherits` keyword, which nvim
could handle but `ts_query_ls` could not, causing it to give incomplete
diagnostics.
2025-10-24 18:47:39 -07:00

45 lines
694 B
Scheme

; inherits: wgsl
[
"virtual"
"override"
] @keyword
[
"#import"
"#define_import_path"
"as"
] @keyword.import
"::" @punctuation.delimiter
(function_declaration
(import_path
(identifier) @function .))
(import_path
(identifier) @module
(identifier))
(struct_declaration
(preproc_ifdef
(struct_member
(variable_identifier_declaration
(identifier) @variable.member))))
(struct_declaration
(preproc_ifdef
(preproc_else
(struct_member
(variable_identifier_declaration
(identifier) @variable.member)))))
(preproc_ifdef
name: (identifier) @constant.macro)
[
"#ifdef"
"#ifndef"
"#endif"
"#else"
] @keyword.directive