fix(treesitter): update lua, markdown queries

This commit is contained in:
Christian Clason
2025-03-15 11:47:37 +01:00
committed by Christian Clason
parent 94de236815
commit d8eec81560
2 changed files with 7 additions and 3 deletions

View File

@ -17,8 +17,7 @@
(string
content: _ @injection.content)))
(#set! injection.language "vim")
(#any-of? @_vimcmd_identifier
"vim.cmd" "vim.api.nvim_command" "vim.api.nvim_command" "vim.api.nvim_exec2"))
(#any-of? @_vimcmd_identifier "vim.cmd" "vim.api.nvim_command" "vim.api.nvim_exec2"))
((function_call
name: (_) @_vimcmd_identifier

View File

@ -1,7 +1,12 @@
([
(fenced_code_block)
(indented_code_block)
(list)
(list_item
(list))
(section)
] @fold
(#trim! @fold))
(section
(list) @fold
(#trim! @fold))