From 45a99b922d7fd2535440d45ed133a82e8d77900e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20Harnes?= Date: Fri, 1 Mar 2024 18:16:37 +0100 Subject: [PATCH] chore: rename to "content is not an image" --- lua/img-clip/paste.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/img-clip/paste.lua b/lua/img-clip/paste.lua index cfa620f..21e4863 100644 --- a/lua/img-clip/paste.lua +++ b/lua/img-clip/paste.lua @@ -20,7 +20,7 @@ M.paste_image = function(opts, input) return M.paste_image_from_path(input, opts) end - util.warn("Input is not an image.") + util.warn("Content is not an image.") return false end @@ -36,7 +36,7 @@ M.paste_image = function(opts, input) return M.paste_image(opts, clipboard_content) end - util.warn("Clipboard does not contain an image.") + util.warn("Content is not an image.") return false end