refactor(#2826): more consistency checking
This commit is contained in:
@@ -13,7 +13,7 @@ local running = {}
|
||||
---@param path string relative or absolute
|
||||
function M.fn(path)
|
||||
local explorer = core.get_explorer()
|
||||
if not explorer or not explorer.view:is_visible() then
|
||||
if not explorer or not explorer.view:is_visible(nil, "finders/find-file.fn1") then
|
||||
return
|
||||
end
|
||||
|
||||
@@ -83,7 +83,7 @@ function M.fn(path)
|
||||
end)
|
||||
:iterate()
|
||||
|
||||
if found and explorer.view:is_visible() then
|
||||
if found and explorer.view:is_visible(nil, "finders/find-file.fn2") then
|
||||
explorer.renderer:draw()
|
||||
explorer.view:set_cursor({ line, 0 })
|
||||
end
|
||||
|
||||
@@ -41,7 +41,7 @@ function M.fn(opts)
|
||||
end
|
||||
|
||||
local explorer = core.get_explorer()
|
||||
if explorer and explorer.view:is_visible() then
|
||||
if explorer and explorer.view:is_visible(nil, "tree/find-file.fn") then
|
||||
-- focus
|
||||
if opts.focus then
|
||||
lib.set_target_win()
|
||||
|
||||
@@ -25,7 +25,7 @@ function M.fn(opts)
|
||||
|
||||
local explorer = core.get_explorer()
|
||||
|
||||
if explorer and explorer.view:is_visible() then
|
||||
if explorer and explorer.view:is_visible(nil, "open.fn") then
|
||||
-- focus
|
||||
lib.set_target_win()
|
||||
explorer.view:focus()
|
||||
|
||||
@@ -42,7 +42,7 @@ function M.fn(opts, no_focus, cwd, bang)
|
||||
opts.path = nil
|
||||
end
|
||||
|
||||
if explorer and explorer.view:is_visible() then
|
||||
if explorer and explorer.view:is_visible(nil, "toggle.fn") then
|
||||
-- close
|
||||
explorer.view:close(nil, "toggle.fn")
|
||||
else
|
||||
|
||||
@@ -532,7 +532,7 @@ function Explorer:reload_explorer()
|
||||
|
||||
local projects = git.reload_all_projects()
|
||||
self:refresh_nodes(projects)
|
||||
if self.view:is_visible() then
|
||||
if self.view:is_visible(nil, "Explorer:reload_explorer") then
|
||||
self.renderer:draw()
|
||||
end
|
||||
event_running = false
|
||||
|
||||
Reference in New Issue
Block a user