refactor(#2826): multi instance nvim-tree.view
This commit is contained in:
parent
0f2cda6ce0
commit
fa051cf990
@ -2,7 +2,6 @@ local lib = require "nvim-tree.lib"
|
|||||||
local log = require "nvim-tree.log"
|
local log = require "nvim-tree.log"
|
||||||
local appearance = require "nvim-tree.appearance"
|
local appearance = require "nvim-tree.appearance"
|
||||||
local renderer = require "nvim-tree.renderer"
|
local renderer = require "nvim-tree.renderer"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local commands = require "nvim-tree.commands"
|
local commands = require "nvim-tree.commands"
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local actions = require "nvim-tree.actions"
|
local actions = require "nvim-tree.actions"
|
||||||
@ -81,7 +80,11 @@ function M.change_root(path, bufnr)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function M.tab_enter()
|
function M.tab_enter()
|
||||||
if view.is_visible { any_tabpage = true } then
|
local explorer = core.get_explorer();
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if explorer.view:is_visible { any_tabpage = true } then
|
||||||
local bufname = vim.api.nvim_buf_get_name(0)
|
local bufname = vim.api.nvim_buf_get_name(0)
|
||||||
|
|
||||||
local ft
|
local ft
|
||||||
@ -96,13 +99,17 @@ function M.tab_enter()
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
view.open { focus_tree = false }
|
explorer.view:open { focus_tree = false }
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.open_on_directory()
|
function M.open_on_directory()
|
||||||
local should_proceed = _config.hijack_directories.auto_open or view.is_visible()
|
local explorer = core.get_explorer();
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local should_proceed = _config.hijack_directories.auto_open or explorer.view:is_visible()
|
||||||
if not should_proceed then
|
if not should_proceed then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
@ -177,8 +184,12 @@ local function setup_autocommands(opts)
|
|||||||
-- reset and draw (highlights) when colorscheme is changed
|
-- reset and draw (highlights) when colorscheme is changed
|
||||||
create_nvim_tree_autocmd("ColorScheme", {
|
create_nvim_tree_autocmd("ColorScheme", {
|
||||||
callback = function()
|
callback = function()
|
||||||
|
local explorer = core.get_explorer();
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
appearance.setup()
|
appearance.setup()
|
||||||
view.reset_winhl()
|
explorer.view:reset_winhl()
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
@ -190,10 +201,14 @@ local function setup_autocommands(opts)
|
|||||||
if not utils.is_nvim_tree_buf(0) then
|
if not utils.is_nvim_tree_buf(0) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
local explorer = core.get_explorer();
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
if opts.actions.open_file.eject then
|
if opts.actions.open_file.eject then
|
||||||
view._prevent_buffer_override()
|
explorer.view:_prevent_buffer_override()
|
||||||
else
|
else
|
||||||
view.abandon_current_window()
|
explorer.view:abandon_current_window()
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
@ -331,8 +346,12 @@ local function setup_autocommands(opts)
|
|||||||
create_nvim_tree_autocmd("WinLeave", {
|
create_nvim_tree_autocmd("WinLeave", {
|
||||||
pattern = "NvimTree_*",
|
pattern = "NvimTree_*",
|
||||||
callback = function()
|
callback = function()
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
if utils.is_nvim_tree_buf(0) then
|
if utils.is_nvim_tree_buf(0) then
|
||||||
view.close()
|
explorer.view:close()
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
@ -783,8 +802,12 @@ end
|
|||||||
|
|
||||||
function M.purge_all_state()
|
function M.purge_all_state()
|
||||||
require("nvim-tree.watcher").purge_watchers()
|
require("nvim-tree.watcher").purge_watchers()
|
||||||
view.close_all_tabs()
|
local explorer = core.get_explorer()
|
||||||
view.abandon_all_windows()
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
explorer.view:close_all_tabs()
|
||||||
|
explorer.view:abandon_all_windows()
|
||||||
if core.get_explorer() ~= nil then
|
if core.get_explorer() ~= nil then
|
||||||
git.purge_state()
|
git.purge_state()
|
||||||
core.reset_explorer()
|
core.reset_explorer()
|
||||||
@ -834,7 +857,6 @@ function M.setup(conf)
|
|||||||
require("nvim-tree.explorer").setup(opts)
|
require("nvim-tree.explorer").setup(opts)
|
||||||
require("nvim-tree.git").setup(opts)
|
require("nvim-tree.git").setup(opts)
|
||||||
require("nvim-tree.git.utils").setup(opts)
|
require("nvim-tree.git.utils").setup(opts)
|
||||||
require("nvim-tree.view").setup(opts)
|
|
||||||
require("nvim-tree.lib").setup(opts)
|
require("nvim-tree.lib").setup(opts)
|
||||||
require("nvim-tree.renderer").setup(opts)
|
require("nvim-tree.renderer").setup(opts)
|
||||||
require("nvim-tree.marks").setup(opts)
|
require("nvim-tree.marks").setup(opts)
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
local log = require "nvim-tree.log"
|
local log = require "nvim-tree.log"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local renderer = require "nvim-tree.renderer"
|
local renderer = require "nvim-tree.renderer"
|
||||||
local reload = require "nvim-tree.explorer.reload"
|
local reload = require "nvim-tree.explorer.reload"
|
||||||
@ -13,7 +12,8 @@ local running = {}
|
|||||||
---Find a path in the tree, expand it and focus it
|
---Find a path in the tree, expand it and focus it
|
||||||
---@param path string relative or absolute
|
---@param path string relative or absolute
|
||||||
function M.fn(path)
|
function M.fn(path)
|
||||||
if not core.get_explorer() or not view.is_visible() then
|
local explorer = core.get_explorer()
|
||||||
|
if not explorer or not explorer.view:is_visible() then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -75,9 +75,9 @@ function M.fn(path)
|
|||||||
end)
|
end)
|
||||||
:iterate()
|
:iterate()
|
||||||
|
|
||||||
if found and view.is_visible() then
|
if found and explorer.view:is_visible() then
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
view.set_cursor { line, 0 }
|
explorer.view:set_cursor { line, 0 }
|
||||||
end
|
end
|
||||||
|
|
||||||
running[path_real] = false
|
running[path_real] = false
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local events = require "nvim-tree.events"
|
local events = require "nvim-tree.events"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local lib = require "nvim-tree.lib"
|
local lib = require "nvim-tree.lib"
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require "nvim-tree.notify"
|
||||||
|
|
||||||
@ -10,10 +9,14 @@ local M = {
|
|||||||
|
|
||||||
---@param windows integer[]
|
---@param windows integer[]
|
||||||
local function close_windows(windows)
|
local function close_windows(windows)
|
||||||
|
local explorer = require "nvim-tree.core".get_explorer()
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
-- Prevent from closing when the win count equals 1 or 2,
|
-- Prevent from closing when the win count equals 1 or 2,
|
||||||
-- where the win to remove could be the last opened.
|
-- where the win to remove could be the last opened.
|
||||||
-- For details see #2503.
|
-- For details see #2503.
|
||||||
if view.View.float.enable and #vim.api.nvim_list_wins() < 3 then
|
if explorer.view.View.float.enable and #vim.api.nvim_list_wins() < 3 then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -26,16 +29,20 @@ end
|
|||||||
|
|
||||||
---@param absolute_path string
|
---@param absolute_path string
|
||||||
local function clear_buffer(absolute_path)
|
local function clear_buffer(absolute_path)
|
||||||
|
local explorer = require "nvim-tree.core".get_explorer()
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
local bufs = vim.fn.getbufinfo { bufloaded = 1, buflisted = 1 }
|
local bufs = vim.fn.getbufinfo { bufloaded = 1, buflisted = 1 }
|
||||||
for _, buf in pairs(bufs) do
|
for _, buf in pairs(bufs) do
|
||||||
if buf.name == absolute_path then
|
if buf.name == absolute_path then
|
||||||
local tree_winnr = vim.api.nvim_get_current_win()
|
local tree_winnr = vim.api.nvim_get_current_win()
|
||||||
if buf.hidden == 0 and (#bufs > 1 or view.View.float.enable) then
|
if buf.hidden == 0 and (#bufs > 1 or explorer.view.View.float.enable) then
|
||||||
vim.api.nvim_set_current_win(buf.windows[1])
|
vim.api.nvim_set_current_win(buf.windows[1])
|
||||||
vim.cmd ":bn"
|
vim.cmd ":bn"
|
||||||
end
|
end
|
||||||
vim.api.nvim_buf_delete(buf.bufnr, { force = true })
|
vim.api.nvim_buf_delete(buf.bufnr, { force = true })
|
||||||
if not view.View.float.quit_on_focus_loss then
|
if not explorer.view.View.float.quit_on_focus_loss then
|
||||||
vim.api.nvim_set_current_win(tree_winnr)
|
vim.api.nvim_set_current_win(tree_winnr)
|
||||||
end
|
end
|
||||||
if M.config.actions.remove_file.close_window then
|
if M.config.actions.remove_file.close_window then
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
local lib = require "nvim-tree.lib"
|
local lib = require "nvim-tree.lib"
|
||||||
local explorer_node = require "nvim-tree.explorer.node"
|
local explorer_node = require "nvim-tree.explorer.node"
|
||||||
@ -60,10 +59,14 @@ local function move(where, what, skip_gitignored)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
if nex then
|
if nex then
|
||||||
view.set_cursor { nex, 0 }
|
explorer.view:set_cursor { nex, 0 }
|
||||||
elseif vim.o.wrapscan and first then
|
elseif vim.o.wrapscan and first then
|
||||||
view.set_cursor { first, 0 }
|
explorer.view:set_cursor { first, 0 }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -182,13 +185,19 @@ local function move_prev_recursive(what, skip_gitignored)
|
|||||||
|
|
||||||
-- 4.3)
|
-- 4.3)
|
||||||
if node_init.name == ".." then -- root node
|
if node_init.name == ".." then -- root node
|
||||||
view.set_cursor { 1, 0 } -- move to root node (position 1)
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.view:set_cursor { 1, 0 } -- move to root node (position 1)
|
||||||
|
end
|
||||||
else
|
else
|
||||||
local node_init_line = utils.find_node_line(node_init)
|
local node_init_line = utils.find_node_line(node_init)
|
||||||
if node_init_line < 0 then
|
if node_init_line < 0 then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
view.set_cursor { node_init_line, 0 }
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.view:set_cursor { node_init_line, 0 } -- move to root node (position 1)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- 4.4)
|
-- 4.4)
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
local renderer = require "nvim-tree.renderer"
|
local renderer = require "nvim-tree.renderer"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
local lib = require "nvim-tree.lib"
|
local lib = require "nvim-tree.lib"
|
||||||
@ -21,14 +20,20 @@ function M.fn(should_close)
|
|||||||
local parent = utils.get_parent_of_group(node).parent
|
local parent = utils.get_parent_of_group(node).parent
|
||||||
|
|
||||||
if not parent or not parent.parent then
|
if not parent or not parent.parent then
|
||||||
return view.set_cursor { 1, 0 }
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
return explorer.view:set_cursor { 1, 0 }
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local _, line = utils.find_node(core.get_explorer().nodes, function(n)
|
local _, line = utils.find_node(core.get_explorer().nodes, function(n)
|
||||||
return n.absolute_path == parent.absolute_path
|
return n.absolute_path == parent.absolute_path
|
||||||
end)
|
end)
|
||||||
|
|
||||||
view.set_cursor { line + 1, 0 }
|
local explorer = core.get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.view:set_cursor { line + 1, 0 }
|
||||||
|
end
|
||||||
if should_close then
|
if should_close then
|
||||||
parent.open = false
|
parent.open = false
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
|
|||||||
@ -2,7 +2,6 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local lib = require "nvim-tree.lib"
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require "nvim-tree.notify"
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@ -19,9 +18,11 @@ end
|
|||||||
---Get all windows in the current tabpage that aren't NvimTree.
|
---Get all windows in the current tabpage that aren't NvimTree.
|
||||||
---@return table with valid win_ids
|
---@return table with valid win_ids
|
||||||
local function usable_win_ids()
|
local function usable_win_ids()
|
||||||
|
local explorer = require "nvim-tree.core".get_explorer()
|
||||||
|
|
||||||
local tabpage = vim.api.nvim_get_current_tabpage()
|
local tabpage = vim.api.nvim_get_current_tabpage()
|
||||||
local win_ids = vim.api.nvim_tabpage_list_wins(tabpage)
|
local win_ids = vim.api.nvim_tabpage_list_wins(tabpage)
|
||||||
local tree_winid = view.get_winnr(tabpage)
|
local tree_winid = explorer and explorer.view:get_winnr(tabpage)
|
||||||
|
|
||||||
return vim.tbl_filter(function(id)
|
return vim.tbl_filter(function(id)
|
||||||
local bufid = vim.api.nvim_win_get_buf(id)
|
local bufid = vim.api.nvim_win_get_buf(id)
|
||||||
@ -188,7 +189,10 @@ end
|
|||||||
|
|
||||||
local function open_file_in_tab(filename)
|
local function open_file_in_tab(filename)
|
||||||
if M.quit_on_open then
|
if M.quit_on_open then
|
||||||
view.close()
|
local explorer = require "nvim-tree.core".get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.view:close()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
if M.relative_path then
|
if M.relative_path then
|
||||||
filename = utils.path_relative(filename, vim.fn.getcwd())
|
filename = utils.path_relative(filename, vim.fn.getcwd())
|
||||||
@ -198,7 +202,10 @@ end
|
|||||||
|
|
||||||
local function drop(filename)
|
local function drop(filename)
|
||||||
if M.quit_on_open then
|
if M.quit_on_open then
|
||||||
view.close()
|
local explorer = require"nvim-tree.core".get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.view:close()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
if M.relative_path then
|
if M.relative_path then
|
||||||
filename = utils.path_relative(filename, vim.fn.getcwd())
|
filename = utils.path_relative(filename, vim.fn.getcwd())
|
||||||
@ -208,7 +215,10 @@ end
|
|||||||
|
|
||||||
local function tab_drop(filename)
|
local function tab_drop(filename)
|
||||||
if M.quit_on_open then
|
if M.quit_on_open then
|
||||||
view.close()
|
local explorer = require"nvim-tree.core".get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.view:close()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
if M.relative_path then
|
if M.relative_path then
|
||||||
filename = utils.path_relative(filename, vim.fn.getcwd())
|
filename = utils.path_relative(filename, vim.fn.getcwd())
|
||||||
@ -229,7 +239,10 @@ local function on_preview(buf_loaded)
|
|||||||
once = true,
|
once = true,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
view.focus()
|
local explorer = require"nvim-tree.core".get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.view:focus()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function get_target_winid(mode)
|
local function get_target_winid(mode)
|
||||||
@ -287,7 +300,8 @@ local function open_in_new_window(filename, mode)
|
|||||||
end, vim.api.nvim_list_wins())
|
end, vim.api.nvim_list_wins())
|
||||||
|
|
||||||
local create_new_window = #win_ids == 1 -- This implies that the nvim-tree window is the only one
|
local create_new_window = #win_ids == 1 -- This implies that the nvim-tree window is the only one
|
||||||
local new_window_side = (view.View.side == "right") and "aboveleft" or "belowright"
|
local explorer = require"nvim-tree.core".get_explorer()
|
||||||
|
local new_window_side = (explorer and view.View.side == "right") and "aboveleft" or "belowright"
|
||||||
|
|
||||||
-- Target is invalid: create new window
|
-- Target is invalid: create new window
|
||||||
if not vim.tbl_contains(win_ids, target_winid) then
|
if not vim.tbl_contains(win_ids, target_winid) then
|
||||||
@ -319,7 +333,7 @@ local function open_in_new_window(filename, mode)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if (mode == "preview" or mode == "preview_no_picker") and view.View.float.enable then
|
if (mode == "preview" or mode == "preview_no_picker") and explorer and explorer.view.View.float.enable then
|
||||||
-- ignore "WinLeave" autocmd on preview
|
-- ignore "WinLeave" autocmd on preview
|
||||||
-- because the registered "WinLeave"
|
-- because the registered "WinLeave"
|
||||||
-- will kill the floating window immediately
|
-- will kill the floating window immediately
|
||||||
@ -359,7 +373,10 @@ local function is_already_loaded(filename)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function edit_in_current_buf(filename)
|
local function edit_in_current_buf(filename)
|
||||||
require("nvim-tree.view").abandon_current_window()
|
local explorer = require"nvim-tree.core".get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.view:abandon_current_window()
|
||||||
|
end
|
||||||
if M.relative_path then
|
if M.relative_path then
|
||||||
filename = utils.path_relative(filename, vim.fn.getcwd())
|
filename = utils.path_relative(filename, vim.fn.getcwd())
|
||||||
end
|
end
|
||||||
@ -404,7 +421,10 @@ function M.fn(mode, filename)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if M.resize_window then
|
if M.resize_window then
|
||||||
view.resize()
|
local explorer = require"nvim-tree.core".get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.view:resize()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if mode == "preview" or mode == "preview_no_picker" then
|
if mode == "preview" or mode == "preview_no_picker" then
|
||||||
@ -412,7 +432,10 @@ function M.fn(mode, filename)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if M.quit_on_open then
|
if M.quit_on_open then
|
||||||
view.close()
|
local explorer = require"nvim-tree.core".get_explorer()
|
||||||
|
if explorer then
|
||||||
|
explorer.view:close()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
local git = require "nvim-tree.git"
|
local git = require "nvim-tree.git"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local renderer = require "nvim-tree.renderer"
|
local renderer = require "nvim-tree.renderer"
|
||||||
local explorer_module = require "nvim-tree.explorer"
|
local explorer_module = require "nvim-tree.explorer"
|
||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
@ -43,14 +42,15 @@ end
|
|||||||
|
|
||||||
local event_running = false
|
local event_running = false
|
||||||
function M.reload_explorer()
|
function M.reload_explorer()
|
||||||
if event_running or not core.get_explorer() or vim.v.exiting ~= vim.NIL then
|
local explorer = core.get_explorer()
|
||||||
|
if event_running or not explorer or vim.v.exiting ~= vim.NIL then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
event_running = true
|
event_running = true
|
||||||
|
|
||||||
local projects = git.reload()
|
local projects = git.reload()
|
||||||
refresh_nodes(core.get_explorer(), projects)
|
refresh_nodes(core.get_explorer(), projects)
|
||||||
if view.is_visible() then
|
if explorer.view:is_visible() then
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
end
|
end
|
||||||
event_running = false
|
event_running = false
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
local lib = require "nvim-tree.lib"
|
local lib = require "nvim-tree.lib"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local finders_find_file = require "nvim-tree.actions.finders.find-file"
|
local finders_find_file = require "nvim-tree.actions.finders.find-file"
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
@ -41,11 +40,12 @@ function M.fn(opts)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
if view.is_visible() then
|
local explorer = core.get_explorer()
|
||||||
|
if explorer and explorer.view:is_visible() then
|
||||||
-- focus
|
-- focus
|
||||||
if opts.focus then
|
if opts.focus then
|
||||||
lib.set_target_win()
|
lib.set_target_win()
|
||||||
view.focus()
|
explorer.view:focus()
|
||||||
end
|
end
|
||||||
elseif opts.open then
|
elseif opts.open then
|
||||||
-- open
|
-- open
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local lib = require "nvim-tree.lib"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local finders_find_file = require "nvim-tree.actions.finders.find-file"
|
local finders_find_file = require "nvim-tree.actions.finders.find-file"
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
@ -23,10 +22,11 @@ function M.fn(opts)
|
|||||||
opts.path = nil
|
opts.path = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
if view.is_visible() then
|
local explorer = require"nvim-tree.core".get_explorer()
|
||||||
|
if explorer and explorer.view:is_visible() then
|
||||||
-- focus
|
-- focus
|
||||||
lib.set_target_win()
|
lib.set_target_win()
|
||||||
view.focus()
|
explorer.view:focus()
|
||||||
else
|
else
|
||||||
-- open
|
-- open
|
||||||
lib.open {
|
lib.open {
|
||||||
|
|||||||
@ -1,14 +1,18 @@
|
|||||||
local view = require "nvim-tree.view"
|
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
---Resize the tree, persisting the new size.
|
---Resize the tree, persisting the new size.
|
||||||
---@param opts ApiTreeResizeOpts|nil
|
---@param opts ApiTreeResizeOpts|nil
|
||||||
function M.fn(opts)
|
function M.fn(opts)
|
||||||
|
local explorer = require"nvim-tree.core".get_explorer()
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
if opts == nil then
|
if opts == nil then
|
||||||
-- reset to config values
|
-- reset to config values
|
||||||
view.configure_width()
|
explorer.view:configure_width()
|
||||||
view.resize()
|
explorer.view:resize()
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -16,19 +20,19 @@ function M.fn(opts)
|
|||||||
local width_cfg = options.width
|
local width_cfg = options.width
|
||||||
|
|
||||||
if width_cfg ~= nil then
|
if width_cfg ~= nil then
|
||||||
view.configure_width(width_cfg)
|
explorer.view:configure_width(width_cfg)
|
||||||
view.resize()
|
explorer.view:resize()
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
if not view.is_width_determined() then
|
if not explorer.view:is_width_determined() then
|
||||||
-- {absolute} and {relative} do nothing when {width} is a function.
|
-- {absolute} and {relative} do nothing when {width} is a function.
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local absolute = options.absolute
|
local absolute = options.absolute
|
||||||
if type(absolute) == "number" then
|
if type(absolute) == "number" then
|
||||||
view.resize(absolute)
|
explorer.view:resize(absolute)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -39,7 +43,7 @@ function M.fn(opts)
|
|||||||
relative_size = "+" .. relative_size
|
relative_size = "+" .. relative_size
|
||||||
end
|
end
|
||||||
|
|
||||||
view.resize(relative_size)
|
explorer.view:resize(relative_size)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local lib = require "nvim-tree.lib"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local finders_find_file = require "nvim-tree.actions.finders.find-file"
|
local finders_find_file = require "nvim-tree.actions.finders.find-file"
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
@ -40,9 +39,14 @@ function M.fn(opts, no_focus, cwd, bang)
|
|||||||
opts.path = nil
|
opts.path = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
if view.is_visible() then
|
local explorer = require"nvim-tree.core".get_explorer()
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
if explorer.view:is_visible() then
|
||||||
-- close
|
-- close
|
||||||
view.close()
|
explorer.view:close()
|
||||||
else
|
else
|
||||||
-- open
|
-- open
|
||||||
lib.open {
|
lib.open {
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
local lib = require "nvim-tree.lib"
|
local lib = require "nvim-tree.lib"
|
||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local actions = require "nvim-tree.actions"
|
local actions = require "nvim-tree.actions"
|
||||||
local appearance_diagnostics = require "nvim-tree.appearance.diagnostics"
|
local appearance_diagnostics = require "nvim-tree.appearance.diagnostics"
|
||||||
@ -121,9 +120,9 @@ Api.tree.focus = Api.tree.open
|
|||||||
---@field focus boolean|nil default true
|
---@field focus boolean|nil default true
|
||||||
|
|
||||||
Api.tree.toggle = wrap(actions.tree.toggle.fn)
|
Api.tree.toggle = wrap(actions.tree.toggle.fn)
|
||||||
Api.tree.close = wrap(view.close)
|
Api.tree.close = wrap_explorer_member("view", "close")
|
||||||
Api.tree.close_in_this_tab = wrap(view.close_this_tab_only)
|
Api.tree.close_in_this_tab = wrap_explorer_member("view", "close_this_tab_only")
|
||||||
Api.tree.close_in_all_tabs = wrap(view.close_all_tabs)
|
Api.tree.close_in_all_tabs = wrap_explorer_member("view", "close_all_tabs")
|
||||||
Api.tree.reload = wrap(actions.reloaders.reload_explorer)
|
Api.tree.reload = wrap(actions.reloaders.reload_explorer)
|
||||||
|
|
||||||
---@class ApiTreeResizeOpts
|
---@class ApiTreeResizeOpts
|
||||||
@ -175,12 +174,12 @@ Api.tree.is_tree_buf = wrap(utils.is_nvim_tree_buf)
|
|||||||
---@field tabpage number|nil
|
---@field tabpage number|nil
|
||||||
---@field any_tabpage boolean|nil default false
|
---@field any_tabpage boolean|nil default false
|
||||||
|
|
||||||
Api.tree.is_visible = wrap(view.is_visible)
|
Api.tree.is_visible = wrap_explorer_member("view", "is_visible")
|
||||||
|
|
||||||
---@class ApiTreeWinIdOpts
|
---@class ApiTreeWinIdOpts
|
||||||
---@field tabpage number|nil default nil
|
---@field tabpage number|nil default nil
|
||||||
|
|
||||||
Api.tree.winid = wrap(view.winid)
|
Api.tree.winid = wrap_explorer_member("view", "winid")
|
||||||
|
|
||||||
Api.fs.create = wrap_node_or_nil(actions.fs.create_file.fn)
|
Api.fs.create = wrap_node_or_nil(actions.fs.create_file.fn)
|
||||||
Api.fs.remove = wrap_node(actions.fs.remove_file.fn)
|
Api.fs.remove = wrap_node(actions.fs.remove_file.fn)
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
local api = require "nvim-tree.api"
|
local api = require "nvim-tree.api"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@ -111,7 +110,11 @@ local CMDS = {
|
|||||||
bar = true,
|
bar = true,
|
||||||
},
|
},
|
||||||
command = function(c)
|
command = function(c)
|
||||||
view.resize(c.args)
|
local explorer = require "nvim-tree.core".get_explorer();
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
explorer.view:resize(c.args)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
local events = require "nvim-tree.events"
|
local events = require "nvim-tree.events"
|
||||||
local explorer = require "nvim-tree.explorer"
|
local explorer = require "nvim-tree.explorer"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local log = require "nvim-tree.log"
|
local log = require "nvim-tree.log"
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
@ -41,7 +40,7 @@ end
|
|||||||
---@return integer
|
---@return integer
|
||||||
function M.get_nodes_starting_line()
|
function M.get_nodes_starting_line()
|
||||||
local offset = 1
|
local offset = 1
|
||||||
if view.is_root_folder_visible(M.get_cwd()) then
|
if TreeExplorer and TreeExplorer.view:is_root_folder_visible(M.get_cwd()) then
|
||||||
offset = offset + 1
|
offset = offset + 1
|
||||||
end
|
end
|
||||||
if TreeExplorer and TreeExplorer.live_filter.filter then
|
if TreeExplorer and TreeExplorer.live_filter.filter then
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local log = require "nvim-tree.log"
|
local log = require "nvim-tree.log"
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
@ -164,7 +163,9 @@ function M.update()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
log.profile_end(profile)
|
log.profile_end(profile)
|
||||||
if view.is_buf_valid(view.get_bufnr()) then
|
local explorer = require "nvim-tree.core".get_explorer()
|
||||||
|
|
||||||
|
if explorer and explorer.view:is_buf_valid(explorer.view:get_bufnr()) then
|
||||||
require("nvim-tree.renderer").draw()
|
require("nvim-tree.renderer").draw()
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|||||||
@ -6,6 +6,7 @@ local Filters = require "nvim-tree.explorer.filters"
|
|||||||
local Marks = require "nvim-tree.marks"
|
local Marks = require "nvim-tree.marks"
|
||||||
local LiveFilter = require "nvim-tree.explorer.live-filter"
|
local LiveFilter = require "nvim-tree.explorer.live-filter"
|
||||||
local Sorters = require "nvim-tree.explorer.sorters"
|
local Sorters = require "nvim-tree.explorer.sorters"
|
||||||
|
local View = require "nvim-tree.explorer.view"
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
@ -46,6 +47,7 @@ function Explorer.new(path)
|
|||||||
open = true,
|
open = true,
|
||||||
marks = Marks:new(),
|
marks = Marks:new(),
|
||||||
sorters = Sorters:new(M.config),
|
sorters = Sorters:new(M.config),
|
||||||
|
view = View:new(M.config),
|
||||||
}, Explorer)
|
}, Explorer)
|
||||||
explorer.watcher = watch.create_watcher(explorer)
|
explorer.watcher = watch.create_watcher(explorer)
|
||||||
explorer.filters = Filters:new(M.config, explorer)
|
explorer.filters = Filters:new(M.config, explorer)
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
local view = require "nvim-tree.view"
|
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local Iterator = require "nvim-tree.iterators.node-iterator"
|
local Iterator = require "nvim-tree.iterators.node-iterator"
|
||||||
|
|
||||||
@ -47,14 +46,14 @@ local overlay_bufnr = 0
|
|||||||
local overlay_winnr = 0
|
local overlay_winnr = 0
|
||||||
|
|
||||||
local function remove_overlay(self)
|
local function remove_overlay(self)
|
||||||
if view.View.float.enable and view.View.float.quit_on_focus_loss then
|
if self.explorer.view.View.float.enable and self.explorer.view.View.float.quit_on_focus_loss then
|
||||||
-- return to normal nvim-tree float behaviour when filter window is closed
|
-- return to normal nvim-tree float behaviour when filter window is closed
|
||||||
vim.api.nvim_create_autocmd("WinLeave", {
|
vim.api.nvim_create_autocmd("WinLeave", {
|
||||||
pattern = "NvimTree_*",
|
pattern = "NvimTree_*",
|
||||||
group = vim.api.nvim_create_augroup("NvimTree", { clear = false }),
|
group = vim.api.nvim_create_augroup("NvimTree", { clear = false }),
|
||||||
callback = function()
|
callback = function()
|
||||||
if utils.is_nvim_tree_buf(0) then
|
if utils.is_nvim_tree_buf(0) then
|
||||||
view.close()
|
self.explorer.view:close()
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
@ -141,7 +140,7 @@ end
|
|||||||
|
|
||||||
---@return integer
|
---@return integer
|
||||||
local function calculate_overlay_win_width(self)
|
local function calculate_overlay_win_width(self)
|
||||||
local wininfo = vim.fn.getwininfo(view.get_winnr())[1]
|
local wininfo = vim.fn.getwininfo(self.explorer.view:get_winnr())[1]
|
||||||
|
|
||||||
if wininfo then
|
if wininfo then
|
||||||
return wininfo.width - wininfo.textoff - #self.prefix
|
return wininfo.width - wininfo.textoff - #self.prefix
|
||||||
@ -151,7 +150,7 @@ local function calculate_overlay_win_width(self)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function create_overlay(self)
|
local function create_overlay(self)
|
||||||
if view.View.float.enable then
|
if self.explorer.view.View.float.enable then
|
||||||
-- don't close nvim-tree float when focus is changed to filter window
|
-- don't close nvim-tree float when focus is changed to filter window
|
||||||
vim.api.nvim_clear_autocmds {
|
vim.api.nvim_clear_autocmds {
|
||||||
event = "WinLeave",
|
event = "WinLeave",
|
||||||
@ -183,13 +182,13 @@ local function create_overlay(self)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function LiveFilter:start_filtering()
|
function LiveFilter:start_filtering()
|
||||||
view.View.live_filter.prev_focused_node = require("nvim-tree.lib").get_node_at_cursor()
|
self.explorer.view.View.live_filter.prev_focused_node = require("nvim-tree.lib").get_node_at_cursor()
|
||||||
self.filter = self.filter or ""
|
self.filter = self.filter or ""
|
||||||
|
|
||||||
redraw()
|
redraw()
|
||||||
local row = require("nvim-tree.core").get_nodes_starting_line() - 1
|
local row = require("nvim-tree.core").get_nodes_starting_line() - 1
|
||||||
local col = #self.prefix > 0 and #self.prefix - 1 or 1
|
local col = #self.prefix > 0 and #self.prefix - 1 or 1
|
||||||
view.set_cursor { row, col }
|
self.explorer.view:set_cursor { row, col }
|
||||||
-- needs scheduling to let the cursor move before initializing the window
|
-- needs scheduling to let the cursor move before initializing the window
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
return create_overlay(self)
|
return create_overlay(self)
|
||||||
@ -198,7 +197,7 @@ end
|
|||||||
|
|
||||||
function LiveFilter:clear_filter()
|
function LiveFilter:clear_filter()
|
||||||
local node = require("nvim-tree.lib").get_node_at_cursor()
|
local node = require("nvim-tree.lib").get_node_at_cursor()
|
||||||
local last_node = view.View.live_filter.prev_focused_node
|
local last_node = self.explorer.view.View.live_filter.prev_focused_node
|
||||||
|
|
||||||
self.filter = nil
|
self.filter = nil
|
||||||
reset_filter(self)
|
reset_filter(self)
|
||||||
|
|||||||
@ -2,57 +2,77 @@ local events = require "nvim-tree.events"
|
|||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local log = require "nvim-tree.log"
|
local log = require "nvim-tree.log"
|
||||||
|
|
||||||
---@class OpenInWinOpts
|
local ExplorerView = {}
|
||||||
---@field hijack_current_buf boolean|nil default true
|
|
||||||
---@field resize boolean|nil default true
|
|
||||||
---@field winid number|nil 0 or nil for current
|
|
||||||
|
|
||||||
local M = {}
|
|
||||||
|
|
||||||
local DEFAULT_MIN_WIDTH = 30
|
local DEFAULT_MIN_WIDTH = 30
|
||||||
local DEFAULT_MAX_WIDTH = -1
|
local DEFAULT_MAX_WIDTH = -1
|
||||||
local DEFAULT_PADDING = 1
|
local DEFAULT_PADDING = 1
|
||||||
|
|
||||||
M.View = {
|
function ExplorerView:new(opts)
|
||||||
adaptive_size = false,
|
local o = {
|
||||||
centralize_selection = false,
|
View = {
|
||||||
tabpages = {},
|
adaptive_size = false,
|
||||||
cursors = {},
|
centralize_selection = false,
|
||||||
hide_root_folder = false,
|
tabpages = {},
|
||||||
live_filter = {
|
cursors = {},
|
||||||
prev_focused_node = nil,
|
hide_root_folder = false,
|
||||||
},
|
live_filter = {
|
||||||
winopts = {
|
prev_focused_node = nil,
|
||||||
relativenumber = false,
|
},
|
||||||
number = false,
|
winopts = {
|
||||||
list = false,
|
relativenumber = false,
|
||||||
foldenable = false,
|
number = false,
|
||||||
winfixwidth = true,
|
list = false,
|
||||||
winfixheight = true,
|
foldenable = false,
|
||||||
spell = false,
|
winfixwidth = true,
|
||||||
signcolumn = "yes",
|
winfixheight = true,
|
||||||
foldmethod = "manual",
|
spell = false,
|
||||||
foldcolumn = "0",
|
signcolumn = "yes",
|
||||||
cursorcolumn = false,
|
foldmethod = "manual",
|
||||||
cursorline = true,
|
foldcolumn = "0",
|
||||||
cursorlineopt = "both",
|
cursorcolumn = false,
|
||||||
colorcolumn = "0",
|
cursorline = true,
|
||||||
wrap = false,
|
cursorlineopt = "both",
|
||||||
winhl = table.concat({
|
colorcolumn = "0",
|
||||||
"EndOfBuffer:NvimTreeEndOfBuffer",
|
wrap = false,
|
||||||
"CursorLine:NvimTreeCursorLine",
|
winhl = table.concat({
|
||||||
"CursorLineNr:NvimTreeCursorLineNr",
|
"EndOfBuffer:NvimTreeEndOfBuffer",
|
||||||
"LineNr:NvimTreeLineNr",
|
"CursorLine:NvimTreeCursorLine",
|
||||||
"WinSeparator:NvimTreeWinSeparator",
|
"CursorLineNr:NvimTreeCursorLineNr",
|
||||||
"StatusLine:NvimTreeStatusLine",
|
"LineNr:NvimTreeLineNr",
|
||||||
"StatusLineNC:NvimTreeStatuslineNC",
|
"WinSeparator:NvimTreeWinSeparator",
|
||||||
"SignColumn:NvimTreeSignColumn",
|
"StatusLine:NvimTreeStatusLine",
|
||||||
"Normal:NvimTreeNormal",
|
"StatusLineNC:NvimTreeStatuslineNC",
|
||||||
"NormalNC:NvimTreeNormalNC",
|
"SignColumn:NvimTreeSignColumn",
|
||||||
"NormalFloat:NvimTreeNormalFloat",
|
"Normal:NvimTreeNormal",
|
||||||
}, ","),
|
"NormalNC:NvimTreeNormalNC",
|
||||||
},
|
"NormalFloat:NvimTreeNormalFloat",
|
||||||
}
|
}, ","),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
local options = opts.view or {}
|
||||||
|
o.View.centralize_selection = options.centralize_selection
|
||||||
|
o.View.side = (options.side == "right") and "right" or "left"
|
||||||
|
o.View.height = options.height
|
||||||
|
o.View.hide_root_folder = opts.renderer.root_folder_label == false
|
||||||
|
o.View.tab = opts.tab
|
||||||
|
o.View.preserve_window_proportions = options.preserve_window_proportions
|
||||||
|
o.View.winopts.cursorline = options.cursorline
|
||||||
|
o.View.winopts.number = options.number
|
||||||
|
o.View.winopts.relativenumber = options.relativenumber
|
||||||
|
o.View.winopts.signcolumn = options.signcolumn
|
||||||
|
o.View.float = options.float
|
||||||
|
o.on_attach = opts.on_attach
|
||||||
|
|
||||||
|
o.config = vim.deepcopy(options)
|
||||||
|
setmetatable(o, self)
|
||||||
|
self.__index = self
|
||||||
|
|
||||||
|
o:configure_width(options.width)
|
||||||
|
|
||||||
|
o.View.initial_width = o:get_width()
|
||||||
|
end
|
||||||
|
|
||||||
-- The initial state of a tab
|
-- The initial state of a tab
|
||||||
local tabinitial = {
|
local tabinitial = {
|
||||||
@ -92,20 +112,20 @@ local function wipe_rogue_buffer()
|
|||||||
end
|
end
|
||||||
|
|
||||||
---@param bufnr integer|boolean|nil
|
---@param bufnr integer|boolean|nil
|
||||||
local function create_buffer(bufnr)
|
local function create_buffer(self, bufnr)
|
||||||
wipe_rogue_buffer()
|
wipe_rogue_buffer()
|
||||||
|
|
||||||
local tab = vim.api.nvim_get_current_tabpage()
|
local tab = vim.api.nvim_get_current_tabpage()
|
||||||
BUFNR_PER_TAB[tab] = bufnr or vim.api.nvim_create_buf(false, false)
|
BUFNR_PER_TAB[tab] = bufnr or vim.api.nvim_create_buf(false, false)
|
||||||
vim.api.nvim_buf_set_name(M.get_bufnr(), "NvimTree_" .. tab)
|
vim.api.nvim_buf_set_name(self:get_bufnr(), "NvimTree_" .. tab)
|
||||||
|
|
||||||
for option, value in pairs(BUFFER_OPTIONS) do
|
for option, value in pairs(BUFFER_OPTIONS) do
|
||||||
vim.bo[M.get_bufnr()][option] = value
|
vim.bo[self:get_bufnr()][option] = value
|
||||||
end
|
end
|
||||||
|
|
||||||
require("nvim-tree.keymap").on_attach(M.get_bufnr())
|
require("nvim-tree.keymap").on_attach(self:get_bufnr())
|
||||||
|
|
||||||
events._dispatch_tree_attached_post(M.get_bufnr())
|
events._dispatch_tree_attached_post(self:get_bufnr())
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param size (fun():integer)|integer|string
|
---@param size (fun():integer)|integer|string
|
||||||
@ -122,11 +142,11 @@ local function get_size(size)
|
|||||||
end
|
end
|
||||||
|
|
||||||
---@param size (fun():integer)|integer|nil
|
---@param size (fun():integer)|integer|nil
|
||||||
local function get_width(size)
|
function ExplorerView:get_width(size)
|
||||||
if size then
|
if size then
|
||||||
return get_size(size)
|
return get_size(size)
|
||||||
else
|
else
|
||||||
return get_size(M.View.width)
|
return get_size(self.View.width)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -137,39 +157,39 @@ local move_tbl = {
|
|||||||
|
|
||||||
-- setup_tabpage sets up the initial state of a tab
|
-- setup_tabpage sets up the initial state of a tab
|
||||||
---@param tabpage integer
|
---@param tabpage integer
|
||||||
local function setup_tabpage(tabpage)
|
local function setup_tabpage(self, tabpage)
|
||||||
local winnr = vim.api.nvim_get_current_win()
|
local winnr = vim.api.nvim_get_current_win()
|
||||||
M.View.tabpages[tabpage] = vim.tbl_extend("force", M.View.tabpages[tabpage] or tabinitial, { winnr = winnr })
|
self.View.tabpages[tabpage] = vim.tbl_extend("force", self.View.tabpages[tabpage] or tabinitial, { winnr = winnr })
|
||||||
end
|
end
|
||||||
|
|
||||||
local function set_window_options_and_buffer()
|
local function set_window_options_and_buffer(self)
|
||||||
pcall(vim.api.nvim_command, "buffer " .. M.get_bufnr())
|
pcall(vim.api.nvim_command, "buffer " .. self:get_bufnr())
|
||||||
local eventignore = vim.opt.eventignore:get()
|
local eventignore = vim.opt.eventignore:get()
|
||||||
vim.opt.eventignore = "all"
|
vim.opt.eventignore = "all"
|
||||||
for k, v in pairs(M.View.winopts) do
|
for k, v in pairs(self.View.winopts) do
|
||||||
vim.opt_local[k] = v
|
vim.opt_local[k] = v
|
||||||
end
|
end
|
||||||
vim.opt.eventignore = eventignore
|
vim.opt.eventignore = eventignore
|
||||||
end
|
end
|
||||||
|
|
||||||
---@return table
|
---@return table
|
||||||
local function open_win_config()
|
local function open_win_config(self)
|
||||||
if type(M.View.float.open_win_config) == "function" then
|
if type(self.View.float.open_win_config) == "function" then
|
||||||
return M.View.float.open_win_config()
|
return self.View.float.open_win_config(self)
|
||||||
else
|
else
|
||||||
return M.View.float.open_win_config
|
return self.View.float.open_win_config
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function open_window()
|
local function open_window(self)
|
||||||
if M.View.float.enable then
|
if self.View.float.enable then
|
||||||
vim.api.nvim_open_win(0, true, open_win_config())
|
vim.api.nvim_open_win(0, true, open_win_config(self))
|
||||||
else
|
else
|
||||||
vim.api.nvim_command "vsp"
|
vim.api.nvim_command "vsp"
|
||||||
M.reposition_window()
|
self:reposition_window()
|
||||||
end
|
end
|
||||||
setup_tabpage(vim.api.nvim_get_current_tabpage())
|
setup_tabpage(self, vim.api.nvim_get_current_tabpage())
|
||||||
set_window_options_and_buffer()
|
set_window_options_and_buffer(self)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param buf integer
|
---@param buf integer
|
||||||
@ -205,19 +225,19 @@ end
|
|||||||
|
|
||||||
-- save_tab_state saves any state that should be preserved across redraws.
|
-- save_tab_state saves any state that should be preserved across redraws.
|
||||||
---@param tabnr integer
|
---@param tabnr integer
|
||||||
local function save_tab_state(tabnr)
|
local function save_tab_state(self, tabnr)
|
||||||
local tabpage = tabnr or vim.api.nvim_get_current_tabpage()
|
local tabpage = tabnr or vim.api.nvim_get_current_tabpage()
|
||||||
M.View.cursors[tabpage] = vim.api.nvim_win_get_cursor(M.get_winnr(tabpage) or 0)
|
self.View.cursors[tabpage] = vim.api.nvim_win_get_cursor(self:get_winnr(tabpage) or 0)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param tabpage integer
|
---@param tabpage integer
|
||||||
local function close(tabpage)
|
local function close(self, tabpage)
|
||||||
if not M.is_visible { tabpage = tabpage } then
|
if not self:is_visible { tabpage = tabpage } then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
save_tab_state(tabpage)
|
save_tab_state(self, tabpage)
|
||||||
switch_buf_if_last_buf()
|
switch_buf_if_last_buf()
|
||||||
local tree_win = M.get_winnr(tabpage)
|
local tree_win = self:get_winnr(tabpage)
|
||||||
local current_win = vim.api.nvim_get_current_win()
|
local current_win = vim.api.nvim_get_current_win()
|
||||||
for _, win in pairs(vim.api.nvim_tabpage_list_wins(tabpage)) do
|
for _, win in pairs(vim.api.nvim_tabpage_list_wins(tabpage)) do
|
||||||
if vim.api.nvim_win_get_config(win).relative == "" then
|
if vim.api.nvim_win_get_config(win).relative == "" then
|
||||||
@ -234,35 +254,35 @@ local function close(tabpage)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.close_this_tab_only()
|
function ExplorerView:close_this_tab_only()
|
||||||
close(vim.api.nvim_get_current_tabpage())
|
close(self, vim.api.nvim_get_current_tabpage())
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.close_all_tabs()
|
function ExplorerView:close_all_tabs()
|
||||||
for tabpage, _ in pairs(M.View.tabpages) do
|
for tabpage, _ in pairs(self.View.tabpages) do
|
||||||
close(tabpage)
|
close(self, tabpage)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.close()
|
function ExplorerView:close()
|
||||||
if M.View.tab.sync.close then
|
if self.View.tab.sync.close then
|
||||||
M.close_all_tabs()
|
self:close_all_tabs()
|
||||||
else
|
else
|
||||||
M.close_this_tab_only()
|
self:close_this_tab_only()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param options table|nil
|
---@param options table|nil
|
||||||
function M.open(options)
|
function ExplorerView:open(options)
|
||||||
if M.is_visible() then
|
if self:is_visible() then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local profile = log.profile_start "view open"
|
local profile = log.profile_start "view open"
|
||||||
|
|
||||||
create_buffer()
|
create_buffer(self)
|
||||||
open_window()
|
open_window(self)
|
||||||
M.resize()
|
self:resize()
|
||||||
|
|
||||||
local opts = options or { focus_tree = true }
|
local opts = options or { focus_tree = true }
|
||||||
if not opts.focus_tree then
|
if not opts.focus_tree then
|
||||||
@ -273,26 +293,26 @@ function M.open(options)
|
|||||||
log.profile_end(profile)
|
log.profile_end(profile)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function grow()
|
local function grow(self)
|
||||||
local starts_at = M.is_root_folder_visible(require("nvim-tree.core").get_cwd()) and 1 or 0
|
local starts_at = self:is_root_folder_visible(require("nvim-tree.core").get_cwd()) and 1 or 0
|
||||||
local lines = vim.api.nvim_buf_get_lines(M.get_bufnr(), starts_at, -1, false)
|
local lines = vim.api.nvim_buf_get_lines(self:get_bufnr(), starts_at, -1, false)
|
||||||
-- number of columns of right-padding to indicate end of path
|
-- number of columns of right-padding to indicate end of path
|
||||||
local padding = get_size(M.View.padding)
|
local padding = get_size(self.View.padding)
|
||||||
|
|
||||||
-- account for sign/number columns etc.
|
-- account for sign/number columns etc.
|
||||||
local wininfo = vim.fn.getwininfo(M.get_winnr())
|
local wininfo = vim.fn.getwininfo(self:get_winnr())
|
||||||
if type(wininfo) == "table" and type(wininfo[1]) == "table" then
|
if type(wininfo) == "table" and type(wininfo[1]) == "table" then
|
||||||
padding = padding + wininfo[1].textoff
|
padding = padding + wininfo[1].textoff
|
||||||
end
|
end
|
||||||
|
|
||||||
local resizing_width = M.View.initial_width - padding
|
local resizing_width = self.View.initial_width - padding
|
||||||
local max_width
|
local max_width
|
||||||
|
|
||||||
-- maybe bound max
|
-- maybe bound max
|
||||||
if M.View.max_width == -1 then
|
if self.View.max_width == -1 then
|
||||||
max_width = -1
|
max_width = -1
|
||||||
else
|
else
|
||||||
max_width = get_width(M.View.max_width) - padding
|
max_width = self:get_width(self.View.max_width) - padding
|
||||||
end
|
end
|
||||||
|
|
||||||
for _, l in pairs(lines) do
|
for _, l in pairs(lines) do
|
||||||
@ -300,23 +320,23 @@ local function grow()
|
|||||||
if resizing_width < count then
|
if resizing_width < count then
|
||||||
resizing_width = count
|
resizing_width = count
|
||||||
end
|
end
|
||||||
if M.View.adaptive_size and max_width >= 0 and resizing_width >= max_width then
|
if self.View.adaptive_size and max_width >= 0 and resizing_width >= max_width then
|
||||||
resizing_width = max_width
|
resizing_width = max_width
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
M.resize(resizing_width + padding)
|
self:resize(resizing_width + padding)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.grow_from_content()
|
function ExplorerView:grow_from_content()
|
||||||
if M.View.adaptive_size then
|
if self.View.adaptive_size then
|
||||||
grow()
|
grow(self)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param size string|number|nil
|
---@param size string|number|nil
|
||||||
function M.resize(size)
|
function ExplorerView:resize(size)
|
||||||
if M.View.float.enable and not M.View.adaptive_size then
|
if self.View.float.enable and not self.View.adaptive_size then
|
||||||
-- if the floating windows's adaptive size is not desired, then the
|
-- if the floating windows's adaptive size is not desired, then the
|
||||||
-- float size should be defined in view.float.open_win_config
|
-- float size should be defined in view.float.open_win_config
|
||||||
return
|
return
|
||||||
@ -328,7 +348,7 @@ function M.resize(size)
|
|||||||
size = tonumber(size)
|
size = tonumber(size)
|
||||||
|
|
||||||
if first_char == "+" or first_char == "-" then
|
if first_char == "+" or first_char == "-" then
|
||||||
size = M.View.width + size
|
size = self.View.width + size
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -337,81 +357,81 @@ function M.resize(size)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if size then
|
if size then
|
||||||
M.View.width = size
|
self.View.width = size
|
||||||
M.View.height = size
|
self.View.height = size
|
||||||
end
|
end
|
||||||
|
|
||||||
if not M.is_visible() then
|
if not self:is_visible() then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local new_size = get_width()
|
local new_size = self:get_width()
|
||||||
vim.api.nvim_win_set_width(M.get_winnr() or 0, new_size)
|
vim.api.nvim_win_set_width(self:get_winnr() or 0, new_size)
|
||||||
|
|
||||||
events._dispatch_on_tree_resize(new_size)
|
events._dispatch_on_tree_resize(new_size)
|
||||||
|
|
||||||
if not M.View.preserve_window_proportions then
|
if not self.View.preserve_window_proportions then
|
||||||
vim.cmd ":wincmd ="
|
vim.cmd ":wincmd ="
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.reposition_window()
|
function ExplorerView:reposition_window()
|
||||||
local move_to = move_tbl[M.View.side]
|
local move_to = move_tbl[self.View.side]
|
||||||
vim.api.nvim_command("wincmd " .. move_to)
|
vim.api.nvim_command("wincmd " .. move_to)
|
||||||
M.resize()
|
self:resize()
|
||||||
end
|
end
|
||||||
|
|
||||||
local function set_current_win()
|
local function set_current_win(self)
|
||||||
local current_tab = vim.api.nvim_get_current_tabpage()
|
local current_tab = vim.api.nvim_get_current_tabpage()
|
||||||
M.View.tabpages[current_tab].winnr = vim.api.nvim_get_current_win()
|
self.View.tabpages[current_tab].winnr = vim.api.nvim_get_current_win()
|
||||||
end
|
end
|
||||||
|
|
||||||
---Open the tree in the a window
|
---Open the tree in the a window
|
||||||
---@param opts OpenInWinOpts|nil
|
---@param opts OpenInWinOpts|nil
|
||||||
function M.open_in_win(opts)
|
function ExplorerView:open_in_win(opts)
|
||||||
opts = opts or { hijack_current_buf = true, resize = true }
|
opts = opts or { hijack_current_buf = true, resize = true }
|
||||||
if opts.winid and vim.api.nvim_win_is_valid(opts.winid) then
|
if opts.winid and vim.api.nvim_win_is_valid(opts.winid) then
|
||||||
vim.api.nvim_set_current_win(opts.winid)
|
vim.api.nvim_set_current_win(opts.winid)
|
||||||
end
|
end
|
||||||
create_buffer(opts.hijack_current_buf and vim.api.nvim_get_current_buf())
|
create_buffer(self, opts.hijack_current_buf and vim.api.nvim_get_current_buf())
|
||||||
setup_tabpage(vim.api.nvim_get_current_tabpage())
|
setup_tabpage(self, vim.api.nvim_get_current_tabpage())
|
||||||
set_current_win()
|
set_current_win(self)
|
||||||
set_window_options_and_buffer()
|
set_window_options_and_buffer(self)
|
||||||
if opts.resize then
|
if opts.resize then
|
||||||
M.reposition_window()
|
self:reposition_window()
|
||||||
M.resize()
|
self:resize()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.abandon_current_window()
|
function ExplorerView:abandon_current_window()
|
||||||
local tab = vim.api.nvim_get_current_tabpage()
|
local tab = vim.api.nvim_get_current_tabpage()
|
||||||
BUFNR_PER_TAB[tab] = nil
|
BUFNR_PER_TAB[tab] = nil
|
||||||
if M.View.tabpages[tab] then
|
if self.View.tabpages[tab] then
|
||||||
M.View.tabpages[tab].winnr = nil
|
self.View.tabpages[tab].winnr = nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.abandon_all_windows()
|
function ExplorerView:abandon_all_windows()
|
||||||
for tab, _ in pairs(vim.api.nvim_list_tabpages()) do
|
for tab, _ in pairs(vim.api.nvim_list_tabpages()) do
|
||||||
BUFNR_PER_TAB[tab] = nil
|
BUFNR_PER_TAB[tab] = nil
|
||||||
if M.View.tabpages[tab] then
|
if self.View.tabpages[tab] then
|
||||||
M.View.tabpages[tab].winnr = nil
|
self.View.tabpages[tab].winnr = nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param opts table|nil
|
---@param opts table|nil
|
||||||
function M.is_visible(opts)
|
function ExplorerView:is_visible(opts)
|
||||||
if opts and opts.tabpage then
|
if opts and opts.tabpage then
|
||||||
if M.View.tabpages[opts.tabpage] == nil then
|
if self.View.tabpages[opts.tabpage] == nil then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
local winnr = M.View.tabpages[opts.tabpage].winnr
|
local winnr = self.View.tabpages[opts.tabpage].winnr
|
||||||
return winnr and vim.api.nvim_win_is_valid(winnr)
|
return winnr and vim.api.nvim_win_is_valid(winnr)
|
||||||
end
|
end
|
||||||
|
|
||||||
if opts and opts.any_tabpage then
|
if opts and opts.any_tabpage then
|
||||||
for _, v in pairs(M.View.tabpages) do
|
for _, v in pairs(self.View.tabpages) do
|
||||||
if v.winnr and vim.api.nvim_win_is_valid(v.winnr) then
|
if v.winnr and vim.api.nvim_win_is_valid(v.winnr) then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
@ -419,27 +439,27 @@ function M.is_visible(opts)
|
|||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
return M.get_winnr() ~= nil and vim.api.nvim_win_is_valid(M.get_winnr() or 0)
|
return self:get_winnr() ~= nil and vim.api.nvim_win_is_valid(self:get_winnr() or 0)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param opts table|nil
|
---@param opts table|nil
|
||||||
function M.set_cursor(opts)
|
function ExplorerView:set_cursor(opts)
|
||||||
if M.is_visible() then
|
if self:is_visible() then
|
||||||
pcall(vim.api.nvim_win_set_cursor, M.get_winnr(), opts)
|
pcall(vim.api.nvim_win_set_cursor, self:get_winnr(), opts)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param winnr number|nil
|
---@param winnr number|nil
|
||||||
---@param open_if_closed boolean|nil
|
---@param open_if_closed boolean|nil
|
||||||
function M.focus(winnr, open_if_closed)
|
function ExplorerView:focus(winnr, open_if_closed)
|
||||||
local wnr = winnr or M.get_winnr()
|
local wnr = winnr or self:get_winnr()
|
||||||
|
|
||||||
if vim.api.nvim_win_get_tabpage(wnr or 0) ~= vim.api.nvim_win_get_tabpage(0) then
|
if vim.api.nvim_win_get_tabpage(wnr or 0) ~= vim.api.nvim_win_get_tabpage(0) then
|
||||||
M.close()
|
self:close()
|
||||||
M.open()
|
self:open()
|
||||||
wnr = M.get_winnr()
|
wnr = self:get_winnr()
|
||||||
elseif open_if_closed and not M.is_visible() then
|
elseif open_if_closed and not self:is_visible() then
|
||||||
M.open()
|
self:open()
|
||||||
end
|
end
|
||||||
|
|
||||||
if wnr then
|
if wnr then
|
||||||
@ -450,30 +470,30 @@ end
|
|||||||
--- Retrieve the winid of the open tree.
|
--- Retrieve the winid of the open tree.
|
||||||
---@param opts ApiTreeWinIdOpts|nil
|
---@param opts ApiTreeWinIdOpts|nil
|
||||||
---@return number|nil winid unlike get_winnr(), this returns nil if the nvim-tree window is not visible
|
---@return number|nil winid unlike get_winnr(), this returns nil if the nvim-tree window is not visible
|
||||||
function M.winid(opts)
|
function ExplorerView:winid(opts)
|
||||||
local tabpage = opts and opts.tabpage
|
local tabpage = opts and opts.tabpage
|
||||||
if tabpage == 0 then
|
if tabpage == 0 then
|
||||||
tabpage = vim.api.nvim_get_current_tabpage()
|
tabpage = vim.api.nvim_get_current_tabpage()
|
||||||
end
|
end
|
||||||
if M.is_visible { tabpage = tabpage } then
|
if self:is_visible { tabpage = tabpage } then
|
||||||
return M.get_winnr(tabpage)
|
return self:get_winnr(tabpage)
|
||||||
else
|
else
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Restores the state of a NvimTree window if it was initialized before.
|
--- Restores the state of a NvimTree window if it was initialized before.
|
||||||
function M.restore_tab_state()
|
function ExplorerView:restore_tab_state()
|
||||||
local tabpage = vim.api.nvim_get_current_tabpage()
|
local tabpage = vim.api.nvim_get_current_tabpage()
|
||||||
M.set_cursor(M.View.cursors[tabpage])
|
self:set_cursor(self.View.cursors[tabpage])
|
||||||
end
|
end
|
||||||
|
|
||||||
--- Returns the window number for nvim-tree within the tabpage specified
|
--- Returns the window number for nvim-tree within the tabpage specified
|
||||||
---@param tabpage number|nil (optional) the number of the chosen tabpage. Defaults to current tabpage.
|
---@param tabpage number|nil (optional) the number of the chosen tabpage. Defaults to current tabpage.
|
||||||
---@return number|nil
|
---@return number|nil
|
||||||
function M.get_winnr(tabpage)
|
function ExplorerView:get_winnr(tabpage)
|
||||||
tabpage = tabpage or vim.api.nvim_get_current_tabpage()
|
tabpage = tabpage or vim.api.nvim_get_current_tabpage()
|
||||||
local tabinfo = M.View.tabpages[tabpage]
|
local tabinfo = self.View.tabpages[tabpage]
|
||||||
if tabinfo and tabinfo.winnr and vim.api.nvim_win_is_valid(tabinfo.winnr) then
|
if tabinfo and tabinfo.winnr and vim.api.nvim_win_is_valid(tabinfo.winnr) then
|
||||||
return tabinfo.winnr
|
return tabinfo.winnr
|
||||||
end
|
end
|
||||||
@ -481,19 +501,19 @@ end
|
|||||||
|
|
||||||
--- Returns the current nvim tree bufnr
|
--- Returns the current nvim tree bufnr
|
||||||
---@return number
|
---@return number
|
||||||
function M.get_bufnr()
|
function ExplorerView:get_bufnr()
|
||||||
return BUFNR_PER_TAB[vim.api.nvim_get_current_tabpage()]
|
return BUFNR_PER_TAB[vim.api.nvim_get_current_tabpage()]
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param bufnr number
|
---@param bufnr number
|
||||||
---@return boolean
|
---@return boolean
|
||||||
function M.is_buf_valid(bufnr)
|
function ExplorerView:is_buf_valid(bufnr)
|
||||||
return bufnr and vim.api.nvim_buf_is_valid(bufnr) and vim.api.nvim_buf_is_loaded(bufnr)
|
return bufnr and vim.api.nvim_buf_is_valid(bufnr) and vim.api.nvim_buf_is_loaded(bufnr)
|
||||||
end
|
end
|
||||||
|
|
||||||
function M._prevent_buffer_override()
|
function ExplorerView:_prevent_buffer_override()
|
||||||
local view_winnr = M.get_winnr()
|
local view_winnr = self:get_winnr()
|
||||||
local view_bufnr = M.get_bufnr()
|
local view_bufnr = self:get_bufnr()
|
||||||
|
|
||||||
-- need to schedule to let the new buffer populate the window
|
-- need to schedule to let the new buffer populate the window
|
||||||
-- because this event needs to be run on bufWipeout.
|
-- because this event needs to be run on bufWipeout.
|
||||||
@ -505,7 +525,7 @@ function M._prevent_buffer_override()
|
|||||||
local bufname = vim.api.nvim_buf_get_name(curbuf)
|
local bufname = vim.api.nvim_buf_get_name(curbuf)
|
||||||
|
|
||||||
if not bufname:match "NvimTree" then
|
if not bufname:match "NvimTree" then
|
||||||
for i, tabpage in ipairs(M.View.tabpages) do
|
for i, tabpage in ipairs(self.View.tabpages) do
|
||||||
if tabpage.winnr == view_winnr then
|
if tabpage.winnr == view_winnr then
|
||||||
M.View.tabpages[i] = nil
|
M.View.tabpages[i] = nil
|
||||||
break
|
break
|
||||||
@ -536,65 +556,44 @@ end
|
|||||||
|
|
||||||
---@param cwd string|nil
|
---@param cwd string|nil
|
||||||
---@return boolean
|
---@return boolean
|
||||||
function M.is_root_folder_visible(cwd)
|
function ExplorerView:is_root_folder_visible(cwd)
|
||||||
return cwd ~= "/" and not M.View.hide_root_folder
|
return cwd ~= "/" and not self.View.hide_root_folder
|
||||||
end
|
end
|
||||||
|
|
||||||
-- used on ColorScheme event
|
-- used on ColorScheme event
|
||||||
function M.reset_winhl()
|
function ExplorerView:reset_winhl()
|
||||||
local winnr = M.get_winnr()
|
local winnr = self:get_winnr()
|
||||||
if winnr and vim.api.nvim_win_is_valid(winnr) then
|
if winnr and vim.api.nvim_win_is_valid(winnr) then
|
||||||
vim.wo[M.get_winnr()].winhl = M.View.winopts.winhl
|
vim.wo[self:get_winnr()].winhl = self.View.winopts.winhl
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---Check if width determined or calculated on-fly
|
---Check if width determined or calculated on-fly
|
||||||
---@return boolean
|
---@return boolean
|
||||||
function M.is_width_determined()
|
function ExplorerView:is_width_determined()
|
||||||
return type(M.View.width) ~= "function"
|
return type(self.View.width) ~= "function"
|
||||||
end
|
end
|
||||||
|
|
||||||
---Configure width-related config
|
---Configure width-related config
|
||||||
---@param width string|function|number|table|nil
|
---@param width string|function|number|table|nil
|
||||||
function M.configure_width(width)
|
function ExplorerView:configure_width(width)
|
||||||
if type(width) == "table" then
|
if type(width) == "table" then
|
||||||
M.View.adaptive_size = true
|
self.View.adaptive_size = true
|
||||||
M.View.width = width.min or DEFAULT_MIN_WIDTH
|
self.View.width = width.min or DEFAULT_MIN_WIDTH
|
||||||
M.View.max_width = width.max or DEFAULT_MAX_WIDTH
|
self.View.max_width = width.max or DEFAULT_MAX_WIDTH
|
||||||
M.View.padding = width.padding or DEFAULT_PADDING
|
self.View.padding = width.padding or DEFAULT_PADDING
|
||||||
elseif width == nil then
|
elseif width == nil then
|
||||||
if M.config.width ~= nil then
|
if self.config.width ~= nil then
|
||||||
-- if we had input config - fallback to it
|
-- if we had input config - fallback to it
|
||||||
M.configure_width(M.config.width)
|
self.configure_width(self.config.width)
|
||||||
else
|
else
|
||||||
-- otherwise - restore initial width
|
-- otherwise - restore initial width
|
||||||
M.View.width = M.View.initial_width
|
self.View.width = self.View.initial_width
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
M.View.adaptive_size = false
|
self.View.adaptive_size = false
|
||||||
M.View.width = width
|
self.View.width = width
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
return ExplorerView
|
||||||
local options = opts.view or {}
|
|
||||||
M.View.centralize_selection = options.centralize_selection
|
|
||||||
M.View.side = (options.side == "right") and "right" or "left"
|
|
||||||
M.View.height = options.height
|
|
||||||
M.View.hide_root_folder = opts.renderer.root_folder_label == false
|
|
||||||
M.View.tab = opts.tab
|
|
||||||
M.View.preserve_window_proportions = options.preserve_window_proportions
|
|
||||||
M.View.winopts.cursorline = options.cursorline
|
|
||||||
M.View.winopts.number = options.number
|
|
||||||
M.View.winopts.relativenumber = options.relativenumber
|
|
||||||
M.View.winopts.signcolumn = options.signcolumn
|
|
||||||
M.View.float = options.float
|
|
||||||
M.on_attach = opts.on_attach
|
|
||||||
|
|
||||||
M.config = options
|
|
||||||
M.configure_width(options.width)
|
|
||||||
|
|
||||||
M.View.initial_width = get_width()
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
||||||
@ -1,5 +1,4 @@
|
|||||||
local renderer = require "nvim-tree.renderer"
|
local renderer = require "nvim-tree.renderer"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local events = require "nvim-tree.events"
|
local events = require "nvim-tree.events"
|
||||||
@ -17,11 +16,12 @@ local M = {
|
|||||||
|
|
||||||
---@return Node|nil
|
---@return Node|nil
|
||||||
function M.get_node_at_cursor()
|
function M.get_node_at_cursor()
|
||||||
if not core.get_explorer() then
|
local explorer = core.get_explorer()
|
||||||
|
if not explorer then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local winnr = view.get_winnr()
|
local winnr = explorer.view:get_winnr()
|
||||||
if not winnr then
|
if not winnr then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
@ -29,7 +29,7 @@ function M.get_node_at_cursor()
|
|||||||
local cursor = vim.api.nvim_win_get_cursor(winnr)
|
local cursor = vim.api.nvim_win_get_cursor(winnr)
|
||||||
local line = cursor[1]
|
local line = cursor[1]
|
||||||
|
|
||||||
if line == 1 and view.is_root_folder_visible(core.get_cwd()) then
|
if line == 1 and explorer.view:is_root_folder_visible(core.get_cwd()) then
|
||||||
return { name = ".." }
|
return { name = ".." }
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -189,8 +189,12 @@ local function handle_buf_cwd(cwd)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function open_view_and_draw()
|
local function open_view_and_draw()
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
local cwd = vim.fn.getcwd()
|
local cwd = vim.fn.getcwd()
|
||||||
view.open()
|
explorer.view:open()
|
||||||
handle_buf_cwd(cwd)
|
handle_buf_cwd(cwd)
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
end
|
end
|
||||||
@ -261,20 +265,24 @@ function M.open(opts)
|
|||||||
core.init(cwd)
|
core.init(cwd)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
local explorer = core.get_explorer()
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
if should_hijack_current_buf() then
|
if should_hijack_current_buf() then
|
||||||
view.close_this_tab_only()
|
explorer.view:close_this_tab_only()
|
||||||
view.open_in_win()
|
explorer.view:open_in_win()
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
elseif opts.winid then
|
elseif opts.winid then
|
||||||
view.open_in_win { hijack_current_buf = false, resize = false, winid = opts.winid }
|
explorer.view:open_in_win { hijack_current_buf = false, resize = false, winid = opts.winid }
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
elseif opts.current_window then
|
elseif opts.current_window then
|
||||||
view.open_in_win { hijack_current_buf = false, resize = false }
|
explorer.view:open_in_win { hijack_current_buf = false, resize = false }
|
||||||
renderer.draw()
|
renderer.draw()
|
||||||
else
|
else
|
||||||
open_view_and_draw()
|
open_view_and_draw()
|
||||||
end
|
end
|
||||||
view.restore_tab_state()
|
explorer.view:restore_tab_state()
|
||||||
events._dispatch_on_tree_open()
|
events._dispatch_on_tree_open()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
local notify = require "nvim-tree.notify"
|
local notify = require "nvim-tree.notify"
|
||||||
local utils = require "nvim-tree.utils"
|
local utils = require "nvim-tree.utils"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
|
|
||||||
local DecoratorBookmarks = require "nvim-tree.renderer.decorator.bookmarks"
|
local DecoratorBookmarks = require "nvim-tree.renderer.decorator.bookmarks"
|
||||||
local DecoratorCopied = require "nvim-tree.renderer.decorator.copied"
|
local DecoratorCopied = require "nvim-tree.renderer.decorator.copied"
|
||||||
@ -408,14 +407,17 @@ end
|
|||||||
---@private
|
---@private
|
||||||
function Builder:build_header()
|
function Builder:build_header()
|
||||||
local explorer = core.get_explorer()
|
local explorer = core.get_explorer()
|
||||||
if view.is_root_folder_visible(core.get_cwd()) then
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if explorer.view:is_root_folder_visible(core.get_cwd()) then
|
||||||
local root_name = self:format_root_name(M.opts.renderer.root_folder_label)
|
local root_name = self:format_root_name(M.opts.renderer.root_folder_label)
|
||||||
table.insert(self.lines, root_name)
|
table.insert(self.lines, root_name)
|
||||||
self:insert_highlight({ "NvimTreeRootFolder" }, 0, string.len(root_name))
|
self:insert_highlight({ "NvimTreeRootFolder" }, 0, string.len(root_name))
|
||||||
self.index = 1
|
self.index = 1
|
||||||
end
|
end
|
||||||
|
|
||||||
if explorer and explorer.live_filter.filter then
|
if explorer.live_filter.filter then
|
||||||
local filter_line = string.format("%s/%s/", M.opts.live_filter.prefix, explorer.live_filter.filter)
|
local filter_line = string.format("%s/%s/", M.opts.live_filter.prefix, explorer.live_filter.filter)
|
||||||
table.insert(self.lines, filter_line)
|
table.insert(self.lines, filter_line)
|
||||||
local prefix_length = string.len(M.opts.live_filter.prefix)
|
local prefix_length = string.len(M.opts.live_filter.prefix)
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
local core = require "nvim-tree.core"
|
local core = require "nvim-tree.core"
|
||||||
local log = require "nvim-tree.log"
|
local log = require "nvim-tree.log"
|
||||||
local view = require "nvim-tree.view"
|
|
||||||
local events = require "nvim-tree.events"
|
local events = require "nvim-tree.events"
|
||||||
|
|
||||||
local _padding = require "nvim-tree.renderer.components.padding"
|
local _padding = require "nvim-tree.renderer.components.padding"
|
||||||
@ -67,14 +66,18 @@ function M.render_hl(bufnr, hl)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function M.draw()
|
function M.draw()
|
||||||
local bufnr = view.get_bufnr()
|
local explorer = core.get_explorer()
|
||||||
if not core.get_explorer() or not bufnr or not vim.api.nvim_buf_is_loaded(bufnr) then
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local bufnr = explorer.view:get_bufnr()
|
||||||
|
if not bufnr or not vim.api.nvim_buf_is_loaded(bufnr) then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local profile = log.profile_start "draw"
|
local profile = log.profile_start "draw"
|
||||||
|
|
||||||
local cursor = vim.api.nvim_win_get_cursor(view.get_winnr() or 0)
|
local cursor = vim.api.nvim_win_get_cursor(explorer.view:get_winnr() or 0)
|
||||||
icon_component.reset_config()
|
icon_component.reset_config()
|
||||||
|
|
||||||
local builder = Builder:new():build()
|
local builder = Builder:new():build()
|
||||||
@ -82,14 +85,14 @@ function M.draw()
|
|||||||
_draw(bufnr, builder.lines, builder.hl_args, builder.signs, builder.extmarks)
|
_draw(bufnr, builder.lines, builder.hl_args, builder.signs, builder.extmarks)
|
||||||
|
|
||||||
if cursor and #builder.lines >= cursor[1] then
|
if cursor and #builder.lines >= cursor[1] then
|
||||||
vim.api.nvim_win_set_cursor(view.get_winnr() or 0, cursor)
|
vim.api.nvim_win_set_cursor(explorer.view:get_winnr() or 0, cursor)
|
||||||
end
|
end
|
||||||
|
|
||||||
view.grow_from_content()
|
explorer.view:grow_from_content()
|
||||||
|
|
||||||
log.profile_end(profile)
|
log.profile_end(profile)
|
||||||
|
|
||||||
events._dispatch_on_tree_rendered(bufnr, view.get_winnr())
|
events._dispatch_on_tree_rendered(bufnr, explorer.view:get_winnr())
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.setup(opts)
|
function M.setup(opts)
|
||||||
|
|||||||
@ -111,8 +111,8 @@ function M.find_node(nodes, fn)
|
|||||||
return node.group_next and { node.group_next } or (node.open and #node.nodes > 0 and node.nodes)
|
return node.group_next and { node.group_next } or (node.open and #node.nodes > 0 and node.nodes)
|
||||||
end)
|
end)
|
||||||
:iterate()
|
:iterate()
|
||||||
i = require("nvim-tree.view").is_root_folder_visible() and i or i - 1
|
|
||||||
local explorer = require("nvim-tree.core").get_explorer()
|
local explorer = require("nvim-tree.core").get_explorer()
|
||||||
|
i = explorer and explorer.view:is_root_folder_visible() and i or i - 1
|
||||||
if explorer and explorer.live_filter.filter then
|
if explorer and explorer.live_filter.filter then
|
||||||
i = i + 1
|
i = i + 1
|
||||||
end
|
end
|
||||||
@ -444,10 +444,14 @@ function M.debounce(context, timeout, callback)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function M.focus_file(path)
|
function M.focus_file(path)
|
||||||
local _, i = M.find_node(require("nvim-tree.core").get_explorer().nodes, function(node)
|
local explorer = require("nvim-tree.core").get_explorer()
|
||||||
|
if not explorer then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local _, i = M.find_node(explorer.nodes, function(node)
|
||||||
return node.absolute_path == path
|
return node.absolute_path == path
|
||||||
end)
|
end)
|
||||||
require("nvim-tree.view").set_cursor { i + 1, 1 }
|
explorer.view:set_cursor { i + 1, 1 }
|
||||||
end
|
end
|
||||||
|
|
||||||
---Focus node passed as parameter if visible, otherwise focus first visible parent.
|
---Focus node passed as parameter if visible, otherwise focus first visible parent.
|
||||||
@ -467,7 +471,7 @@ function M.focus_node_or_parent(node)
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
if found_node or node.parent == nil then
|
if found_node or node.parent == nil then
|
||||||
require("nvim-tree.view").set_cursor { i + 1, 1 }
|
explorer.view:set_cursor { i + 1, 1 }
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user