From 5c42e2a87f41815980b380f9d83ec0144ff9bd90 Mon Sep 17 00:00:00 2001 From: Thomas Vigouroux Date: Sun, 25 Jul 2021 20:47:24 +0200 Subject: docs(ts): add documentation for listing fns --- runtime/lua/vim/treesitter/query.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/lua/vim') 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 -- cgit