Skip to content

Instantly share code, notes, and snippets.

@mmb
Created August 9, 2012 21:47
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 mmb/3308323 to your computer and use it in GitHub Desktop.
Save mmb/3308323 to your computer and use it in GitHub Desktop.
paste contents of clipboard to emacs scratch buffer
# paste contents of clipboard to emacs scratch buffer
tell application "Emacs"
activate
tell application "System Events"
keystroke "x" using {control down}
keystroke "b*scratch*"
keystroke return
keystroke ">" using {option down}
keystroke return
keystroke "v" using {command down}
end tell
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment