aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2025-05-15 09:45:28 +0200
committerChristian Clason <ch.clason+github@icloud.com>2025-05-16 08:48:27 +0200
commitb0a20057b0110952f22bc067720fe23887d5db32 (patch)
tree97eccf546bf34c5f2dd7caa4e788b3a18fc66039 /doc
parentfix(c,cpp,fsharp,idl,powershell,sql,systemtap): remove unneeded escapes (diff)
downloadnvim-treesitter-b0a20057b0110952f22bc067720fe23887d5db32.tar
nvim-treesitter-b0a20057b0110952f22bc067720fe23887d5db32.tar.gz
nvim-treesitter-b0a20057b0110952f22bc067720fe23887d5db32.tar.bz2
nvim-treesitter-b0a20057b0110952f22bc067720fe23887d5db32.tar.lz
nvim-treesitter-b0a20057b0110952f22bc067720fe23887d5db32.tar.xz
nvim-treesitter-b0a20057b0110952f22bc067720fe23887d5db32.tar.zst
nvim-treesitter-b0a20057b0110952f22bc067720fe23887d5db32.zip
feat(config)!: remove `ignore_install`
This was only useful for no longer supported `auto_install` option.
Diffstat (limited to 'doc')
-rw-r--r--doc/nvim-treesitter.txt6
1 files changed, 0 insertions, 6 deletions
diff --git a/doc/nvim-treesitter.txt b/doc/nvim-treesitter.txt
index f95872177..c810023f7 100644
--- a/doc/nvim-treesitter.txt
+++ b/doc/nvim-treesitter.txt
@@ -26,8 +26,6 @@ To configure `nvim-treesitter`, put this in your `init.lua` file:
-- A directory to install the parsers and queries to.
-- Defaults to the `stdpath('data')/site` dir.
install_dir = "/some/path/to/store/parsers",
- -- List of parsers to ignore installing (for "stable" etc.)
- ignore_install = { "some_parser" },
}
NOTE: You do not need to call `setup` to use this plugin with the default
@@ -103,10 +101,6 @@ setup({opts}) *nvim-treesitter.setup()*
• {install_dir} (`string?`, default `stdpath('data')/site/`)
directory to install parsers and queries to. Note: will be
appended to |runtimepath|.
- • {ignore_install} (`string[]?`) list of languages to never
- install even if specified for an installation operation.
- (Useful when specifying tiers instead of individual
- languages.)
install({languages}, {opts}, {callback}) *nvim-treesitter.install()*