breaking: bump nvim version requirement to 0.5.1 (#1406)
This commit is contained in:
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
|||||||
manager: sudo apt-get
|
manager: sudo apt-get
|
||||||
packages: -y fd-find
|
packages: -y fd-find
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-20.04
|
||||||
url: https://github.com/neovim/neovim/releases/download/v0.5.0/nvim-linux64.tar.gz
|
url: https://github.com/neovim/neovim/releases/download/v0.5.1/nvim-linux64.tar.gz
|
||||||
manager: sudo apt-get
|
manager: sudo apt-get
|
||||||
packages: -y fd-find
|
packages: -y fd-find
|
||||||
- os: macos-10.15
|
- os: macos-10.15
|
||||||
@@ -23,7 +23,7 @@ jobs:
|
|||||||
manager: brew
|
manager: brew
|
||||||
packages: fd
|
packages: fd
|
||||||
- os: macos-10.15
|
- os: macos-10.15
|
||||||
url: https://github.com/neovim/neovim/releases/download/v0.5.0/nvim-macos.tar.gz
|
url: https://github.com/neovim/neovim/releases/download/v0.5.1/nvim-macos.tar.gz
|
||||||
manager: brew
|
manager: brew
|
||||||
packages: fd
|
packages: fd
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ Telescope Wiki</sub>
|
|||||||
|
|
||||||
This section should guide you to run your first builtin pickers.
|
This section should guide you to run your first builtin pickers.
|
||||||
|
|
||||||
[Neovim (v0.5)](https://github.com/neovim/neovim/releases/tag/v0.5.0) or newer
|
[Neovim (v0.5.1)](https://github.com/neovim/neovim/releases/tag/v0.5.1) or newer
|
||||||
is required for `telescope.nvim` to work.
|
is required for `telescope.nvim` to work.
|
||||||
|
|
||||||
### Suggested dependencies
|
### Suggested dependencies
|
||||||
|
|||||||
@@ -26,8 +26,8 @@
|
|||||||
--- </code>
|
--- </code>
|
||||||
---@brief ]]
|
---@brief ]]
|
||||||
|
|
||||||
if 1 ~= vim.fn.has "nvim-0.5" then
|
if 1 ~= vim.fn.has "nvim-0.5.1" then
|
||||||
vim.api.nvim_err_writeln "This plugins requires neovim 0.5"
|
vim.api.nvim_err_writeln "This plugins requires neovim 0.5.1"
|
||||||
vim.api.nvim_err_writeln "Please update your neovim."
|
vim.api.nvim_err_writeln "Please update your neovim."
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
if !has('nvim-0.5')
|
if !has('nvim-0.5.1')
|
||||||
echoerr "Telescope.nvim requires at least nvim-0.5. Please update or uninstall"
|
echoerr "Telescope.nvim requires at least nvim-0.5.1. Please update or uninstall"
|
||||||
finish
|
finish
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user