diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-04-16 11:41:00 +0200 |
|---|---|---|
| committer | Christian Clason <christian.clason@uni-due.de> | 2022-04-30 11:42:46 +0200 |
| commit | bc25a6a5c4fd659bbf78ba0a2442ecf14eb00398 (patch) | |
| tree | 765ad28bc0745cbb0a4a41bea650a18d6d89ce88 /autoload/nvim_treesitter.vim | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-bc25a6a5c4fd659bbf78ba0a2442ecf14eb00398.tar nvim-treesitter-bc25a6a5c4fd659bbf78ba0a2442ecf14eb00398.tar.gz nvim-treesitter-bc25a6a5c4fd659bbf78ba0a2442ecf14eb00398.tar.bz2 nvim-treesitter-bc25a6a5c4fd659bbf78ba0a2442ecf14eb00398.tar.lz nvim-treesitter-bc25a6a5c4fd659bbf78ba0a2442ecf14eb00398.tar.xz nvim-treesitter-bc25a6a5c4fd659bbf78ba0a2442ecf14eb00398.tar.zst nvim-treesitter-bc25a6a5c4fd659bbf78ba0a2442ecf14eb00398.zip | |
chore!: remove ensure_installed='maintained'
Removes all support (and tests) for the parser category "maintained", as
this is no longer a useful category.
BREAKING CHANGE: replace `ensure_installed='maintained'` by an explicit
list of parsers, or use `'all'` (not recommended).
Diffstat (limited to 'autoload/nvim_treesitter.vim')
| -rw-r--r-- | autoload/nvim_treesitter.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload/nvim_treesitter.vim b/autoload/nvim_treesitter.vim index 1216e9967..207911744 100644 --- a/autoload/nvim_treesitter.vim +++ b/autoload/nvim_treesitter.vim @@ -7,11 +7,11 @@ function! nvim_treesitter#foldexpr() abort endfunction function! nvim_treesitter#installable_parsers(arglead, cmdline, cursorpos) abort - return join(luaeval("require'nvim-treesitter.parsers'.available_parsers()") + ['all', 'maintained'], "\n") + return join(luaeval("require'nvim-treesitter.parsers'.available_parsers()") + ['all'], "\n") endfunction function! nvim_treesitter#installed_parsers(arglead, cmdline, cursorpos) abort - return join(luaeval("require'nvim-treesitter.info'.installed_parsers()") + ['all', 'maintained'], "\n") + return join(luaeval("require'nvim-treesitter.info'.installed_parsers()") + ['all'], "\n") endfunction function! nvim_treesitter#available_modules(arglead, cmdline, cursorpos) abort |
