We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d9e07 commit b506e05Copy full SHA for b506e05
lua/nvim-tree/actions/tree/modifiers/expand-all.lua
@@ -66,7 +66,7 @@ local function gen_iterator(should_expand)
66
end)
67
:recursor(function(node)
68
local should_recurse = should_expand(expansion_count - 1, node, populate_node)
69
- return expansion_count < M.MAX_FOLDER_DISCOVERY and (should_recurse and node.open and node.nodes)
+ return expansion_count < M.MAX_FOLDER_DISCOVERY and should_recurse and node.nodes
70
71
:iterate()
72
0 commit comments