Skip to content

Instantly share code, notes, and snippets.

@pnkfelix
Created April 19, 2013 14:29
Show Gist options
  • Save pnkfelix/5420717 to your computer and use it in GitHub Desktop.
Save pnkfelix/5420717 to your computer and use it in GitHub Desktop.
variant of yank
(defun yank-removing-newlines ()
"Yanks the last stretch of killed text, removing newlines.
See also `yank' (\\[yank])."
(interactive)
(insert-for-yank (replace-regexp-in-string "\n" "" (current-kill 0))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment