Skip to content

Commit 35be95a

Browse files
committed
feat(#3310): minimum neovim version 0.10
1 parent f69bc29 commit 35be95a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lua/nvim-tree.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ 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 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.")
21+
require("nvim-tree.notify").warn(
22+
"nvim-tree.lua requires Nvim >= 0.10. You may use a compat-nvim-0.X tag for earlier Nvim versions, however they will receive no updates or support.")
2223
return
2324
end
2425

0 commit comments

Comments
 (0)