aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/treesitter/query.lua
diff options
context:
space:
mode:
authorThomas Vigouroux <tomvig38@gmail.com>2021-07-26 18:48:15 +0200
committerGitHub <noreply@github.com>2021-07-26 18:48:15 +0200
commit0e22a40b6d328ac4aa07ed7bc40da200a48ef524 (patch)
treefae2097bf903a93f3e8ef75f20ca7e37dcf29386 /runtime/lua/vim/treesitter/query.lua
parent1637622db9dd9ea7c9679a1a5e1367100f26dcf5 (diff)
parent5c42e2a87f41815980b380f9d83ec0144ff9bd90 (diff)
downloadrneovim-0e22a40b6d328ac4aa07ed7bc40da200a48ef524.tar.gz
rneovim-0e22a40b6d328ac4aa07ed7bc40da200a48ef524.tar.bz2
rneovim-0e22a40b6d328ac4aa07ed7bc40da200a48ef524.zip
Merge pull request #15191 from vigoux/ts-docs
docs(ts): add documentation for listing fns
Diffstat (limited to 'runtime/lua/vim/treesitter/query.lua')
-rw-r--r--runtime/lua/vim/treesitter/query.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/treesitter/query.lua b/runtime/lua/vim/treesitter/query.lua
index 0ba44ced1a..4ecd91d295 100644
--- a/runtime/lua/vim/treesitter/query.lua
+++ b/runtime/lua/vim/treesitter/query.lua
@@ -351,12 +351,12 @@ function M.add_directive(name, handler, force)
directive_handlers[name] = handler
end
---- Returns the list of currently supported directives
+--- @return The list of supported directives.
function M.list_directives()
return vim.tbl_keys(directive_handlers)
end
---- Returns the list of currently supported predicates
+--- @return The list of supported predicates.
function M.list_predicates()
return vim.tbl_keys(predicate_handlers)
end