feat(#2305): find file refreshes up the tree when node is not present (#2358)

This commit is contained in:
Alexander Courtis
2023-08-14 11:08:16 +10:00
committed by GitHub
parent 116b88564f
commit ace64228ad
2 changed files with 45 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ local live_filter = require "nvim-tree.live-filter"
local git = require "nvim-tree.git"
local log = require "nvim-tree.log"
local NodeIterator = require "nvim-tree.iterators.node-iterator"
local Watcher = require "nvim-tree.watcher"
local M = {}
@@ -160,6 +161,44 @@ function M.refresh_node(node, callback)
end)
end
---Refresh contents of all nodes to a path: actual directory and links.
---Groups will be expanded if needed.
---@param path string absolute path
function M.refresh_parent_nodes_for_path(path)
local explorer = require("nvim-tree.core").get_explorer()
if not explorer then
return
end
local profile = log.profile_start("refresh_parent_nodes_for_path %s", path)
-- collect parent nodes from the top down
local parent_nodes = {}
NodeIterator.builder({ explorer })
:recursor(function(node)
return node.nodes
end)
:applier(function(node)
local abs_contains = node.absolute_path and path:find(node.absolute_path, 1, true) == 1
local link_contains = node.link_to and path:find(node.link_to, 1, true) == 1
if abs_contains or link_contains then
table.insert(parent_nodes, node)
end
end)
:iterate()
-- refresh in order; this will expand groups as needed
for _, node in ipairs(parent_nodes) do
local project_root = git.get_project_root(node.absolute_path)
local project = git.get_project(project_root) or {}
M.reload(node, project)
update_parent_statuses(node, project, project_root)
end
log.profile_end(profile)
end
function M.setup(opts)
M.config = opts.renderer
end