aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2023-06-06 11:02:28 +0200
committerChristian Clason <c.clason@uni-graz.at>2025-05-12 18:43:40 +0200
commit5a70048116f8fb7489aa68e347d9dfe57dc39498 (patch)
treeebf30cd15ef458b0b881df5db4396a95fc1a63f9 /doc
parentrefactor: use `vim.uv` (diff)
downloadnvim-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 'doc')
-rw-r--r--doc/nvim-treesitter.txt10
1 files changed, 3 insertions, 7 deletions
diff --git a/doc/nvim-treesitter.txt b/doc/nvim-treesitter.txt
index a7c6bfa69..8b530550c 100644
--- a/doc/nvim-treesitter.txt
+++ b/doc/nvim-treesitter.txt
@@ -31,7 +31,7 @@ Install the parser for your language
To get a list of supported languages
>vim
- :TSInstallInfo
+ :TSInstall <tab>
<
To install supported parsers and queries, put this in your `init.lua` file:
@@ -50,9 +50,10 @@ To install supported parsers and queries, put this in your `init.lua` file:
-- List of parsers to ignore installing (for "core" etc.)
ignore_install = { "javascript" },
+ }
<
-See |nvim-treesitter-commands| for a list of all available commands.
+To check installed parsers and queries, use `:checkhealth nvim-treesitter`.
==============================================================================
COMMANDS *nvim-treesitter-commands*
@@ -64,11 +65,6 @@ Install one or more treesitter parsers.
You can use |:TSInstall| `all` to install all parsers. Use |:TSInstall!| to
force the reinstallation of already installed parsers.
- *:TSInstallInfo*
-:TSInstallInfo ~
-
-List information about currently installed parsers
-
*:TSUpdate*
:TSUpdate {language} ... ~