diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2023-08-12 16:52:36 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2023-08-12 17:34:15 +0200 |
| commit | 2aa9e9b0e655462890c6d2d8632a0d569be66482 (patch) | |
| tree | d4d9d2123142816f6040b67ae68f403cfa48ec3b | |
| parent | Update parsers: teal, wing (diff) | |
| download | nvim-treesitter-2aa9e9b0e655462890c6d2d8632a0d569be66482.tar nvim-treesitter-2aa9e9b0e655462890c6d2d8632a0d569be66482.tar.gz nvim-treesitter-2aa9e9b0e655462890c6d2d8632a0d569be66482.tar.bz2 nvim-treesitter-2aa9e9b0e655462890c6d2d8632a0d569be66482.tar.lz nvim-treesitter-2aa9e9b0e655462890c6d2d8632a0d569be66482.tar.xz nvim-treesitter-2aa9e9b0e655462890c6d2d8632a0d569be66482.tar.zst nvim-treesitter-2aa9e9b0e655462890c6d2d8632a0d569be66482.zip | |
feat!: bump required Nvim version to 0.9.1
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | lua/nvim-treesitter/health.lua | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -63,7 +63,7 @@ For more detailed information on setting these up, see ["Advanced setup"](#advan ## Requirements -- [Latest](https://github.com/neovim/neovim/releases/tag/stable) Neovim release ([nightly](https://github.com/neovim/neovim#install-from-source) recommended) +- **Neovim 0.9.1** or later ([nightly](https://github.com/neovim/neovim#install-from-source) recommended) - `tar` and `curl` in your path (or alternatively `git`) - A C compiler in your path and libstdc++ installed ([Windows users please read this!](https://github.com/nvim-treesitter/nvim-treesitter/wiki/Windows-support)). diff --git a/lua/nvim-treesitter/health.lua b/lua/nvim-treesitter/health.lua index 0edab2a55..a71cbf5cd 100644 --- a/lua/nvim-treesitter/health.lua +++ b/lua/nvim-treesitter/health.lua @@ -23,8 +23,8 @@ local NVIM_TREESITTER_MINIMUM_ABI = 13 local function install_health() _start "Installation" - if fn.has "nvim-0.8.3" ~= 1 then - _error "Nvim-treesitter requires Neovim 0.8.3+" + if fn.has "nvim-0.9.1" ~= 1 then + _error "Nvim-treesitter requires Neovim 0.9.1+" end if fn.executable "tree-sitter" == 0 then |
