Skip to content

Commit 738ecdf

Browse files
committed
feat(#3310): minimum neovim version 0.10
1 parent b9b8210 commit 738ecdf

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ markdown-toc --maxdepth=2 -i README.md
5151

5252
# Requirements
5353

54-
[neovim >=0.9.0](https://github.com/neovim/neovim/wiki/Installing-Neovim)
54+
[Nvim >= 0.10](https://github.com/neovim/neovim/wiki/Installing-Neovim). You may use a `compat-nvim-0.X` tag for earlier Nvim versions, however they will receive no updates or support.
5555

5656
[nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons) is optional and used to display file icons. It requires a [patched font](https://www.nerdfonts.com/). Your terminal emulator must be configured to use that font, usually "Hack Nerd Font"
5757

doc/nvim-tree-lua.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ Git Integration
5252

5353
Requirements
5454

55-
Nvim >= 0.9
55+
Nvim >= 0.10. You may use a `compat-nvim-0.X` tag for earlier Nvim
56+
versions, however they will receive no updates or support.
5657

5758
==============================================================================
5859
Quickstart *nvim-tree-quickstart*

lua/nvim-tree.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function M.setup(config_user)
1818

1919
-- Nvim version check
2020
if vim.fn.has("nvim-0.10") == 0 then
21-
require("nvim-tree.notify").warn("nvim-tree.lua requires Neovim 0.9 or higher")
21+
require("nvim-tree.notify").warn("nvim-tree.lua requires Nvim 0.10 or higher. You may use a compat-nvim-0.X tag for earlier Nvim versions, however they will receive no updates or support.")
2222
return
2323
end
2424

0 commit comments

Comments
 (0)