Updates keybindings

This commit is contained in:
Thomas Lazarus 2025-11-10 20:18:59 -06:00
parent 37bbcda810
commit 65cfd130eb
No known key found for this signature in database
1 changed files with 5 additions and 5 deletions

View File

@ -17,28 +17,28 @@ return {
keys = {
-- Basic debugging keymaps, feel free to change to your liking!
{
'<F5>',
'<F6>',
function()
require('dap').continue()
end,
desc = 'Debug: Start/Continue',
},
{
'<F1>',
'<F7>',
function()
require('dap').step_into()
end,
desc = 'Debug: Step Into',
},
{
'<F2>',
'<F8>',
function()
require('dap').step_over()
end,
desc = 'Debug: Step Over',
},
{
'<F3>',
'<F9>',
function()
require('dap').step_out()
end,
@ -60,7 +60,7 @@ return {
},
-- Toggle to see last session result. Without this, you can't see session output in case of unhandled exception.
{
'<F7>',
'<F10>',
function()
require('dapui').toggle()
end,