Revert "fix(#1716): focus file/directory when created in a sub-directory, don't dispatch FolderCreated on file creation (#1722)"

This reverts commit bdc4ec6abd.
This commit is contained in:
Alexander Courtis
2022-11-06 13:32:24 +11:00
parent d91f885819
commit 7e892767bd
2 changed files with 12 additions and 15 deletions

View File

@@ -2,6 +2,7 @@ local utils = require "nvim-tree.utils"
local events = require "nvim-tree.events"
local lib = require "nvim-tree.lib"
local core = require "nvim-tree.core"
local watch = require "nvim-tree.explorer.watch"
local notify = require "nvim-tree.notify"
local M = {}
@@ -98,15 +99,22 @@ function M.fn(node)
is_error = true
break
end
events._dispatch_folder_created(path_to_create)
end
end
if not is_error then
notify.info(new_file_path .. " was properly created")
end
-- implicitly refreshes contents
require("nvim-tree.actions.finders.find-file").fn(new_file_path)
events._dispatch_folder_created(new_file_path)
if M.enable_reload then
require("nvim-tree.actions.reloaders.reloaders").reload_explorer()
else
-- synchronous call required so that we may focus the file now
node = node.nodes ~= nil and node or node.parent
if node then
watch.refresh_path(node.absolute_path)
end
end
utils.focus_file(utils.path_remove_trailing(new_file_path))
end)
end