refactor(utils): remove unused function

This commit is contained in:
Oleksandr Smirnov 2025-03-21 21:51:28 +02:00
parent 9aa0038125
commit 1b2d4f7f93
No known key found for this signature in database
2 changed files with 7 additions and 14 deletions

View file

@ -2,18 +2,6 @@ local c = require "gopher.config"
local log = require "gopher._utils.log"
local utils = {}
---@param msg string
---@param lvl? number
function utils.deferred_notify(msg, lvl)
lvl = lvl or vim.log.levels.INFO
vim.defer_fn(function()
vim.notify(msg, lvl, {
title = c.___plugin_name,
})
log.debug(msg)
end, 0)
end
---@param msg string
---@param lvl? number
function utils.notify(msg, lvl)

View file

@ -15,12 +15,17 @@ local urls = {
---@param url string
local function handle_intall_exit(opt, url)
if opt.code ~= 0 then
u.deferred_notify("go install failed: " .. url)
vim.schedule(function()
u.notify("go install failed: " .. url)
end)
log.error("go install failed:", "url", url, "opt", vim.inspect(opt))
return
end
u.deferred_notify("go install-ed: " .. url)
vim.schedule(function()
u.notify("go install-ed: " .. url)
end)
end
---@param url string