mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-08 06:20:01 -04:00
15 lines
410 B
Scheme
15 lines
410 B
Scheme
; Specified language.
|
|
; filename.lua | 10 col 5 | >!lua!< local value = 10;
|
|
(code_block
|
|
(language_delimiter) @injection.language
|
|
(content) @injection.content
|
|
(#offset! @injection.language 0 2 0 -2))
|
|
|
|
; Automatic language(slightly inaccurate).
|
|
; filename.lua | 10 col 5 | local value = 10;
|
|
(quickfix_item
|
|
(filename) @injection.filename
|
|
(range)
|
|
(code_block
|
|
.
|
|
(content) @injection.content .))
|