From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?R=E9my_Abergel?= Subject: auto-fill-mode for text changes (plain-lists) indentation Date: Wed, 15 Jan 2014 14:04:16 +0100 Message-ID: <52D68750.2020408@parisdescartes.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37683) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W3Q8y-0008V8-7E for emacs-orgmode@gnu.org; Wed, 15 Jan 2014 08:04:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W3Q8q-00015G-BO for emacs-orgmode@gnu.org; Wed, 15 Jan 2014 08:04:28 -0500 Received: from mataram.parisdescartes.fr ([193.51.86.55]:35590) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W3Q8q-000159-4T for emacs-orgmode@gnu.org; Wed, 15 Jan 2014 08:04:20 -0500 Received: from localhost (unknown [192.168.253.9]) by mataram.parisdescartes.fr (Postfix) with ESMTP id A691A464025 for ; Wed, 15 Jan 2014 14:04:18 +0100 (CET) Received: from mataram.parisdescartes.fr ([192.168.253.4]) by localhost (fourmilier.univ-paris5.fr [192.168.253.9]) (amavisd-new, port 10024) with ESMTP id j6vEl-NUydQt for ; Wed, 15 Jan 2014 14:04:16 +0100 (CET) Received: from [172.30.41.128] (wifi-pro-172-30-41-128.wifi.univ-paris5.fr [172.30.41.128]) by mataram.parisdescartes.fr (Postfix) with ESMTPSA id 0F5E72FA423 for ; Wed, 15 Jan 2014 14:04:16 +0100 (CET) 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: emacs-orgmode@gnu.org Hi Org users, I am trying to set auto-fill-mode for text, adding in my .emacs: (add-hook 'text-mode-hook '(lambda () (auto-fill-mode t))) it works quite well but it seems to change the plain-lists indentation. * without auto-fill-mode + item 1 :: description comes here indentation makes text start here + item 2 :: another description + item 3 :: here is a quite long description, that would be nice to have=20 an automatic carriage return here indentation makes text start here * with auto-fill-mode + item 1 :: description comes here Now text is indented from here :-( + item 2 :: another description + item 3 :: here is a quite long description, it is nice to have an automatic carriage retrun here! but now text is indented from here :-( Is there anyway to use auto-fill-mode without changing indentation? Thanks, R=E9my A.