nvim-treesitter/queries/cooklang/highlights.scm

25 lines
445 B
Scheme
Raw Normal View History

2022-03-14 10:01:14 -07:00
(metadata) @comment
2024-06-07 21:33:49 -07:00
(comment) @comment @spell
2022-03-14 10:01:14 -07:00
(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)?)