From bc31ee1faa8c7d5d7028cc18a28c6d346e787bb1 Mon Sep 17 00:00:00 2001 From: Brian Lehrer <661570+blehrer@users.noreply.github.com> Date: Fri, 4 Jul 2025 09:21:48 -0700 Subject: [PATCH] fix merge issue Co-authored-by: Ori Perry <48057913+oriori1703@users.noreply.github.com> --- lua/kickstart/plugins/debug.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index eab0a958..4fe9a5af 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -117,9 +117,10 @@ return { -- User cancelled the selection return end - props[prompt].setter(vim.fn.input { - prompt = ('[%s] '):format(prompt), - default = props[prompt].value, + props[choice].setter(vim.fn.input { + prompt = ('[%s] '):format(choice), + default = props[choice].value, + }) -- Set breakpoint for current line, with customizations (see h:dap.set_breakpoint())