mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-08 12:05:06 +02:00
fix styleua issue
This commit is contained in:
parent
42ae4216fc
commit
d4bb4c01e3
1 changed files with 3 additions and 2 deletions
|
@ -80,7 +80,6 @@ return {
|
|||
return { condition = '', logMessage = '', hitCondition = '', line = vim.fn.line '.' }
|
||||
end
|
||||
|
||||
|
||||
-- Elicit customization via a UI prompt
|
||||
---@param bp dap.SourceBreakpoint a breakpoint
|
||||
local function customize_bp(bp)
|
||||
|
@ -110,7 +109,9 @@ return {
|
|||
end
|
||||
vim.ui.select(menu_options, {
|
||||
prompt = 'Edit Breakpoint',
|
||||
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)
|
||||
end,
|
||||
}, function(choice)
|
||||
if choice == nil then
|
||||
-- User cancelled the selection
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue