501 lines
13 KiB
Lua
501 lines
13 KiB
Lua
local M = {}
|
|
|
|
local events = require "nvim-tree.events"
|
|
local utils = require "nvim-tree.utils"
|
|
|
|
local function get_win_sep_hl()
|
|
-- #1221 WinSeparator not present in nvim 0.6.1 and some builds of 0.7.0
|
|
local has_win_sep = pcall(vim.cmd, "silent hi WinSeparator")
|
|
return has_win_sep and "WinSeparator:NvimTreeWinSeparator" or "VertSplit:NvimTreeWinSeparator"
|
|
end
|
|
|
|
M.View = {
|
|
adaptive_size = false,
|
|
centralize_selection = false,
|
|
tabpages = {},
|
|
cursors = {},
|
|
hide_root_folder = false,
|
|
winopts = {
|
|
relativenumber = false,
|
|
number = false,
|
|
list = false,
|
|
foldenable = false,
|
|
winfixwidth = true,
|
|
winfixheight = true,
|
|
spell = false,
|
|
signcolumn = "yes",
|
|
foldmethod = "manual",
|
|
foldcolumn = "0",
|
|
cursorcolumn = false,
|
|
cursorline = true,
|
|
cursorlineopt = "both",
|
|
colorcolumn = "0",
|
|
wrap = false,
|
|
winhl = table.concat({
|
|
"EndOfBuffer:NvimTreeEndOfBuffer",
|
|
"Normal:NvimTreeNormal",
|
|
"CursorLine:NvimTreeCursorLine",
|
|
"CursorLineNr:NvimTreeCursorLineNr",
|
|
"LineNr:NvimTreeLineNr",
|
|
get_win_sep_hl(),
|
|
"StatusLine:NvimTreeStatusLine",
|
|
"StatusLineNC:NvimTreeStatuslineNC",
|
|
"SignColumn:NvimTreeSignColumn",
|
|
"NormalNC:NvimTreeNormalNC",
|
|
}, ","),
|
|
},
|
|
}
|
|
|
|
-- The initial state of a tab
|
|
local tabinitial = {
|
|
-- True if help is displayed
|
|
help = false,
|
|
-- The position of the cursor { line, column }
|
|
cursor = { 0, 0 },
|
|
-- The NvimTree window number
|
|
winnr = nil,
|
|
}
|
|
|
|
local BUFNR_PER_TAB = {}
|
|
local BUFFER_OPTIONS = {
|
|
swapfile = false,
|
|
buftype = "nofile",
|
|
modifiable = false,
|
|
filetype = "NvimTree",
|
|
bufhidden = "wipe",
|
|
buflisted = false,
|
|
}
|
|
|
|
local function matches_bufnr(bufnr)
|
|
for _, b in pairs(BUFNR_PER_TAB) do
|
|
if b == bufnr then
|
|
return true
|
|
end
|
|
end
|
|
return false
|
|
end
|
|
|
|
local function wipe_rogue_buffer()
|
|
for _, bufnr in ipairs(vim.api.nvim_list_bufs()) do
|
|
if not matches_bufnr(bufnr) and utils.is_nvim_tree_buf(bufnr) then
|
|
pcall(vim.api.nvim_buf_delete, bufnr, { force = true })
|
|
end
|
|
end
|
|
end
|
|
|
|
local function create_buffer(bufnr)
|
|
wipe_rogue_buffer()
|
|
|
|
local tab = vim.api.nvim_get_current_tabpage()
|
|
BUFNR_PER_TAB[tab] = bufnr or vim.api.nvim_create_buf(false, false)
|
|
vim.api.nvim_buf_set_name(M.get_bufnr(), "NvimTree_" .. tab)
|
|
|
|
for option, value in pairs(BUFFER_OPTIONS) do
|
|
vim.bo[M.get_bufnr()][option] = value
|
|
end
|
|
|
|
if type(M.on_attach) == "function" then
|
|
require("nvim-tree.keymap").set_keymaps(M.get_bufnr())
|
|
M.on_attach(M.get_bufnr())
|
|
else
|
|
require("nvim-tree.actions").apply_mappings(M.get_bufnr())
|
|
end
|
|
end
|
|
|
|
local function get_size()
|
|
local size = M.View.width
|
|
if type(size) == "number" then
|
|
return size
|
|
elseif type(size) == "function" then
|
|
return size()
|
|
end
|
|
local size_as_number = tonumber(size:sub(0, -2))
|
|
local percent_as_decimal = size_as_number / 100
|
|
return math.floor(vim.o.columns * percent_as_decimal)
|
|
end
|
|
|
|
local move_tbl = {
|
|
left = "H",
|
|
right = "L",
|
|
}
|
|
|
|
-- setup_tabpage sets up the initial state of a tab
|
|
local function setup_tabpage(tabpage)
|
|
local winnr = vim.api.nvim_get_current_win()
|
|
M.View.tabpages[tabpage] = vim.tbl_extend("force", M.View.tabpages[tabpage] or tabinitial, { winnr = winnr })
|
|
end
|
|
|
|
local function set_window_options_and_buffer()
|
|
pcall(vim.cmd, "buffer " .. M.get_bufnr())
|
|
for k, v in pairs(M.View.winopts) do
|
|
vim.opt_local[k] = v
|
|
end
|
|
end
|
|
|
|
local function open_win_config()
|
|
if type(M.View.float.open_win_config) == "function" then
|
|
return M.View.float.open_win_config()
|
|
else
|
|
return M.View.float.open_win_config
|
|
end
|
|
end
|
|
|
|
local function open_window()
|
|
if M.View.float.enable then
|
|
vim.api.nvim_open_win(0, true, open_win_config())
|
|
else
|
|
vim.api.nvim_command "vsp"
|
|
M.reposition_window()
|
|
end
|
|
setup_tabpage(vim.api.nvim_get_current_tabpage())
|
|
set_window_options_and_buffer()
|
|
end
|
|
|
|
local function is_buf_displayed(buf)
|
|
return vim.api.nvim_buf_is_valid(buf) and vim.fn.buflisted(buf) == 1
|
|
end
|
|
|
|
local function get_alt_or_next_buf()
|
|
local alt_buf = vim.fn.bufnr "#"
|
|
if is_buf_displayed(alt_buf) then
|
|
return alt_buf
|
|
end
|
|
|
|
for _, buf in ipairs(vim.api.nvim_list_bufs()) do
|
|
if is_buf_displayed(buf) then
|
|
return buf
|
|
end
|
|
end
|
|
end
|
|
|
|
local function switch_buf_if_last_buf()
|
|
if #vim.api.nvim_list_wins() == 1 then
|
|
local buf = get_alt_or_next_buf()
|
|
if buf then
|
|
vim.cmd("sb" .. buf)
|
|
else
|
|
vim.cmd "new"
|
|
end
|
|
end
|
|
end
|
|
|
|
-- save_tab_state saves any state that should be preserved across redraws.
|
|
local function save_tab_state(tabnr)
|
|
local tabpage = tabnr or vim.api.nvim_get_current_tabpage()
|
|
M.View.cursors[tabpage] = vim.api.nvim_win_get_cursor(M.get_winnr(tabpage))
|
|
end
|
|
|
|
local function close(tabpage)
|
|
if not M.is_visible { tabpage = tabpage } then
|
|
return
|
|
end
|
|
save_tab_state(tabpage)
|
|
switch_buf_if_last_buf()
|
|
local tree_win = M.get_winnr(tabpage)
|
|
local current_win = vim.api.nvim_get_current_win()
|
|
for _, win in pairs(vim.api.nvim_tabpage_list_wins(tabpage)) do
|
|
if vim.api.nvim_win_get_config(win).relative == "" then
|
|
local prev_win = vim.fn.winnr "#" -- this tab only
|
|
if tree_win == current_win and prev_win > 0 then
|
|
vim.api.nvim_set_current_win(vim.fn.win_getid(prev_win))
|
|
end
|
|
if vim.api.nvim_win_is_valid(tree_win) then
|
|
vim.api.nvim_win_close(tree_win, true)
|
|
end
|
|
events._dispatch_on_tree_close()
|
|
return
|
|
end
|
|
end
|
|
end
|
|
|
|
function M.close_this_tab_only()
|
|
close(vim.api.nvim_get_current_tabpage())
|
|
end
|
|
|
|
function M.close_all_tabs()
|
|
for tabpage, _ in pairs(M.View.tabpages) do
|
|
close(tabpage)
|
|
end
|
|
end
|
|
|
|
function M.close()
|
|
if M.View.tab.sync.close then
|
|
M.close_all_tabs()
|
|
else
|
|
M.close_this_tab_only()
|
|
end
|
|
end
|
|
|
|
function M.open(options)
|
|
if M.is_visible() then
|
|
return
|
|
end
|
|
|
|
create_buffer()
|
|
open_window()
|
|
M.resize()
|
|
|
|
local opts = options or { focus_tree = true }
|
|
if not opts.focus_tree then
|
|
vim.cmd "wincmd p"
|
|
end
|
|
events._dispatch_on_tree_open()
|
|
end
|
|
|
|
local function grow()
|
|
local starts_at = M.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 max_length = M.View.initial_width
|
|
for _, l in pairs(lines) do
|
|
local count = vim.fn.strchars(l) + 3 -- plus some padding
|
|
if max_length < count then
|
|
max_length = count
|
|
end
|
|
end
|
|
M.resize(max_length)
|
|
end
|
|
|
|
function M.grow_from_content()
|
|
if M.View.adaptive_size then
|
|
grow()
|
|
end
|
|
end
|
|
|
|
function M.resize(size)
|
|
if M.View.float.enable and not M.View.adaptive_size then
|
|
-- if the floating windows's adaptive size is not desired, then the
|
|
-- float size should be defined in view.float.open_win_config
|
|
return
|
|
end
|
|
|
|
if type(size) == "string" then
|
|
size = vim.trim(size)
|
|
local first_char = size:sub(1, 1)
|
|
size = tonumber(size)
|
|
|
|
if first_char == "+" or first_char == "-" then
|
|
size = M.View.width + size
|
|
end
|
|
end
|
|
|
|
if type(size) == "number" and size <= 0 then
|
|
return
|
|
end
|
|
|
|
if size then
|
|
M.View.width = size
|
|
M.View.height = size
|
|
end
|
|
|
|
if not M.is_visible() then
|
|
return
|
|
end
|
|
|
|
local new_size = get_size()
|
|
vim.api.nvim_win_set_width(M.get_winnr(), new_size)
|
|
|
|
events._dispatch_on_tree_resize(new_size)
|
|
|
|
if not M.View.preserve_window_proportions then
|
|
vim.cmd ":wincmd ="
|
|
end
|
|
end
|
|
|
|
function M.reposition_window()
|
|
local move_to = move_tbl[M.View.side]
|
|
vim.api.nvim_command("wincmd " .. move_to)
|
|
M.resize()
|
|
end
|
|
|
|
local function set_current_win()
|
|
local current_tab = vim.api.nvim_get_current_tabpage()
|
|
M.View.tabpages[current_tab].winnr = vim.api.nvim_get_current_win()
|
|
end
|
|
|
|
function M.open_in_current_win(opts)
|
|
opts = opts or { hijack_current_buf = true, resize = true }
|
|
create_buffer(opts.hijack_current_buf and vim.api.nvim_get_current_buf())
|
|
setup_tabpage(vim.api.nvim_get_current_tabpage())
|
|
set_current_win()
|
|
set_window_options_and_buffer()
|
|
if opts.resize then
|
|
M.reposition_window()
|
|
M.resize()
|
|
end
|
|
end
|
|
|
|
function M.abandon_current_window()
|
|
local tab = vim.api.nvim_get_current_tabpage()
|
|
BUFNR_PER_TAB[tab] = nil
|
|
if M.View.tabpages[tab] then
|
|
M.View.tabpages[tab].winnr = nil
|
|
end
|
|
end
|
|
|
|
function M.abandon_all_windows()
|
|
for tab, _ in pairs(vim.api.nvim_list_tabpages()) do
|
|
BUFNR_PER_TAB[tab] = nil
|
|
if M.View.tabpages[tab] then
|
|
M.View.tabpages[tab].winnr = nil
|
|
end
|
|
end
|
|
end
|
|
|
|
function M.is_visible(opts)
|
|
if opts and opts.tabpage then
|
|
if M.View.tabpages[opts.tabpage] == nil then
|
|
return false
|
|
end
|
|
local winnr = M.View.tabpages[opts.tabpage].winnr
|
|
return winnr and vim.api.nvim_win_is_valid(winnr)
|
|
end
|
|
|
|
if opts and opts.any_tabpage then
|
|
for _, v in pairs(M.View.tabpages) do
|
|
if v.winnr and vim.api.nvim_win_is_valid(v.winnr) then
|
|
return true
|
|
end
|
|
end
|
|
return false
|
|
end
|
|
|
|
return M.get_winnr() ~= nil and vim.api.nvim_win_is_valid(M.get_winnr())
|
|
end
|
|
|
|
function M.set_cursor(opts)
|
|
if M.is_visible() then
|
|
pcall(vim.api.nvim_win_set_cursor, M.get_winnr(), opts)
|
|
end
|
|
end
|
|
|
|
function M.focus(winnr, open_if_closed)
|
|
local wnr = winnr or M.get_winnr()
|
|
|
|
if vim.api.nvim_win_get_tabpage(wnr or 0) ~= vim.api.nvim_win_get_tabpage(0) then
|
|
M.close()
|
|
M.open()
|
|
wnr = M.get_winnr()
|
|
elseif open_if_closed and not M.is_visible() then
|
|
M.open()
|
|
end
|
|
|
|
vim.api.nvim_set_current_win(wnr)
|
|
end
|
|
|
|
--- Restores the state of a NvimTree window if it was initialized before.
|
|
function M.restore_tab_state()
|
|
local tabpage = vim.api.nvim_get_current_tabpage()
|
|
M.set_cursor(M.View.cursors[tabpage])
|
|
end
|
|
|
|
--- Returns the window number for nvim-tree within the tabpage specified
|
|
---@param tabpage number: (optional) the number of the chosen tabpage. Defaults to current tabpage.
|
|
---@return number
|
|
function M.get_winnr(tabpage)
|
|
tabpage = tabpage or vim.api.nvim_get_current_tabpage()
|
|
local tabinfo = M.View.tabpages[tabpage]
|
|
if tabinfo ~= nil then
|
|
return tabinfo.winnr
|
|
end
|
|
end
|
|
|
|
--- Returns the current nvim tree bufnr
|
|
---@return number
|
|
function M.get_bufnr()
|
|
return BUFNR_PER_TAB[vim.api.nvim_get_current_tabpage()]
|
|
end
|
|
|
|
--- Checks if nvim-tree is displaying the help ui within the tabpage specified
|
|
---@param tabpage number: (optional) the number of the chosen tabpage. Defaults to current tabpage.
|
|
---@return number
|
|
function M.is_help_ui(tabpage)
|
|
tabpage = tabpage or vim.api.nvim_get_current_tabpage()
|
|
local tabinfo = M.View.tabpages[tabpage]
|
|
if tabinfo ~= nil then
|
|
return tabinfo.help
|
|
end
|
|
end
|
|
|
|
function M.toggle_help(tabpage)
|
|
tabpage = tabpage or vim.api.nvim_get_current_tabpage()
|
|
M.View.tabpages[tabpage].help = not M.View.tabpages[tabpage].help
|
|
end
|
|
|
|
function M.is_buf_valid(bufnr)
|
|
return bufnr and vim.api.nvim_buf_is_valid(bufnr) and vim.api.nvim_buf_is_loaded(bufnr)
|
|
end
|
|
|
|
function M._prevent_buffer_override()
|
|
local view_winnr = M.get_winnr()
|
|
local view_bufnr = M.get_bufnr()
|
|
|
|
-- need to schedule to let the new buffer populate the window
|
|
-- because this event needs to be run on bufWipeout.
|
|
-- Otherwise the curwin/curbuf would match the view buffer and the view window.
|
|
vim.schedule(function()
|
|
local curwin = vim.api.nvim_get_current_win()
|
|
local curwinconfig = vim.api.nvim_win_get_config(curwin)
|
|
local curbuf = vim.api.nvim_win_get_buf(curwin)
|
|
local bufname = vim.api.nvim_buf_get_name(curbuf)
|
|
|
|
if not bufname:match "NvimTree" then
|
|
for i, tabpage in ipairs(M.View.tabpages) do
|
|
if tabpage.winnr == view_winnr then
|
|
M.View.tabpages[i] = nil
|
|
break
|
|
end
|
|
end
|
|
end
|
|
if curwin ~= view_winnr or bufname == "" or curbuf == view_bufnr then
|
|
return
|
|
end
|
|
|
|
-- patch to avoid the overriding window to be fixed in size
|
|
-- might need a better patch
|
|
vim.cmd "setlocal nowinfixwidth"
|
|
vim.cmd "setlocal nowinfixheight"
|
|
M.open { focus_tree = false }
|
|
require("nvim-tree.renderer").draw()
|
|
pcall(vim.api.nvim_win_close, curwin, { force = true })
|
|
|
|
-- to handle opening a file using :e when nvim-tree is on floating mode
|
|
-- falling back to the current window instead of creating a new one
|
|
if curwinconfig.relative ~= "" then
|
|
require("nvim-tree.actions.node.open-file").fn("edit_in_place", bufname)
|
|
else
|
|
require("nvim-tree.actions.node.open-file").fn("edit", bufname)
|
|
end
|
|
end)
|
|
end
|
|
|
|
function M.is_root_folder_visible(cwd)
|
|
return cwd ~= "/" and not M.View.hide_root_folder
|
|
end
|
|
|
|
-- used on ColorScheme event
|
|
function M.reset_winhl()
|
|
if M.get_winnr() and vim.api.nvim_win_is_valid(M.get_winnr()) then
|
|
vim.wo[M.get_winnr()].winhl = M.View.winopts.winhl
|
|
end
|
|
end
|
|
|
|
function M.setup(opts)
|
|
local options = opts.view or {}
|
|
M.View.adaptive_size = options.adaptive_size
|
|
M.View.centralize_selection = options.centralize_selection
|
|
M.View.side = (options.side == "right") and "right" or "left"
|
|
M.View.width = options.width
|
|
M.View.height = options.height
|
|
M.View.initial_width = get_size()
|
|
M.View.hide_root_folder = options.hide_root_folder
|
|
M.View.tab = opts.tab
|
|
M.View.preserve_window_proportions = options.preserve_window_proportions
|
|
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
|
|
end
|
|
|
|
return M
|