Add 'all' to completions for TSInstall/TSUpdate/TSUninstall

This commit is contained in:
Stephan Seitz 2020-08-01 18:44:24 +02:00 committed by Stephan Seitz
parent 70939e71c9
commit 775ce30edd

View file

@ -11,10 +11,10 @@ let g:loaded_nvim_treesitter = 1
lua << EOF
ts_installable_parsers = function()
return table.concat(require'nvim-treesitter.parsers'.available_parsers(), '\n')
return table.concat(require'nvim-treesitter.parsers'.available_parsers(), '\n')..'\nall\n'
end
ts_installed_parsers = function()
return table.concat(require'nvim-treesitter.info'.installed_parsers(), '\n')
return table.concat(require'nvim-treesitter.info'.installed_parsers(), '\n')..'\nall\n'
end
ts_available_modules = function()
return table.concat(require'nvim-treesitter.configs'.available_modules(), '\n')