We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 783c91f commit 24088e5Copy full SHA for 24088e5
lua/kickstart/plugins/debug.lua
@@ -52,7 +52,6 @@ return {
52
return { condition = '', logMessage = '', hitCondition = '', line = vim.fn.line '.' }
53
end
54
55
-
56
-- Elicit customization via a UI prompt
57
---@param bp dap.SourceBreakpoint a breakpoint
58
local function customize_bp(bp)
@@ -82,7 +81,9 @@ return {
82
81
83
vim.ui.select(menu_options, {
84
prompt = 'Edit Breakpoint',
85
- 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)
86
+ end,
87
}, function(choice)
88
if choice == nil then
89
-- User cancelled the selection
0 commit comments