diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2025-04-05 15:16:20 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-05 15:16:20 -0700 |
| commit | ed4dff80c06167d180293ca13ccf48b9a615c17a (patch) | |
| tree | 9797a95062a45c37cf0028a33da37233d1e3a8cb | |
| parent | docs: update configs.md (diff) | |
| download | nvim-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.yml | 2 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | lua/lspconfig.lua | 2 |
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 @@ -19,7 +19,7 @@ View the [documentation for all configs](doc/configs.md) or `:help lspconfig-all [](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', |
