Skip to content

Commit 24088e5

Browse files
blehreroriori1703
authored andcommitted
fix styleua issue
1 parent 783c91f commit 24088e5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lua/kickstart/plugins/debug.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ return {
5252
return { condition = '', logMessage = '', hitCondition = '', line = vim.fn.line '.' }
5353
end
5454

55-
5655
-- Elicit customization via a UI prompt
5756
---@param bp dap.SourceBreakpoint a breakpoint
5857
local function customize_bp(bp)
@@ -82,7 +81,9 @@ return {
8281
end
8382
vim.ui.select(menu_options, {
8483
prompt = 'Edit Breakpoint',
85-
format_item = function(item) return ('%s: %s'):format(item, props[item].value) end,
84+
format_item = function(item)
85+
return ('%s: %s'):format(item, props[item].value)
86+
end,
8687
}, function(choice)
8788
if choice == nil then
8889
-- User cancelled the selection

0 commit comments

Comments
 (0)