Refactor debugging to use 'q' for quit instead of 't' for terminate

This commit is contained in:
Daniel McKnight 2025-06-16 08:55:27 -07:00
parent b9d65bd05a
commit c403d929a1

View file

@ -16,7 +16,7 @@ return {
vim.keymap.set("i", "<F10>", dap.step_over)
vim.keymap.set("n", "<F11>", dap.step_into)
vim.keymap.set("i", "<F11>", dap.step_into)
vim.keymap.set("n", "<Leader>dt", dap.terminate, { desc = "Terminate Session" })
vim.keymap.set("n", "<Leader>dq", dap.terminate, { desc = "Terminate Session" })
end,
},
{
@ -50,6 +50,9 @@ return {
},
})
require("dap-python").setup("uv")
require("dap-python").test_runner = "pytest"
vim.keymap.set("n", "<Leader>dt", require("dap-python").test_method, { desc = "Debug Test Method" })
local dap = require("dap")
dap.listeners.after.event_initialized["dapui_config"] = function()
@ -94,7 +97,7 @@ return {
},
options = {
on_venv_activate_callback = function()
local python_path = require("venv-selector").python()
local python_path = require("venv-selector").python()
--print("Active python: " .. python_path)
vim.env.PYTHONPATH = python_path
end,