mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-18 11:20:07 -04:00
27 lines
748 B
Text
27 lines
748 B
Text
|
|
shader_type spatial;
|
||
|
|
|
||
|
|
render_mode unshaded, wireframe;
|
||
|
|
// <- @keyword
|
||
|
|
// ^^^^^^^^ @keyword
|
||
|
|
// ^^^^^^^^^ @keyword
|
||
|
|
|
||
|
|
/** My Doc comment*/
|
||
|
|
//^^^^^^^^^^^^^^^^^^ @comment.documentation
|
||
|
|
uniform float MY_VALUE: interesting_hint = 1.0;
|
||
|
|
//<- @keyword
|
||
|
|
// ^^^^^ type.builtin
|
||
|
|
// ^^^^^^^^ constant
|
||
|
|
// ^ @punctuation.delimiter
|
||
|
|
// ^^^^^^^^^^^^^^^^ @attribute
|
||
|
|
// ^ @operator
|
||
|
|
// ^^^ @number.float
|
||
|
|
// ^ punctuation.delimiter
|
||
|
|
|
||
|
|
void vertex() {
|
||
|
|
// <- type.builtin
|
||
|
|
// ^^^^^^ @function
|
||
|
|
do {} while (123< 2231);
|
||
|
|
//^^ keyword.repeat
|
||
|
|
// ^^^^^ keyword.repeat
|
||
|
|
}
|