From a7e384d20cdfcee7ccfa5d9f1b6c00c5e0d8e92b Mon Sep 17 00:00:00 2001 From: dlond Date: Sun, 25 May 2025 23:54:26 +1200 Subject: [PATCH] fix refactor pt 3 --- lua/custom/plugins/debug.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/custom/plugins/debug.lua b/lua/custom/plugins/debug.lua index 4e8e5c94..d680ee8c 100644 --- a/lua/custom/plugins/debug.lua +++ b/lua/custom/plugins/debug.lua @@ -71,7 +71,7 @@ return { program = function() local utils = require 'custom.utils' local cwd = vim.fn.getcwd() - local co = utils.pick_executable(cwd .. '/build') + local co = utils.pick_executable 'build' local ok, result = coroutine.resume(co) return ok and result or nil end,