Make debug keybind descriptions more consistent

This commit is contained in:
kaezrr 2024-11-07 10:35:35 +05:30 committed by GitHub
parent 8ac8c58a0e
commit dad862573c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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.
{ {