diff --git a/lua/core/plugin_config/whichkey.lua b/lua/core/plugin_config/whichkey.lua index 720390b..b661747 100644 --- a/lua/core/plugin_config/whichkey.lua +++ b/lua/core/plugin_config/whichkey.lua @@ -11,6 +11,7 @@ local keymap = { { "db", function() require('dap').toggle_breakpoint() end, desc = "toggle breakpoint" }, { "di", function() require('dap').step_into() end, desc = "step into" }, { "do", function() require('dap').step_over() end, desc = "step over" }, + { "dO", function() require('dap').step_out() end, desc = "step over" }, { "f", group = "find (telescope)" }, { "ff", "Telescope find_files", desc = "Find" }, { "fg", "Telescope live_grep", desc = "Grep" },