Files
nvim-config/lua/plugins/debugging.lua
T

292 lines
6.6 KiB
Lua
Raw Normal View History

2025-01-17 12:32:12 -06:00
return {
2025-01-30 00:12:12 -06:00
"mfussenegger/nvim-dap",
dependencies = {
"rcarriga/nvim-dap-ui",
"nvim-neotest/nvim-nio",
},
config = function()
local dap = require("dap")
local dapui = require("dapui")
2025-01-17 12:32:12 -06:00
2025-01-30 00:12:12 -06:00
dapui.setup({
controls = {
element = "repl",
enabled = true,
icons = {
disconnect = "",
pause = "",
play = "",
run_last = "",
step_back = "",
step_into = "",
step_out = "",
step_over = "",
terminate = "",
},
},
element_mappings = {},
expand_lines = true,
floating = {
border = "rounded",
mappings = {
close = { "q", "<Esc>" },
},
},
force_buffers = true,
icons = {
collapsed = "",
current_frame = "",
expanded = "",
},
layouts = {
{
elements = {
{
id = "scopes",
size = 0.25,
},
{
id = "breakpoints",
size = 0.25,
},
{
id = "stacks",
size = 0.25,
},
{
id = "watches",
size = 0.25,
},
},
position = "right",
size = 50,
},
{
elements = {
{
id = "repl",
size = 0.5,
},
{
id = "console",
size = 0.5,
},
},
position = "bottom",
size = 10,
},
},
mappings = {
edit = "e",
expand = { "<CR>", "<2-LeftMouse>" },
open = "o",
remove = "d",
repl = "r",
toggle = "t",
},
render = {
indent = 1,
max_value_lines = 100,
},
})
2025-01-17 12:32:12 -06:00
2025-01-30 00:12:12 -06:00
for _, adapterType in ipairs({ "node", "chrome", "msedge" }) do
local pwaType = "pwa-" .. adapterType
2025-01-17 12:32:12 -06:00
2025-01-30 00:12:12 -06:00
dap.adapters[pwaType] = {
type = "server",
host = "localhost",
port = "${port}",
executable = {
command = "node",
args = {
vim.fn.stdpath("data") .. "/mason/packages/js-debug-adapter/js-debug/src/dapDebugServer.js",
"${port}",
},
},
}
2025-01-29 23:10:01 -06:00
2025-01-30 00:12:12 -06:00
-- this allow us to handle launch.json configurations
-- which specify type as "node" or "chrome" or "msedge"
dap.adapters[adapterType] = function(cb, config)
local nativeAdapter = dap.adapters[pwaType]
2025-01-29 23:10:01 -06:00
2025-01-30 00:12:12 -06:00
config.type = pwaType
2025-01-29 23:10:01 -06:00
2025-01-30 00:12:12 -06:00
if type(nativeAdapter) == "function" then
nativeAdapter(cb, config)
else
cb(nativeAdapter)
end
end
end
2025-01-29 23:10:01 -06:00
2025-01-30 00:12:12 -06:00
local enter_launch_url = function()
local co = coroutine.running()
return coroutine.create(function()
vim.ui.input({ prompt = "Enter URL: ", default = "http://localhost:" }, function(url)
if url == nil or url == "" then
return
else
coroutine.resume(co, url)
end
end)
end)
end
2025-01-29 23:10:01 -06:00
2025-01-30 00:12:12 -06:00
for _, language in ipairs({ "typescript", "javascript", "typescriptreact", "javascriptreact", "vue" }) do
dap.configurations[language] = {
{
type = "pwa-node",
request = "launch",
name = "Launch file using Node.js (nvim-dap)",
program = "${file}",
cwd = "${workspaceFolder}",
},
{
type = "pwa-node",
request = "attach",
name = "Attach to process using Node.js (nvim-dap)",
processId = require("dap.utils").pick_process,
cwd = "${workspaceFolder}",
},
-- requires ts-node to be installed globally or locally
{
type = "pwa-node",
request = "launch",
name = "Launch file using Node.js with ts-node/register (nvim-dap)",
program = "${file}",
cwd = "${workspaceFolder}",
runtimeArgs = { "-r", "ts-node/register" },
},
{
type = "pwa-chrome",
request = "launch",
name = "Launch Chrome (nvim-dap)",
url = enter_launch_url,
webRoot = "${workspaceFolder}",
sourceMaps = true,
},
{
type = "pwa-msedge",
request = "launch",
name = "Launch Edge (nvim-dap)",
url = enter_launch_url,
webRoot = "${workspaceFolder}",
sourceMaps = true,
},
}
end
2025-01-17 12:32:12 -06:00
2025-01-30 00:12:12 -06:00
dap.adapters.coreclr = {
type = "executable",
command = "C:/Users/sfree/AppData/Local/nvim-data/mason/packages/netcoredbg/netcoredbg/netcoredbg.exe",
args = { "--interpreter=vscode" },
}
2025-01-17 13:43:53 -06:00
2025-01-30 00:12:12 -06:00
local dotnet_build_project = function()
local default_path = vim.fn.getcwd() .. "/"
2025-01-25 16:44:54 -06:00
2025-01-30 00:12:12 -06:00
if vim.g["dotnet_last_proj_path"] ~= nil then
default_path = vim.g["dotnet_last_proj_path"]
end
2025-01-25 16:44:54 -06:00
2025-01-30 00:12:12 -06:00
local path = vim.fn.input("Path to your *proj file", default_path, "file")
2025-01-25 16:44:54 -06:00
2025-01-30 00:12:12 -06:00
vim.g["dotnet_last_proj_path"] = path
2025-01-25 16:44:54 -06:00
2025-09-30 09:34:25 -05:00
local cmd = "dotnet build -c Debug " .. path .. ""
2025-01-25 16:44:54 -06:00
2025-01-30 00:12:12 -06:00
print("")
print("Cmd to execute: " .. cmd)
2025-01-25 16:44:54 -06:00
2025-01-30 00:12:12 -06:00
local f = os.execute(cmd)
2025-01-25 16:44:54 -06:00
2025-01-30 00:12:12 -06:00
if f == 0 then
print("\nBuild: ✔️ ")
else
print("\nBuild: ❌ (code: " .. f .. ")")
end
end
2025-01-25 16:44:54 -06:00
2025-01-30 00:12:12 -06:00
local dotnet_get_dll_path = function()
local request = function()
return vim.fn.input("Path to dll to debug: ", vim.fn.getcwd() .. "/bin/Debug/", "file")
end
2025-01-25 16:44:54 -06:00
2025-01-30 00:12:12 -06:00
if vim.g["dotnet_last_dll_path"] == nil then
vim.g["dotnet_last_dll_path"] = request()
else
if
vim.fn.confirm("Change the path to dll?\n" .. vim.g["dotnet_last_dll_path"], "&yes\n&no", 2) == 1
then
vim.g["dotnet_last_dll_path"] = request()
end
end
2025-01-25 16:44:54 -06:00
2025-01-30 00:12:12 -06:00
return vim.g["dotnet_last_dll_path"]
end
2025-01-25 16:44:54 -06:00
2025-01-30 00:12:12 -06:00
dap.configurations.cs = {
{
type = "coreclr",
name = "Launch - coreclr (nvim-dap)",
request = "launch",
program = function()
if vim.fn.confirm("Rebuild first?", "&yes\n&no", 2) == 1 then
dotnet_build_project()
end
2025-01-25 16:44:54 -06:00
2025-01-30 00:12:12 -06:00
return dotnet_get_dll_path()
end,
},
}
2025-01-17 13:43:53 -06:00
local convertArgStringToArray = function(config)
local c = {}
for k, v in pairs(vim.deepcopy(config)) do
if k == "args" and type(v) == "string" then
c[k] = require("dap.utils").splitstr(v)
else
c[k] = v
end
end
return c
end
for key, _ in pairs(dap.configurations) do
dap.listeners.on_config[key] = convertArgStringToArray
end
2025-01-30 00:12:12 -06:00
dap.listeners.before.attach.dapui_config = function()
dapui.open()
end
dap.listeners.before.launch.dapui_config = function()
dapui.open()
end
dap.listeners.before.event_terminated.dapui_config = function()
dapui.close()
end
dap.listeners.before.event_exited.dapui_config = function()
dapui.close()
end
2025-01-17 13:43:53 -06:00
2025-01-30 00:12:12 -06:00
vim.keymap.set("n", "<Leader>dt", dap.toggle_breakpoint, { desc = "Toggle breakpoint" })
vim.keymap.set("n", "<Leader>dbc", dap.clear_breakpoints, { desc = "Clear all breakpoints" })
vim.keymap.set("n", "<Leader>dbl", dap.list_breakpoints, { desc = "Clear all breakpoints" })
2025-01-30 00:12:12 -06:00
local continue = function()
-- support for vscode launch.json is partial.
-- not all configuration options and features supported
if vim.fn.filereadable(".vscode/launch.json") then
require("dap.ext.vscode").load_launchjs()
end
dap.continue()
end
2025-01-30 00:12:12 -06:00
vim.keymap.set("n", "<Leader>dc", continue, { desc = "Continue" })
end,
2025-01-17 12:32:12 -06:00
}