diff options
| author | Santos Gallegos <stsewd@protonmail.com> | 2020-09-05 10:20:31 -0500 |
|---|---|---|
| committer | Kiyan Yazdani <yazdani.kiyan@protonmail.com> | 2020-09-05 19:29:46 +0200 |
| commit | 7a1f6b15865b666a68811869b1b6f507f15c36ce (patch) | |
| tree | 262035d0d74965f5e3726d1f738f02f8c5a4bac1 /lua/nvim-treesitter/install.lua | |
| parent | 9e22864d0311f31be4a60aee4e173143bc95da89 (diff) | |
Completion: use custom instead of customlist
Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/396
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", }, }, } |
