Updates keybindings
This commit is contained in:
parent
37bbcda810
commit
65cfd130eb
|
|
@ -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!
|
||||||
{
|
{
|
||||||
'<F5>',
|
'<F6>',
|
||||||
function()
|
function()
|
||||||
require('dap').continue()
|
require('dap').continue()
|
||||||
end,
|
end,
|
||||||
desc = 'Debug: Start/Continue',
|
desc = 'Debug: Start/Continue',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<F1>',
|
'<F7>',
|
||||||
function()
|
function()
|
||||||
require('dap').step_into()
|
require('dap').step_into()
|
||||||
end,
|
end,
|
||||||
desc = 'Debug: Step Into',
|
desc = 'Debug: Step Into',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<F2>',
|
'<F8>',
|
||||||
function()
|
function()
|
||||||
require('dap').step_over()
|
require('dap').step_over()
|
||||||
end,
|
end,
|
||||||
desc = 'Debug: Step Over',
|
desc = 'Debug: Step Over',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'<F3>',
|
'<F9>',
|
||||||
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.
|
||||||
{
|
{
|
||||||
'<F7>',
|
'<F10>',
|
||||||
function()
|
function()
|
||||||
require('dapui').toggle()
|
require('dapui').toggle()
|
||||||
end,
|
end,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue