Skip to content

Instantly share code, notes, and snippets.

@spacebat
Created January 3, 2013 10:34
Show Gist options
  • Save spacebat/4442501 to your computer and use it in GitHub Desktop.
Save spacebat/4442501 to your computer and use it in GitHub Desktop.
emacs: eval-expression-to-kill-ring
(defun eval-expression-to-kill-ring ()
"Evaluate an expression interactively and place its result in the kill ring"
(interactive)
(kill-new (call-interactively 'eval-expression)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment