From 38cc6305b4e3162a95ca328da36a65254b1593dd Mon Sep 17 00:00:00 2001 From: kiyan Date: Tue, 1 Mar 2022 21:11:11 +0100 Subject: [PATCH] fix: forgot resize_window option in open-file setup --- lua/nvim-tree/actions/open-file.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/nvim-tree/actions/open-file.lua b/lua/nvim-tree/actions/open-file.lua index 7695ae9f..f237c539 100644 --- a/lua/nvim-tree/actions/open-file.lua +++ b/lua/nvim-tree/actions/open-file.lua @@ -226,6 +226,7 @@ end function M.setup(opts) M.quit_on_open = opts.actions.open_file.quit_on_open + M.resize_window = opts.actions.open_file.resize_window if opts.actions.open_file.window_picker.chars then opts.actions.open_file.window_picker.chars = tostring(opts.actions.open_file.window_picker.chars):upper() end