Skip to content

Instantly share code, notes, and snippets.

@rebeccajae
Created April 29, 2021 19:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rebeccajae/42e890e030930154a24fb1b37e0bb484 to your computer and use it in GitHub Desktop.
Save rebeccajae/42e890e030930154a24fb1b37e0bb484 to your computer and use it in GitHub Desktop.
Create a cmd-opt-v hotkey that pastes once, clearing the clipboard simultaneously.
hs.hotkey.bind({"cmd", "alt"}, "V", function()
local pasteContent = hs.pasteboard.getContents()
hs.pasteboard.clearContents()
hs.eventtap.keyStrokes(pasteContent)
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment