mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-05 13:00:08 -04:00
fix(install): return task object in API functions
This commit is contained in:
parent
d08cf75e1b
commit
011f02936f
2 changed files with 5 additions and 5 deletions
|
|
@ -5,15 +5,15 @@ function M.setup(...)
|
|||
end
|
||||
|
||||
function M.install(...)
|
||||
require('nvim-treesitter.install').install(...)
|
||||
return require('nvim-treesitter.install').install(...)
|
||||
end
|
||||
|
||||
function M.uninstall(...)
|
||||
require('nvim-treesitter.install').uninstall(...)
|
||||
return require('nvim-treesitter.install').uninstall(...)
|
||||
end
|
||||
|
||||
function M.update(...)
|
||||
require('nvim-treesitter.install').update(...)
|
||||
return require('nvim-treesitter.install').update(...)
|
||||
end
|
||||
|
||||
function M.indentexpr()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue