1611 shaares
17 private links
17 private links
1 result
tagged
paragraph
;;; It is the opposite of fill-paragraph
(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)))
And to bind it to a key:
;; Handy key definition
(define-key global-map "\M-Q" 'unfill-paragraph)