From 1d47a8229759c3fec1a33306c95804a0dfe62b38 Mon Sep 17 00:00:00 2001 From: Thomas Lazarus Date: Mon, 10 Nov 2025 21:04:28 -0600 Subject: [PATCH] Switch to using arrow keys --- lua/kickstart/plugins/debug.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index b0819502..1840137e 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -17,28 +17,28 @@ return { keys = { -- Basic debugging keymaps, feel free to change to your liking! { - '', + '', function() require('dap').continue() end, desc = 'Debug: Start/Continue', }, { - '', + '', function() require('dap').step_into() end, desc = 'Debug: Step Into', }, { - '', + '', function() require('dap').step_over() end, desc = 'Debug: Step Over', }, { - '', + '', function() require('dap').step_out() end, @@ -60,7 +60,7 @@ return { }, -- Toggle to see last session result. Without this, you can't see session output in case of unhandled exception. { - '', + '', function() require('dapui').toggle() end,