diff options
Diffstat (limited to 'lua/nvim-treesitter/install.lua')
| -rw-r--r-- | lua/nvim-treesitter/install.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/nvim-treesitter/install.lua b/lua/nvim-treesitter/install.lua index 8b4aa783..02292672 100644 --- a/lua/nvim-treesitter/install.lua +++ b/lua/nvim-treesitter/install.lua @@ -235,28 +235,28 @@ M.commands = { run = install(false, true), args = { "-nargs=+", - "-complete=customlist,nvim_treesitter#installable_parsers", + "-complete=custom,nvim_treesitter#installable_parsers", }, }, TSInstallSync = { run = install(true, true), args = { "-nargs=+", - "-complete=customlist,nvim_treesitter#installable_parsers", + "-complete=custom,nvim_treesitter#installable_parsers", }, }, TSUpdate = { run = M.update, args = { "-nargs=*", - "-complete=customlist,nvim_treesitter#installed_parsers", + "-complete=custom,nvim_treesitter#installed_parsers", }, }, TSUninstall = { run = M.uninstall, args = { "-nargs=+", - "-complete=customlist,nvim_treesitter#installed_parsers", + "-complete=custom,nvim_treesitter#installed_parsers", }, }, } |
