Skip to content

Instantly share code, notes, and snippets.

@mishoo
Created November 19, 2015 15:34
Show Gist options
  • Save mishoo/cc3ad91ea2574d112307 to your computer and use it in GitHub Desktop.
Save mishoo/cc3ad91ea2574d112307 to your computer and use it in GitHub Desktop.
(defun unfill-paragraph ()
"Takes a multi-line paragraph and makes it into a single line of text."
(interactive)
(let ((fill-column (point-max)))
(fill-paragraph nil)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment