fix: relative path (#2023)

This commit is contained in:
yetone
2025-05-09 19:57:25 +08:00
committed by GitHub
parent 56576c2481
commit 8f96d4319d
6 changed files with 40 additions and 23 deletions

View File

@@ -39,13 +39,11 @@ function M.exists(filepath)
return stat ~= nil
end
function M.is_in_cwd(filepath)
local cwd = vim.fn.getcwd()
-- Make both paths absolute for comparison
function M.is_in_project(filepath)
local Root = require("avante.utils.root")
local project_root = Root.get()
local abs_filepath = vim.fn.fnamemodify(filepath, ":p")
local abs_cwd = vim.fn.fnamemodify(cwd, ":p")
-- Check if filepath starts with cwd
return abs_filepath:sub(1, #abs_cwd) == abs_cwd
return abs_filepath:sub(1, #project_root) == project_root
end
function M.get_file_icon(filepath)

View File

@@ -580,9 +580,8 @@ function M.remove_indentation(code)
end
function M.relative_path(absolute)
local relative = fn.fnamemodify(absolute, ":.")
if string.sub(relative, 0, 1) == "/" then return fn.fnamemodify(absolute, ":t") end
return relative
local project_root = M.get_project_root()
return M.make_relative_path(absolute, project_root)
end
function M.get_doc()
@@ -888,7 +887,7 @@ function M.join_paths(...)
result = result .. path
::continue::
end
return result
return M.norm(result)
end
function M.path_exists(path) return vim.loop.fs_stat(path) ~= nil end
@@ -939,9 +938,9 @@ end
function M.open_buffer(path, set_current_buf)
if set_current_buf == nil then set_current_buf = true end
path = vim.fn.fnamemodify(path, ":p")
local abs_path = M.join_paths(M.get_project_root(), path)
local bufnr = vim.fn.bufnr(path, true)
local bufnr = vim.fn.bufnr(abs_path, true)
vim.fn.bufload(bufnr)
if set_current_buf then vim.api.nvim_set_current_buf(bufnr) end
@@ -1043,7 +1042,7 @@ end
function M.uniform_path(path)
if type(path) ~= "string" then path = tostring(path) end
if not M.file.is_in_cwd(path) then return path end
if not M.file.is_in_project(path) then return path end
local project_root = M.get_project_root()
local abs_path = M.is_absolute_path(path) and path or M.join_paths(project_root, path)
local relative_path = M.make_relative_path(abs_path, project_root)
@@ -1070,8 +1069,9 @@ end
---@return string[]|nil lines
---@return string|nil error
function M.read_file_from_buf_or_disk(filepath)
local abs_path = M.join_paths(M.get_project_root(), filepath)
--- Lookup if the file is loaded in a buffer
local bufnr = vim.fn.bufnr(filepath)
local bufnr = vim.fn.bufnr(abs_path)
if bufnr ~= -1 and vim.api.nvim_buf_is_loaded(bufnr) then
-- If buffer exists and is loaded, get buffer content
local lines = vim.api.nvim_buf_get_lines(bufnr, 0, -1, false)
@@ -1079,7 +1079,7 @@ function M.read_file_from_buf_or_disk(filepath)
end
-- Fallback: read file from disk
local file, open_err = io.open(filepath, "r")
local file, open_err = io.open(abs_path, "r")
if file then
local content = file:read("*all")
file:close()

View File

@@ -56,7 +56,29 @@ function M.detectors.pattern(buf, patterns)
return pattern and { vim.fs.dirname(pattern) } or {}
end
function M.bufpath(buf) return M.realpath(vim.api.nvim_buf_get_name(assert(buf))) end
function M.bufpath(buf)
if buf == nil or type(buf) ~= "number" then
-- TODO: Consider logging this unexpected buffer type or nil value if assert was bypassed.
vim.notify("avante: M.bufpath received invalid buffer: " .. tostring(buf), vim.log.levels.WARN)
return nil
end
local buf_name_str
local success, result = pcall(vim.api.nvim_buf_get_name, buf)
if not success then
-- TODO: Consider logging the actual error from pcall.
vim.notify(
"avante: nvim_buf_get_name failed for buffer " .. tostring(buf) .. ": " .. tostring(result),
vim.log.levels.WARN
)
return nil
end
buf_name_str = result
-- M.realpath will handle buf_name_str == "" (empty string for unnamed buffer) correctly, returning nil.
return M.realpath(buf_name_str)
end
function M.cwd() return M.realpath(vim.uv.cwd()) or "" end