Skip to content

Instantly share code, notes, and snippets.

@jorgenschaefer
Created April 4, 2014 13:04
Show Gist options
  • Save jorgenschaefer/9974328 to your computer and use it in GitHub Desktop.
Save jorgenschaefer/9974328 to your computer and use it in GitHub Desktop.
(global-set-key (kbd "C-c u") 'unfill-paragraph)
(defun unfill-paragraph ()
(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