Hello,

"Wagemans, Peter" <peter.wagem...@kpn.com> writes:

> Nicolas Goaziou wrote:
>
>> Also, you have to admit that Org is a bit more complex than Text mode
>> (or Fundamental mode), and may have different requirements.
>
> It sure is a great tool, with a lot of useful functionality. But the
> new paragraph fill breaks my old workflows, so I am trying to find a
> way around that (preferably the easiest ;-). Is there some way or
> setting to tell org that in a node or perhaps all nodes in a subtree
> it should apply the adaptive fill from fill.el to text paragraphs, so
> that the fill-prefix is automatically recognized like in fundamental
> and text mode? Or is there some function that I can call (and bind to
> some key combination) to apply the old paragraph fill to some text
> paragraph?  So that plain text paragraphs and citations that don't use
> any org features can be filled in the old way.

You probably can bind the following function:

  (defun my-good-ole-filling-fun ()
    (interactive)
    (let ((fill-paragraph-function nil) (adaptive-fill-function nil))
      (fill-paragraph)))


Regards,

-- 
Nicolas Goaziou

Reply via email to