aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Clason <christian.clason@uni-due.de>2020-11-21 19:42:53 +0100
committerThomas Vigouroux <tomvig38@gmail.com>2020-11-25 22:35:20 +0100
commit29762cffac2a308c803e9893f4f8264bdb27a255 (patch)
treea40af15b6c937d71e20a7eaa89058d398c038f8a
parentexpand explanation of TSUpdate (diff)
downloadnvim-treesitter-29762cffac2a308c803e9893f4f8264bdb27a255.tar
nvim-treesitter-29762cffac2a308c803e9893f4f8264bdb27a255.tar.gz
nvim-treesitter-29762cffac2a308c803e9893f4f8264bdb27a255.tar.bz2
nvim-treesitter-29762cffac2a308c803e9893f4f8264bdb27a255.tar.lz
nvim-treesitter-29762cffac2a308c803e9893f4f8264bdb27a255.tar.xz
nvim-treesitter-29762cffac2a308c803e9893f4f8264bdb27a255.tar.zst
nvim-treesitter-29762cffac2a308c803e9893f4f8264bdb27a255.zip
slight edit
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index 92fa742b0..56719f4ab 100644
--- a/README.md
+++ b/README.md
@@ -72,11 +72,10 @@ $ git clone https://github.com/nvim-treesitter/nvim-treesitter.git
Treesitter uses a different _parser_ for every language, which needs to be generated via `tree-sitter-cli` from a `grammar.js` file, then compiled to a `.so` library that needs to be placed in neovim's `runtimepath` (typically under `parser/{lang}.so`). To simplify this, `nvim-treesitter`
provides commands to automate this process:
-- `TSInstallInfo` to know which parsers are available and installed.
- `TSInstall {language}` to install one or more parsers from a generated `c` file. (This requires a `C` compiler in your path.)
- `TSInstallFromGrammar {language}` to install one or more parsers from the original `grammar.js`. (In addition to a `C` compiler, this requires the `tree-sitter-cli` executable in your path; see https://tree-sitter.github.io/tree-sitter/creating-parsers#installation for installation instructions.)
-`TSInstall <tab>` and `TSInstallFromGrammar <tab>` will give you a list of supported languages; you can also use `TSInstall all` to install every parser on the list.
+`TSInstall <tab>` and `TSInstallFromGrammar <tab>` will give you a list of supported languages; you can also use `TSInstall all` to install every parser on the list. To show which languages are available together with their installation status, use `TSInstallInfo`.
If your language is not yet included in this list, you can add it locally as follows: