Skip to content

Commit e56e2ac

Browse files
committed
refactor(#2787): 0.9 is the minimum supported version
1 parent 44afa48 commit e56e2ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/nvim-tree.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -780,8 +780,8 @@ end
780780

781781
---@param conf table|nil
782782
function M.setup(conf)
783-
if vim.fn.has "nvim-0.8" == 0 then
784-
notify.warn "nvim-tree.lua requires Neovim 0.8 or higher"
783+
if vim.fn.has "nvim-0.9" == 0 then
784+
notify.warn "nvim-tree.lua requires Neovim 0.9 or higher"
785785
return
786786
end
787787

0 commit comments

Comments
 (0)