mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
plugins/treesitter: injections support luaConfig strings
This commit is contained in:
parent
31139e0605
commit
65d082069e
1 changed files with 36 additions and 0 deletions
|
@ -38,3 +38,39 @@
|
||||||
(#set! injection.language "vim")))
|
(#set! injection.language "vim")))
|
||||||
]
|
]
|
||||||
(#match? @_path "(^extraConfigVim(Pre|Post)?)$"))
|
(#match? @_path "(^extraConfigVim(Pre|Post)?)$"))
|
||||||
|
|
||||||
|
(binding
|
||||||
|
attrpath: (attrpath
|
||||||
|
(identifier) @namespace
|
||||||
|
(identifier) @name)
|
||||||
|
expression: [
|
||||||
|
(string_expression
|
||||||
|
((string_fragment) @injection.content
|
||||||
|
(#set! injection.language "lua")))
|
||||||
|
(indented_string_expression
|
||||||
|
((string_fragment) @injection.content
|
||||||
|
(#set! injection.language "lua")))
|
||||||
|
]
|
||||||
|
(#match? @namespace "^luaConfig$")
|
||||||
|
(#match? @name "^(pre|post|content)$"))
|
||||||
|
|
||||||
|
(binding
|
||||||
|
attrpath: (attrpath
|
||||||
|
(identifier) @_path)
|
||||||
|
expression: [
|
||||||
|
(attrset_expression
|
||||||
|
(binding_set
|
||||||
|
(binding
|
||||||
|
attrpath: (attrpath
|
||||||
|
(identifier) @_nested_path)
|
||||||
|
expression: [
|
||||||
|
(string_expression
|
||||||
|
((string_fragment) @injection.content
|
||||||
|
(#set! injection.language "lua")))
|
||||||
|
(indented_string_expression
|
||||||
|
((string_fragment) @injection.content
|
||||||
|
(#set! injection.language "lua")))
|
||||||
|
]
|
||||||
|
(#match? @_nested_path "^(pre|post|content)$"))))
|
||||||
|
]
|
||||||
|
(#match? @_path "^luaConfig$"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue