nvim-treesitter/queries/cooklang/highlights.scm

23 lines
418 B
Scheme
Raw Normal View History

2022-03-14 10:01:14 -07:00
(metadata) @comment
(ingredient
"@" @punctuation.delimiter
(name)? @string.special.symbol
2024-01-06 15:05:50 +09:00
(amount
(quantity)? @number
(units)? @constant)?)
2022-03-14 10:01:14 -07:00
(timer
"~" @punctuation.delimiter
(name)? @string.special.symbol
2024-01-06 15:05:50 +09:00
(amount
(quantity)? @number
(units)? @constant)?)
2022-03-14 10:01:14 -07:00
(cookware
"#" @punctuation.delimiter
(name)? @string.special.symbol
2024-01-06 15:05:50 +09:00
(amount
(quantity)? @number
(units)? @constant)?)