From 3d901a3583e30cae9de4e08a1fcc64d3ceb5c123 Mon Sep 17 00:00:00 2001 From: orip Date: Fri, 11 Jul 2025 18:38:30 +0300 Subject: [PATCH] Update changes to https://github.com/nvim-lua/kickstart.nvim/pull/1534 --- 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 ecfb28fb..6c5d9b86 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -36,8 +36,8 @@ return { { 'B', function() - require 'dap.protocol' local dap = require 'dap' + -- Search for an existing breakpoint on this line in this buffer ---@return dap.SourceBreakpoint bp that was either found, or an empty placeholder local function find_bp() @@ -48,6 +48,7 @@ return { return candidate end end + return { condition = '', logMessage = '', hitCondition = '', line = vim.fn.line '.' } end @@ -80,7 +81,6 @@ return { -- User cancelled the selection return end - props[choice].setter(vim.fn.input { prompt = ('[%s] '):format(choice), default = props[choice].value,