mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
Add 'all' to completions for TSInstall/TSUpdate/TSUninstall
This commit is contained in:
parent
70939e71c9
commit
775ce30edd
1 changed files with 2 additions and 2 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue