How to undo fill-paragraph in emacs?

后端 未结 2 502
傲寒
傲寒 2021-02-13 09:40

I have a text file that is pretty long. Any easy way to \"undo\" a M-q (fill-paragraph) on a file that was written and saved a while ago?

For example, I wan

2条回答
  •  醉梦人生
    2021-02-13 09:59

    You can set fill-columnn to a really large number, and fill.

    C-u 10000 C-x f M-x fill-individual-paragraphs
    

    Or you can use a little custom function:

    (defun refill-paragraphs-to-be-one-line ()
      "fill individual paragraphs with large fill column"
      (interactive)
      (let ((fill-column 100000))
        (fill-individual-paragraphs (point-min) (point-max))))
    

提交回复
热议问题