* refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings, type gymnastics * refactor(#2731): resolve warnings, type gymnastics * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): handle cwd unavailable when opening * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings, type gymnastics * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): style * refactor(#2731): add _meta library, explicit check disables * refactor(#2731): add lua-language-server manual install instructions * refactor(#2731): resolve warnings * refactor(#2731): explicitly set all diagnostics, reduce deprecated to hint * Revert "refactor(#2731): resolve warnings" This reverts commit9c0526b7b0. * Revert "refactor(#2731): resolve warnings" This reverts commitf534fbc606. * refactor(#2731): handle directory unavailable when deleting * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): resolve warnings * refactor(#2731): handle directory unavailable when creating explorer * refactor(#2731): add all nvim lua libraries * refactor(#2731): resolve warnings * refactor(#2731): remove vim global * refactor(#2731): disable deprecated until we have a 0.9->0.10 story
51 lines
1.2 KiB
Lua
51 lines
1.2 KiB
Lua
local M = {}
|
|
|
|
---@type table<string, boolean> record of which file is modified
|
|
M._modified = {}
|
|
|
|
---refresh M._modified
|
|
function M.reload_modified()
|
|
M._modified = {}
|
|
local bufs = vim.fn.getbufinfo { bufmodified = 1, buflisted = 1 }
|
|
for _, buf in pairs(bufs) do
|
|
local path = buf.name
|
|
if path ~= "" then -- not a [No Name] buffer
|
|
-- mark all the parent as modified as well
|
|
while
|
|
M._modified[path] ~= true
|
|
-- no need to keep going if already recorded
|
|
-- This also prevents an infinite loop
|
|
do
|
|
M._modified[path] = true
|
|
path = vim.fn.fnamemodify(path, ":h")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
---@param node table
|
|
---@return boolean
|
|
function M.is_modified(node)
|
|
return node
|
|
and M.config.modified.enable
|
|
and M._modified[node.absolute_path]
|
|
and (not node.nodes or M.config.modified.show_on_dirs)
|
|
and (not node.open or M.config.modified.show_on_open_dirs)
|
|
end
|
|
|
|
---A buffer exists for the node's absolute path
|
|
---@param node table
|
|
---@return boolean
|
|
function M.is_opened(node)
|
|
return node and vim.fn.bufloaded(node.absolute_path) > 0
|
|
end
|
|
|
|
---@param opts table
|
|
function M.setup(opts)
|
|
M.config = {
|
|
modified = opts.modified,
|
|
}
|
|
end
|
|
|
|
return M
|