This commit is contained in:
2025-01-18 15:25:27 +03:00
parent 33383e5fbf
commit 720c645a8c
4 changed files with 15 additions and 9 deletions

View File

@ -39,8 +39,8 @@ map("n", "<S-tab>", "<Cmd>BufferPrevious<CR>", { desc = "Previous tab" })
-- dap
map("n", "<leader>bb", dap.toggle_breakpoint, { desc = "Toggle breakpoint" })
map("n", "<F5>", dap.step_into, { desc = "Step into" })
map("n", "<F6>", dap.step_over, { desc = "Step over" })
map("n", "<F5>", dap.step_over, { desc = "Step over" })
map("n", "<F6>", dap.step_into, { desc = "Step into" })
map("n", "<F8>", dap.continue, { desc = "Continue" })
-- nvterm

View File

@ -20,7 +20,7 @@ return {
{
name = "󰫧 Eval",
cmd = dapui.eval,
cmd = dapui.eval, -- require('dap.ui.widgets').hover()
},
{
@ -33,14 +33,14 @@ return {
{ name = "separator" },
{
name = "󰆹 Step into",
cmd = dap.step_into,
name = " Step over",
cmd = dap.step_over,
rtxt = "<F5>",
},
{
name = " Step over",
cmd = dap.step_over,
name = "󰆹 Step into",
cmd = dap.step_into,
rtxt = "<F6>",
},