Skip to content

Commit 3d901a3

Browse files
committed
Update changes to nvim-lua#1534
1 parent edb018e commit 3d901a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/kickstart/plugins/debug.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ return {
3636
{
3737
'<leader>B',
3838
function()
39-
require 'dap.protocol'
4039
local dap = require 'dap'
40+
4141
-- Search for an existing breakpoint on this line in this buffer
4242
---@return dap.SourceBreakpoint bp that was either found, or an empty placeholder
4343
local function find_bp()
@@ -48,6 +48,7 @@ return {
4848
return candidate
4949
end
5050
end
51+
5152
return { condition = '', logMessage = '', hitCondition = '', line = vim.fn.line '.' }
5253
end
5354

@@ -80,7 +81,6 @@ return {
8081
-- User cancelled the selection
8182
return
8283
end
83-
8484
props[choice].setter(vim.fn.input {
8585
prompt = ('[%s] '):format(choice),
8686
default = props[choice].value,

0 commit comments

Comments
 (0)