Skip to content

Commit

Permalink
replace plenary.path with vim.uv functions
Browse files Browse the repository at this point in the history
  • Loading branch information
jxl committed Oct 5, 2024
1 parent 9959cb5 commit 36c06fd
Showing 1 changed file with 33 additions and 11 deletions.
44 changes: 33 additions & 11 deletions lua/dap-go.lua
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,25 @@ local function filtered_pick_process()
return require("dap.utils").pick_process(opts)
end

local get_parent = (function()
local sep = "\\"

local os = string.lower(jit.os)
if os ~= "windows" then
sep = "/"
end

local pattern = string.format("^(.+)%s[^%s]+", sep, sep)

return function(abs_path)
local parent = abs_path:match(pattern)
if parent ~= nil and not parent:find(sep) then
return parent .. sep
end
return parent
end
end)()

local function setup_delve_adapter(dap, config)
local args = { "dap", "-l", "127.0.0.1:" .. config.delve.port }
vim.list_extend(args, config.delve.args)
Expand All @@ -82,17 +101,20 @@ local function setup_delve_adapter(dap, config)

dap.adapters.go = function(callback, client_config)
if client_config.program ~= nil then
local program = client_config.program
local path = require("plenary.path")
local program_path = path:new(program)
local program_absolute = program_path:absolute()

client_config.program = program_absolute

if program_path:is_dir() then
delve_config.executable.cwd = program_absolute
elseif program:match("^.+(%..+)$") == ".go" then -- file extension is '.go'
delve_config.executable.cwd = tostring(program_path:parent())
local program_absolute = vim.uv.fs_realpath(client_config.program)

if program_absolute ~= nil then
client_config.program = program_absolute

local is_dir = vim.uv.fs_stat(program_absolute).type == "directory"
if is_dir then
delve_config.executable.cwd = program_absolute
elseif program_absolute:sub(-3) == ".go" then -- file extension is '.go'
local parent = get_parent(program_absolute)
if parent ~= nil then
delve_config.executable.cwd = parent
end
end
end
end

Expand Down

0 comments on commit 36c06fd

Please sign in to comment.