Change keybinding of debug stepping to f-keys
This commit is contained in:
parent
c2b511d01e
commit
84f210485a
1 changed files with 3 additions and 3 deletions
|
|
@ -47,9 +47,9 @@ return {
|
||||||
local breakpoint_api = require("persistent-breakpoints.api")
|
local breakpoint_api = require("persistent-breakpoints.api")
|
||||||
|
|
||||||
local stepping_keymaps = {
|
local stepping_keymaps = {
|
||||||
{ "m", function() dap.step_out() end },
|
{ "<F6>", function() dap.step_out() end },
|
||||||
{ "n", function() dap.step_over() end },
|
{ "<F7>", function() dap.step_over() end },
|
||||||
{ "i", function() dap.step_into() end },
|
{ "<F9>", function() dap.step_into() end },
|
||||||
{
|
{
|
||||||
"<leader>dc",
|
"<leader>dc",
|
||||||
function()
|
function()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue