Skip to content

Instantly share code, notes, and snippets.

@philsnow
Last active June 20, 2020 09:34
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 philsnow/48ae8a31f7e063b23d4013470f071783 to your computer and use it in GitHub Desktop.
Save philsnow/48ae8a31f7e063b23d4013470f071783 to your computer and use it in GitHub Desktop.
hammerspoon snippet that allows me to paste where I want
-- other stuff in hammerspoon init.lua
require("pasteboardtype")
local pasteboard = require("hs.pasteboard")
hs.hotkey.bindSpec(
{{"cmd", "alt"}, "V"},
function()
hs.eventtap.keyStrokes(pasteboard.getContents())
end
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment