Change keybindings for debug stepping

This commit is contained in:
Martin Larsson 2026-03-06 16:40:47 +01:00
parent 326e89aa8b
commit 04b425d384

View file

@ -45,9 +45,9 @@ return {
local breakpoint_api = require("persistent-breakpoints.api") local breakpoint_api = require("persistent-breakpoints.api")
local stepping_keymaps = { local stepping_keymaps = {
{ "<F6>", function() dap.step_out() end }, { "<F10>", function() dap.step_over() end },
{ "<F7>", function() dap.step_over() end }, { "<F11>", function() dap.step_into() end },
{ "<F9>", function() dap.step_into() end }, { "<F12>", function() dap.step_out() end },
{ {
"<leader>dc", "<leader>dc",
function() function()