update debug

This commit is contained in:
asep komarudin 2023-01-18 06:52:41 +07:00
parent d0298906e6
commit e42d5cbc43
5 changed files with 61 additions and 2 deletions

View file

@ -226,6 +226,27 @@ local mappings = {
"Run MVN",
},
},
D = {
name = "Debug",
b = {
function()
require("dap").toggle_breakpoint()
end,
"Toggle Breakpoint",
},
B = {
function()
require("dap").clear_breakpoints()
end,
"Clear Breakpoints",
},
c = {
function()
require("dap").continue()
end,
"Start/Continue",
},
},
}
which_key.setup(setup)