Skip to content

Commit

Permalink
feat: provide paste_image function along with pasteImage (legacy)
Browse files Browse the repository at this point in the history
  • Loading branch information
HakonHarnes committed Feb 29, 2024
1 parent 0d3feca commit 8389b69
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lua/img-clip/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ M.setup = function(opts)
end
end

---@param opts? table
---@param input? string
M.paste_image = function(opts, input)
return paste.paste_image(opts, input)
end

---@param opts? table
---@param input? string
M.pasteImage = function(opts, input)
Expand Down

0 comments on commit 8389b69

Please sign in to comment.