From 7a1f6b15865b666a68811869b1b6f507f15c36ce Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Sat, 5 Sep 2020 10:20:31 -0500 Subject: Completion: use custom instead of customlist Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/396 --- lua/nvim-treesitter/install.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lua/nvim-treesitter/install.lua') 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", }, }, } -- cgit v1.2.3