aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-04-05 15:16:20 -0700
committerGitHub <noreply@github.com>2025-04-05 15:16:20 -0700
commited4dff80c06167d180293ca13ccf48b9a615c17a (patch)
tree9797a95062a45c37cf0028a33da37233d1e3a8cb
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-ed4dff80c06167d180293ca13ccf48b9a615c17a.tar
nvim-lspconfig-ed4dff80c06167d180293ca13ccf48b9a615c17a.tar.gz
nvim-lspconfig-ed4dff80c06167d180293ca13ccf48b9a615c17a.tar.bz2
nvim-lspconfig-ed4dff80c06167d180293ca13ccf48b9a615c17a.tar.lz
nvim-lspconfig-ed4dff80c06167d180293ca13ccf48b9a615c17a.tar.xz
nvim-lspconfig-ed4dff80c06167d180293ca13ccf48b9a615c17a.tar.zst
nvim-lspconfig-ed4dff80c06167d180293ca13ccf48b9a615c17a.zip
feat: require Nvim 0.10+ #3692
-rw-r--r--.github/workflows/test.yml2
-rw-r--r--README.md2
-rw-r--r--lua/lspconfig.lua2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 45069e8d..35f71080 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
- nvim_version: [nightly, 'v0.9.5']
+ nvim_version: [nightly, 'v0.10.4']
steps:
- uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
diff --git a/README.md b/README.md
index ba6be869..f6e11432 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ View the [documentation for all configs](doc/configs.md) or `:help lspconfig-all
[![LuaRocks](https://img.shields.io/luarocks/v/neovim/nvim-lspconfig?logo=lua&color=purple)](https://luarocks.org/modules/neovim/nvim-lspconfig)
-* Requires Nvim 0.9 above. Update Nvim and nvim-lspconfig before reporting an issue.
+* Requires Nvim 0.10 above. Update Nvim and nvim-lspconfig before reporting an issue.
* Install nvim-lspconfig using Vim's "packages" feature:
```
git clone https://github.com/neovim/nvim-lspconfig ~/.config/nvim/pack/nvim/start/nvim-lspconfig
diff --git a/lua/lspconfig.lua b/lua/lspconfig.lua
index 142a4d44..ecd30df4 100644
--- a/lua/lspconfig.lua
+++ b/lua/lspconfig.lua
@@ -102,7 +102,7 @@ function mt:__index(k)
return configs[k]
end
-local minimum_neovim_version = '0.9'
+local minimum_neovim_version = '0.10'
if vim.fn.has('nvim-' .. minimum_neovim_version) == 0 then
local msg = string.format(
'nvim-lspconfig requires Nvim version %s, but you are running: %s',