Emacs: Reformat to Long Lines (unfill-paragraph) 🚀
unfill-paragraph, unfill-region
Emacs does not have a “unfill-paragraph” command to do the inverse of “fill”. Here's the solution:
(defun xah-unfill-paragraph () "Replace newline chars in current paragraph by single spaces. This command does the inverse of `fill-paragraph'. URL `http://xahlee.info/emacs/emacs/emacs_unfill-paragraph.html' Version 2016-07-13" (interactive) (let ((fill-column most-positive-fixnum)) (fill-paragraph)))
(defun xah-unfill-region (start end) "Replace newline chars in region by single spaces. This command does the inverse of `fill-region'. URL `http://xahlee.info/emacs/emacs/emacs_unfill-paragraph.html' Version 2016-07-13" (interactive "r") (let ((fill-column most-positive-fixnum)) (fill-region start end)))
toggle “fill” or “unfill”
This command automatically toggle “fill” or “unfill” on the current paragraph. If there is a text selection, then the command automatically works on the region.
(defun xah-fill-or-unfill () "Reformat current block or selection to short/long line. First call will break into multiple short lines. Repeated call toggles between short and long lines. This commands calls `fill-region' to do its work. Set `fill-column' for short line length. URL `http://xahlee.info/emacs/emacs/modernization_fill-paragraph.html' Created: 2020-11-22 Version: 2024-03-19" (interactive) ;; This command symbol has a property “'longline-p”, the possible values are t and nil. This property is used to easily determine whether to compact or uncompact, when this command is called again (let ( (xisLongline (if (eq last-command this-command) (get this-command 'longline-p) t)) (deactivate-mark nil) xp1 xp2 ) (seq-setq (xp1 xp2) (xah-get-pos-of-block-or)) (if xisLongline (fill-region xp1 xp2) (let ((fill-column 99999 )) (fill-region xp1 xp2))) (put this-command 'longline-p (not xisLongline))))
Note: an early implementation is named “compact-uncompact-block”.
requires package Emacs: xah-get-thing.el
Emacs Lines, Column, Cursor Position
Soft-Wrap Lines
Reformat Lines (Hard-Wrap)
- Emacs: Hard-Wrap Lines (fill-paragraph)
- Emacs: Reformat to Long Lines (unfill-paragraph) 🚀
- Emacs: Reformat Lines for Source Code 🚀