Switch to using arrow keys

This commit is contained in:
Thomas Lazarus 2025-11-10 21:04:28 -06:00
parent 65cfd130eb
commit 1d47a82297
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 = { keys = {
-- Basic debugging keymaps, feel free to change to your liking! -- Basic debugging keymaps, feel free to change to your liking!
{ {
'<F6>', '<Up>',
function() function()
require('dap').continue() require('dap').continue()
end, end,
desc = 'Debug: Start/Continue', desc = 'Debug: Start/Continue',
}, },
{ {
'<F7>', '<Right>',
function() function()
require('dap').step_into() require('dap').step_into()
end, end,
desc = 'Debug: Step Into', desc = 'Debug: Step Into',
}, },
{ {
'<F8>', '<Down>',
function() function()
require('dap').step_over() require('dap').step_over()
end, end,
desc = 'Debug: Step Over', desc = 'Debug: Step Over',
}, },
{ {
'<F9>', '<Left>',
function() function()
require('dap').step_out() require('dap').step_out()
end, 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. -- Toggle to see last session result. Without this, you can't see session output in case of unhandled exception.
{ {
'<F10>', '<C-Down>',
function() function()
require('dapui').toggle() require('dapui').toggle()
end, end,