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)