Change keybinding of debug stepping to f-keys

This commit is contained in:
Martin Lasson 2025-04-11 19:57:19 +02:00
parent c2b511d01e
commit 84f210485a

View file

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