diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2023-06-06 11:02:28 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2025-05-12 18:43:40 +0200 |
| commit | 5a70048116f8fb7489aa68e347d9dfe57dc39498 (patch) | |
| tree | ebf30cd15ef458b0b881df5db4396a95fc1a63f9 /plugin | |
| parent | refactor: use `vim.uv` (diff) | |
| download | nvim-treesitter-5a70048116f8fb7489aa68e347d9dfe57dc39498.tar nvim-treesitter-5a70048116f8fb7489aa68e347d9dfe57dc39498.tar.gz nvim-treesitter-5a70048116f8fb7489aa68e347d9dfe57dc39498.tar.bz2 nvim-treesitter-5a70048116f8fb7489aa68e347d9dfe57dc39498.tar.lz nvim-treesitter-5a70048116f8fb7489aa68e347d9dfe57dc39498.tar.xz nvim-treesitter-5a70048116f8fb7489aa68e347d9dfe57dc39498.tar.zst nvim-treesitter-5a70048116f8fb7489aa68e347d9dfe57dc39498.zip | |
feat: drop `TSInstallInfo` in favor of better `checkhealth`
also fixes the hole in install.compilers
Diffstat (limited to 'plugin')
| -rw-r--r-- | plugin/nvim-treesitter.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugin/nvim-treesitter.lua b/plugin/nvim-treesitter.lua index fcf44d537..0bcbe07c3 100644 --- a/plugin/nvim-treesitter.lua +++ b/plugin/nvim-treesitter.lua @@ -18,10 +18,6 @@ local function complete_installed_parsers(arglead) end -- create user commands -api.nvim_create_user_command('TSInstallInfo', function() - require('nvim-treesitter.install').info() -end, { nargs = 0, desc = 'List available treesitter parsers' }) - api.nvim_create_user_command('TSInstall', function(args) require('nvim-treesitter.install').install(args.fargs, { force = args.bang }) end, { |
