1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 15:50:03 +08:00
SpaceVim/bundle/neo-tree.nvim/lua/neo-tree/sources/buffers/init.lua

192 lines
5.0 KiB
Lua
Raw Normal View History

2023-05-30 21:09:18 +08:00
--This file should have all functions that are in the public api and either set
--or read the state of this source.
local vim = vim
local utils = require("neo-tree.utils")
local renderer = require("neo-tree.ui.renderer")
local items = require("neo-tree.sources.buffers.lib.items")
local events = require("neo-tree.events")
local manager = require("neo-tree.sources.manager")
local git = require("neo-tree.git")
local M = {
name = "buffers",
display_name = "  Buffers "
}
local wrap = function(func)
return utils.wrap(func, M.name)
end
local get_state = function()
return manager.get_state(M.name)
end
local follow_internal = function()
if vim.bo.filetype == "neo-tree" or vim.bo.filetype == "neo-tree-popup" then
return
end
local bufnr = vim.api.nvim_get_current_buf()
local path_to_reveal = manager.get_path_to_reveal(true) or tostring(bufnr)
local state = get_state()
if state.current_position == "float" then
return false
end
if not state.path then
return false
end
local window_exists = renderer.window_exists(state)
if window_exists then
local node = state.tree and state.tree:get_node()
if node then
if node:get_id() == path_to_reveal then
-- already focused
return false
end
end
renderer.focus_node(state, path_to_reveal, true)
end
end
M.follow = function()
if vim.fn.bufname(0) == "COMMIT_EDITMSG" then
return false
end
utils.debounce("neo-tree-buffer-follow", function()
return follow_internal()
end, 100, utils.debounce_strategy.CALL_LAST_ONLY)
end
local buffers_changed_internal = function()
for _, tabid in ipairs(vim.api.nvim_list_tabpages()) do
local state = manager.get_state(M.name, tabid)
if state.path and renderer.window_exists(state) then
items.get_opened_buffers(state)
if state.follow_current_file then
follow_internal()
end
end
end
end
---Calld by autocmd when any buffer is open, closed, renamed, etc.
M.buffers_changed = function()
utils.debounce(
"buffers_changed",
buffers_changed_internal,
100,
utils.debounce_strategy.CALL_LAST_ONLY
)
end
---Navigate to the given path.
---@param path string Path to navigate to. If empty, will navigate to the cwd.
M.navigate = function(state, path, path_to_reveal)
state.dirty = false
local path_changed = false
if path == nil then
path = vim.fn.getcwd()
end
if path ~= state.path then
state.path = path
path_changed = true
end
if path_to_reveal then
renderer.position.set(state, path_to_reveal)
end
items.get_opened_buffers(state)
if path_changed and state.bind_to_cwd then
vim.api.nvim_command("tcd " .. path)
end
end
---Configures the plugin, should be called before the plugin is used.
---@param config table Configuration table containing any keys that the user
--wants to change from the defaults. May be empty to accept default values.
M.setup = function(config, global_config)
--Configure events for before_render
if config.before_render then
--convert to new event system
manager.subscribe(M.name, {
event = events.BEFORE_RENDER,
handler = function(state)
local this_state = get_state()
if state == this_state then
config.before_render(this_state)
end
end,
})
elseif global_config.enable_git_status then
manager.subscribe(M.name, {
event = events.BEFORE_RENDER,
handler = function(state)
local this_state = get_state()
if state == this_state then
state.git_status_lookup = git.status(state.git_base)
end
end,
})
manager.subscribe(M.name, {
event = events.GIT_EVENT,
handler = M.buffers_changed,
})
end
local refresh_events = {
events.VIM_BUFFER_ADDED,
events.VIM_BUFFER_DELETED,
}
if global_config.enable_refresh_on_write then
table.insert(refresh_events, events.VIM_BUFFER_CHANGED)
end
for _, e in ipairs(refresh_events) do
manager.subscribe(M.name, {
event = e,
handler = function(args)
if args.afile == "" or utils.is_real_file(args.afile) then
M.buffers_changed()
end
end,
})
end
if config.bind_to_cwd then
manager.subscribe(M.name, {
event = events.VIM_DIR_CHANGED,
handler = wrap(manager.dir_changed),
})
end
if global_config.enable_diagnostics then
manager.subscribe(M.name, {
event = events.VIM_DIAGNOSTIC_CHANGED,
handler = wrap(manager.diagnostics_changed),
})
end
--Configure event handlers for modified files
if global_config.enable_modified_markers then
manager.subscribe(M.name, {
event = events.VIM_BUFFER_MODIFIED_SET,
handler = wrap(manager.opened_buffers_changed),
})
end
-- Configure event handler for follow_current_file option
if config.follow_current_file then
manager.subscribe(M.name, {
event = events.VIM_BUFFER_ENTER,
handler = M.follow,
})
manager.subscribe(M.name, {
event = events.VIM_TERMINAL_ENTER,
handler = M.follow,
})
end
end
return M