From 398616cfcddfb9dfa254ccaa01ea8f516be712f3 Mon Sep 17 00:00:00 2001 From: bridge4 <s.abdulalhash@gmail.com> Date: Sat, 29 Mar 2025 19:13:47 +0300 Subject: [PATCH] stashing --- init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/init.lua b/init.lua index f297ff6a..ebe5c707 100644 --- a/init.lua +++ b/init.lua @@ -1235,6 +1235,7 @@ require('lazy').setup({ keys = { { "<leader>dB", function() require("dap").set_breakpoint(vim.fn.input('Breakpoint condition: ')) end, desc = "Breakpoint Condition" }, { "<F9>", function() require("dap").toggle_breakpoint() end, desc = "Toggle Breakpoint" }, + { "<C-F9>", function() require("dap").clear_breakpoints() end, desc = "Clear All Breakpoints" }, { "<F5>", function() require("dap").continue() end, desc = "Run/Continue" }, { "<leader>da", function() require("dap").continue({ before = get_args }) end, desc = "Run with Args" }, { "<leader>dC", function() require("dap").run_to_cursor() end, desc = "Run to Cursor" },