Skip to content

Commit fb89297

Browse files
fix(#2468): always apply filters to subdirectories (#2537)
Co-authored-by: Alexander Courtis <[email protected]>
1 parent b67a773 commit fb89297

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/nvim-tree/actions/reloaders/reloaders.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ local M = {}
1111
local function refresh_nodes(node, projects, unloaded_bufnr)
1212
Iterator.builder({ node })
1313
:applier(function(n)
14-
if n.open and n.nodes then
14+
if n.nodes then
1515
local toplevel = git.get_toplevel(n.cwd or n.link_to or n.absolute_path)
1616
explorer_module.reload(n, projects[toplevel] or {}, unloaded_bufnr)
1717
end

0 commit comments

Comments
 (0)