nvim-treesitter/queries/wgsl_bevy/highlights.scm
Phạm Huy Hoàng e0420e73c9 fix(wgsl_bevy): Correct formatter mistake
Old version of `format-queries` incorrectly took away a space, creating
a wrong capture.

This is a fixup for that.
2024-01-22 00:49:31 +09:00

44 lines
692 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