We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42ae421 commit d4bb4c0Copy full SHA for d4bb4c0
lua/kickstart/plugins/debug.lua
@@ -80,7 +80,6 @@ return {
80
return { condition = '', logMessage = '', hitCondition = '', line = vim.fn.line '.' }
81
end
82
83
-
84
-- Elicit customization via a UI prompt
85
---@param bp dap.SourceBreakpoint a breakpoint
86
local function customize_bp(bp)
@@ -110,7 +109,9 @@ return {
110
109
111
vim.ui.select(menu_options, {
112
prompt = 'Edit Breakpoint',
113
- format_item = function(item) return ('%s: %s'):format(item, props[item].value) end,
+ format_item = function(item)
+ return ('%s: %s'):format(item, props[item].value)
114
+ end,
115
}, function(choice)
116
if choice == nil then
117
-- User cancelled the selection
0 commit comments