Skip to content

Commit d4bb4c0

Browse files
committed
fix styleua issue
1 parent 42ae421 commit d4bb4c0

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
@@ -80,7 +80,6 @@ return {
8080
return { condition = '', logMessage = '', hitCondition = '', line = vim.fn.line '.' }
8181
end
8282

83-
8483
-- Elicit customization via a UI prompt
8584
---@param bp dap.SourceBreakpoint a breakpoint
8685
local function customize_bp(bp)
@@ -110,7 +109,9 @@ return {
110109
end
111110
vim.ui.select(menu_options, {
112111
prompt = 'Edit Breakpoint',
113-
format_item = function(item) return ('%s: %s'):format(item, props[item].value) end,
112+
format_item = function(item)
113+
return ('%s: %s'):format(item, props[item].value)
114+
end,
114115
}, function(choice)
115116
if choice == nil then
116117
-- User cancelled the selection

0 commit comments

Comments
 (0)