John Hendy <jw.he...@gmail.com> writes:

> Greetings,
>
>
> When editing lists after deleting words (shortening lines) and/or
> concatenating one line with the one that follows (to remedy a
> shortened line), I end up with an "unfilled" list item. Is there an
> Org equivalent to `M-x fill-region` on paragraphs to tidy up the Org
> document list entries?

Doesn't fill-paragraph work?  It does for me.

Well, to be precise, I have M-q bound to maybe-fill-paragraph which is
defined as

#+begin_src emacs-lisp
(defun maybe-fill-paragraph (&optional justify region)
  "Fill paragraph at or after point (see `fill-paragraph').

Does nothing if `visual-line-mode' is on."
  (interactive (progn
         (barf-if-buffer-read-only)
         (list (if current-prefix-arg 'full) t)))
  (or visual-line-mode
      (fill-paragraph justify region)))
#+end_src

HTH,
eric
-- 
: Eric S Fraga (0xFFFCF67D), Emacs 24.3.50.1, Org release_8.1.1-7-gaecdf5


Reply via email to