fix: surface runtime check failures as clean notifications

Problem: when required dependencies (GNU time/timeout, Python env) are
missing, config.setup() throws a raw error() that surfaces as a Lua
traceback. On macOS without coreutils the message is also redundant
("GNU time not found: GNU time not found") and offers no install hint.

Solution: wrap config.setup() in pcall inside ensure_initialized(),
strip the Lua source-location prefix, and emit a vim.notify at ERROR
level. Add Darwin-specific install guidance to the GNU time/timeout
not-found messages. Pass capability reasons directly instead of
wrapping them in a redundant outer message.
This commit is contained in:
Barrett Ruth 2026-02-18 17:24:26 -05:00 committed by Barrett Ruth
parent c192afc5d7
commit 6045042dfb
2 changed files with 24 additions and 8 deletions

View file

@ -15,17 +15,25 @@ local initialized = false
local function ensure_initialized()
if initialized then
return
return true
end
local user_config = vim.g.cp or {}
local config = config_module.setup(user_config)
config_module.set_current_config(config)
local ok, result = pcall(config_module.setup, user_config)
if not ok then
local msg = tostring(result):gsub('^.+:%d+: ', '')
vim.notify(msg, vim.log.levels.ERROR)
return false
end
config_module.set_current_config(result)
initialized = true
return true
end
---@return nil
function M.handle_command(opts)
ensure_initialized()
if not ensure_initialized() then
return
end
local commands = require('cp.commands')
commands.handle_command(opts)
end