From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Status fix for "Regression in fill-paragraph behavior"? Date: Fri, 31 May 2013 14:34:05 +0200 Message-ID: <87ehcn1g76.fsf@gmail.com> References: <87wqqo7eu2.fsf@gmail.com> <87li747a4n.fsf@gmail.com> <8761y86saw.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60514) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UiOWx-0000Jk-Ae for emacs-orgmode@gnu.org; Fri, 31 May 2013 08:34:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UiOWw-0000I5-2F for emacs-orgmode@gnu.org; Fri, 31 May 2013 08:34:03 -0400 Received: from mail-we0-x233.google.com ([2a00:1450:400c:c03::233]:41396) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UiOWv-0000I1-RN for emacs-orgmode@gnu.org; Fri, 31 May 2013 08:34:01 -0400 Received: by mail-we0-f179.google.com with SMTP id m46so1193512wev.38 for ; Fri, 31 May 2013 05:34:01 -0700 (PDT) In-Reply-To: (Peter Wagemans's message of "Mon, 27 May 2013 13:03:41 +0200") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Wagemans, Peter" Cc: "emacs-orgmode@gnu.org" Hello, "Wagemans, Peter" 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