fix(warning): taken into account silent_warning (fixes #385) (#388)

Signed-off-by: Aaron Pham <contact@aarnphm.xyz>
This commit is contained in:
Aaron Pham
2024-08-30 02:08:59 -04:00
committed by GitHub
parent b7127b33c6
commit ea73816665
2 changed files with 3 additions and 2 deletions

View File

@@ -233,7 +233,7 @@ M = setmetatable(M, {
M.support_paste_image = function()
local supported = Utils.has("img-clip.nvim") or Utils.has("img-clip")
if not supported then
if not supported and not M.options.silent_warning then
Utils.warn("img-clip.nvim is not installed. Pasting image will be disabled.", { once = true })
end
return supported