From 7a9614f6752dc9bfce61b1100a88796b48b8974d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Thu, 7 Aug 2025 00:06:09 +0200 Subject: [PATCH] feat(nvim): dap bindings for stepping over and out --- .config/nvim/lua/plugins/extras/dap/core-extended.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/nvim/lua/plugins/extras/dap/core-extended.lua b/.config/nvim/lua/plugins/extras/dap/core-extended.lua index 2ca8f789..dfdd7c35 100644 --- a/.config/nvim/lua/plugins/extras/dap/core-extended.lua +++ b/.config/nvim/lua/plugins/extras/dap/core-extended.lua @@ -28,6 +28,8 @@ return { }, -- stylua: ignore keys = { + { prefix .. "O", function() require("dap").step_out() end, desc = "Debug: Step out" }, + { prefix .. "o", function() require("dap").step_over() end, desc = "Debug: Step over" }, { "", function() require("dap").continue() end, desc = "Debug: Continue" }, { "", function() require("dap").step_over() end, desc = "Debug: Step over" }, { "", function() require("dap").step_into() end, desc = "Debug: Step into" },