changing kick overrides pattern

This commit is contained in:
dlond 2025-05-29 20:29:10 +12:00
parent 049d9f270a
commit 3bab682273
8 changed files with 189 additions and 379 deletions

View file

@ -74,9 +74,10 @@ return {
type = 'lldb',
request = 'launch',
program = function()
local utils = require 'custom.utils'
local target = utils:get_target()
return utils.pick_executable(vim.fn.getcwd() .. '/' .. target)
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
-- local utils = require 'custom.utils'
-- local target = utils:get_target()
-- return utils.pick_executable(vim.fn.getcwd() .. '/' .. target)
end,
cwd = '${workspaceFolder}',
stopOnEntry = false,