summaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2024-01-15 12:51:58 +0100
committerChristian Clason <c.clason@uni-graz.at>2024-01-15 13:02:20 +0100
commit59d4c14a1a4262cf637ff2420032593afa062749 (patch)
tree5cdcc3cf2b1e8058671c611a6b3c7db1aefc6eda /lua
parentfix: link type in pattern matching correctly (diff)
downloadnvim-treesitter-59d4c14a1a4262cf637ff2420032593afa062749.tar
nvim-treesitter-59d4c14a1a4262cf637ff2420032593afa062749.tar.gz
nvim-treesitter-59d4c14a1a4262cf637ff2420032593afa062749.tar.bz2
nvim-treesitter-59d4c14a1a4262cf637ff2420032593afa062749.tar.lz
nvim-treesitter-59d4c14a1a4262cf637ff2420032593afa062749.tar.xz
nvim-treesitter-59d4c14a1a4262cf637ff2420032593afa062749.tar.zst
nvim-treesitter-59d4c14a1a4262cf637ff2420032593afa062749.zip
feat!: bump minimum Nvim version to 0.9.2
required for empty injection fix
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/health.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/nvim-treesitter/health.lua b/lua/nvim-treesitter/health.lua
index a71cbf5cd..be265f7d0 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.9.1" ~= 1 then
- _error "Nvim-treesitter requires Neovim 0.9.1+"
+ if fn.has "nvim-0.9.2" ~= 1 then
+ _error "Nvim-treesitter requires Nvim 0.9.2 or newer"
end
if fn.executable "tree-sitter" == 0 then