emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Status fix for "Regression in fill-paragraph behavior"?


From: Nicolas Goaziou
Subject: Re: [O] Status fix for "Regression in fill-paragraph behavior"?
Date: Fri, 31 May 2013 14:34:05 +0200

Hello,

"Wagemans, Peter" <address@hidden> 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

[Prev in Thread] Current Thread [Next in Thread]