Make debug keybind descriptions more consistent
This commit is contained in:
parent
8ac8c58a0e
commit
dad862573c
|
@ -59,14 +59,14 @@ return {
|
||||||
function()
|
function()
|
||||||
require('dap').toggle_breakpoint()
|
require('dap').toggle_breakpoint()
|
||||||
end,
|
end,
|
||||||
desc = 'Code Debug: Toggle Breakpoint',
|
desc = 'Debug: Toggle Breakpoint',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<leader>B',
|
'<leader>B',
|
||||||
function()
|
function()
|
||||||
require('dap').set_breakpoint(vim.fn.input 'Breakpoint condition: ')
|
require('dap').set_breakpoint(vim.fn.input 'Breakpoint condition: ')
|
||||||
end,
|
end,
|
||||||
desc = 'Code Debug: Set Breakpoint',
|
desc = 'Debug: Set Breakpoint',
|
||||||
},
|
},
|
||||||
-- Toggle to see last session result. Without this, you can't see session output in case of unhandled exception.
|
-- Toggle to see last session result. Without this, you can't see session output in case of unhandled exception.
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue