From dad862573cfb999295ab18945c9b0d4f5b98bda3 Mon Sep 17 00:00:00 2001 From: kaezrr <107052359+kaezrr@users.noreply.github.com> Date: Thu, 7 Nov 2024 10:35:35 +0530 Subject: [PATCH] Make debug keybind descriptions more consistent --- lua/kickstart/plugins/debug.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index 2f1c5aeb..753cb0ce 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -59,14 +59,14 @@ return { function() require('dap').toggle_breakpoint() end, - desc = 'Code Debug: Toggle Breakpoint', + desc = 'Debug: Toggle Breakpoint', }, { 'B', function() require('dap').set_breakpoint(vim.fn.input 'Breakpoint condition: ') end, - desc = 'Code Debug: Set Breakpoint', + desc = 'Debug: Set Breakpoint', }, -- Toggle to see last session result. Without this, you can't see session output in case of unhandled exception. {