Skip to content

Commit ad1c408

Browse files
committed
refactor(#2926): move find-file and change_root to Explorer
1 parent 610a1c1 commit ad1c408

File tree

7 files changed

+134
-138
lines changed

7 files changed

+134
-138
lines changed

lua/nvim-tree.lua

-62
Original file line numberDiff line numberDiff line change
@@ -11,68 +11,6 @@ local M = {
1111
init_root = "",
1212
}
1313

14-
--- Update the tree root to a directory or the directory containing
15-
---@param path string relative or absolute
16-
---@param bufnr number|nil
17-
function M.change_root(path, bufnr)
18-
-- skip if current file is in ignore_list
19-
if type(bufnr) == "number" then
20-
local ft
21-
22-
if vim.fn.has("nvim-0.10") == 1 then
23-
ft = vim.api.nvim_get_option_value("filetype", { buf = bufnr }) or ""
24-
else
25-
ft = vim.api.nvim_buf_get_option(bufnr, "filetype") or "" ---@diagnostic disable-line: deprecated
26-
end
27-
28-
for _, value in pairs(_config.update_focused_file.update_root.ignore_list) do
29-
if utils.str_find(path, value) or utils.str_find(ft, value) then
30-
return
31-
end
32-
end
33-
end
34-
35-
-- don't find inexistent
36-
if vim.fn.filereadable(path) == 0 then
37-
return
38-
end
39-
40-
local cwd = core.get_cwd()
41-
if cwd == nil then
42-
return
43-
end
44-
45-
local vim_cwd = vim.fn.getcwd()
46-
47-
-- test if in vim_cwd
48-
if utils.path_relative(path, vim_cwd) ~= path then
49-
if vim_cwd ~= cwd then
50-
actions.root.change_dir.fn(vim_cwd)
51-
end
52-
return
53-
end
54-
-- test if in cwd
55-
if utils.path_relative(path, cwd) ~= path then
56-
return
57-
end
58-
59-
-- otherwise test M.init_root
60-
if _config.prefer_startup_root and utils.path_relative(path, M.init_root) ~= path then
61-
actions.root.change_dir.fn(M.init_root)
62-
return
63-
end
64-
-- otherwise root_dirs
65-
for _, dir in pairs(_config.root_dirs) do
66-
dir = vim.fn.fnamemodify(dir, ":p")
67-
if utils.path_relative(path, dir) ~= path then
68-
actions.root.change_dir.fn(dir)
69-
return
70-
end
71-
end
72-
-- finally fall back to the folder containing the file
73-
actions.root.change_dir.fn(vim.fn.fnamemodify(path, ":p:h"))
74-
end
75-
7614
function M.tab_enter()
7715
if view.is_visible({ any_tabpage = true }) then
7816
local bufname = vim.api.nvim_buf_get_name(0)

lua/nvim-tree/actions/tree/find-file.lua

-71
This file was deleted.

lua/nvim-tree/actions/tree/init.lua

-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
local M = {}
22

3-
M.find_file = require("nvim-tree.actions.tree.find-file")
43
M.modifiers = require("nvim-tree.actions.tree.modifiers")
54
M.open = require("nvim-tree.actions.tree.open")
65
M.toggle = require("nvim-tree.actions.tree.toggle")
76
M.resize = require("nvim-tree.actions.tree.resize")
87

98
function M.setup(opts)
10-
M.find_file.setup(opts)
119
M.modifiers.setup(opts)
1210
M.open.setup(opts)
1311
M.toggle.setup(opts)

lua/nvim-tree/actions/tree/open.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
local core = require("nvim-tree.core")
12
local lib = require("nvim-tree.lib")
23
local view = require("nvim-tree.view")
34
local finders_find_file = require("nvim-tree.actions.finders.find-file")
@@ -40,7 +41,10 @@ function M.fn(opts)
4041
if M.config.update_focused_file.enable or opts.find_file then
4142
-- update root
4243
if opts.update_root then
43-
require("nvim-tree").change_root(previous_path, previous_buf)
44+
local explorer = core.get_explorer()
45+
if explorer then
46+
explorer:change_root(previous_path, previous_buf)
47+
end
4448
end
4549

4650
-- find

lua/nvim-tree/actions/tree/toggle.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
local core = require("nvim-tree.core")
12
local lib = require("nvim-tree.lib")
23
local view = require("nvim-tree.view")
34
local finders_find_file = require("nvim-tree.actions.finders.find-file")
@@ -55,7 +56,10 @@ function M.fn(opts, no_focus, cwd, bang)
5556
if M.config.update_focused_file.enable or opts.find_file then
5657
-- update root
5758
if opts.update_root then
58-
require("nvim-tree").change_root(previous_path, previous_buf)
59+
local explorer = core.get_explorer()
60+
if explorer then
61+
explorer:change_root(previous_path, previous_buf)
62+
end
5963
end
6064

6165
-- find

lua/nvim-tree/api.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Api.tree.get_nodes = wrap_explorer("get_nodes")
161161
---@field update_root boolean|nil default false
162162
---@field focus boolean|nil default false
163163

164-
Api.tree.find_file = wrap(actions.tree.find_file.fn)
164+
Api.tree.find_file = wrap_explorer("find_file")
165165
Api.tree.search_node = wrap(actions.finders.search_node.fn)
166166
Api.tree.collapse_all = wrap(actions.tree.modifiers.collapse_all.fn)
167167
Api.tree.expand_all = wrap_node(actions.tree.modifiers.expand_all.fn)

lua/nvim-tree/explorer/init.lua

+123
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
local actions = require("nvim-tree.actions")
12
local appearance = require("nvim-tree.appearance")
23
local buffers = require("nvim-tree.buffers")
34
local core = require("nvim-tree.core")
45
local git = require("nvim-tree.git")
56
local log = require("nvim-tree.log")
7+
local lib = require("nvim-tree.lib")
68
local notify = require("nvim-tree.notify")
79
local utils = require("nvim-tree.utils")
810
local view = require("nvim-tree.view")
@@ -24,6 +26,9 @@ local Renderer = require("nvim-tree.renderer")
2426

2527
local FILTER_REASON = require("nvim-tree.enum").FILTER_REASON
2628

29+
-- set once and only once for prefer_startup_root
30+
local init_root = vim.fn.getcwd()
31+
2732
local config
2833

2934
---@class (exact) Explorer: RootNode
@@ -530,6 +535,124 @@ function Explorer:place_cursor_on_node()
530535
end
531536
end
532537

538+
--- Update the tree root to a directory or the directory containing
539+
---@param path string relative or absolute
540+
---@param bufnr number|nil
541+
function Explorer:change_root(path, bufnr)
542+
-- error("Explorer:change_root")
543+
544+
-- skip if current file is in ignore_list
545+
if type(bufnr) == "number" then
546+
local ft
547+
548+
if vim.fn.has("nvim-0.10") == 1 then
549+
ft = vim.api.nvim_get_option_value("filetype", { buf = bufnr }) or ""
550+
else
551+
ft = vim.api.nvim_buf_get_option(bufnr, "filetype") or "" ---@diagnostic disable-line: deprecated
552+
end
553+
554+
for _, value in pairs(self.opts.update_focused_file.update_root.ignore_list) do
555+
if utils.str_find(path, value) or utils.str_find(ft, value) then
556+
return
557+
end
558+
end
559+
end
560+
561+
-- don't find inexistent
562+
if vim.fn.filereadable(path) == 0 then
563+
return
564+
end
565+
566+
local vim_cwd = vim.fn.getcwd()
567+
568+
-- test if in vim_cwd
569+
if utils.path_relative(path, vim_cwd) ~= path then
570+
if vim_cwd ~= self.absolute_path then
571+
actions.root.change_dir.fn(vim_cwd)
572+
end
573+
return
574+
end
575+
-- test if in cwd
576+
if utils.path_relative(path, self.absolute_path) ~= path then
577+
return
578+
end
579+
580+
-- otherwise test init_root
581+
if self.opts.prefer_startup_root and utils.path_relative(path, init_root) ~= path then
582+
actions.root.change_dir.fn(init_root)
583+
return
584+
end
585+
-- otherwise root_dirs
586+
for _, dir in pairs(self.opts.root_dirs) do
587+
dir = vim.fn.fnamemodify(dir, ":p")
588+
if utils.path_relative(path, dir) ~= path then
589+
actions.root.change_dir.fn(dir)
590+
return
591+
end
592+
end
593+
-- finally fall back to the folder containing the file
594+
actions.root.change_dir.fn(vim.fn.fnamemodify(path, ":p:h"))
595+
end
596+
597+
--- Find file or buffer
598+
---@param opts ApiTreeFindFileOpts|nil|boolean legacy -> opts.buf
599+
function Explorer:find_file(opts)
600+
-- legacy arguments
601+
if type(opts) == "string" then
602+
opts = {
603+
buf = opts,
604+
}
605+
end
606+
opts = opts or {}
607+
608+
-- do nothing if closed and open not requested
609+
if not opts.open then
610+
return
611+
end
612+
613+
local bufnr, path
614+
615+
-- (optional) buffer number and path
616+
local opts_buf = opts.buf
617+
if type(opts_buf) == "nil" then
618+
bufnr = vim.api.nvim_get_current_buf()
619+
path = vim.api.nvim_buf_get_name(bufnr)
620+
elseif type(opts_buf) == "number" then
621+
if not vim.api.nvim_buf_is_valid(opts_buf) then
622+
return
623+
end
624+
bufnr = opts_buf
625+
path = vim.api.nvim_buf_get_name(bufnr)
626+
elseif type(opts_buf) == "string" then
627+
bufnr = nil
628+
path = tostring(opts_buf)
629+
else
630+
return
631+
end
632+
633+
if view.is_visible() then
634+
-- focus
635+
if opts.focus then
636+
lib.set_target_win()
637+
view.focus()
638+
end
639+
elseif opts.open then
640+
-- open
641+
lib.open({ current_window = opts.current_window, winid = opts.winid })
642+
if not opts.focus then
643+
vim.cmd("noautocmd wincmd p")
644+
end
645+
end
646+
647+
-- update root
648+
if opts.update_root or self.opts.update_focused_file.update_root.enable then
649+
self:change_root(path, bufnr)
650+
end
651+
652+
-- find
653+
actions.finders.find_file.fn(path)
654+
end
655+
533656
---Api.tree.get_nodes
534657
---@return Node
535658
function Explorer:get_nodes()

0 commit comments

Comments
 (0)