From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Lawrence Subject: Re: trunc fill modes? Date: Fri, 28 Feb 2014 09:06:58 -0800 Message-ID: <878usv2mkt.fsf@berkeley.edu> References: <530FDB48.8040403@pfdstudio.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60674) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WJQvf-0000Gx-Jf for emacs-orgmode@gnu.org; Fri, 28 Feb 2014 12:09:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WJQva-00088J-M6 for emacs-orgmode@gnu.org; Fri, 28 Feb 2014 12:08:55 -0500 Received: from plane.gmane.org ([80.91.229.3]:34806) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WJQva-00088C-Fg for emacs-orgmode@gnu.org; Fri, 28 Feb 2014 12:08:50 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WJQvZ-00013V-Ki for emacs-orgmode@gnu.org; Fri, 28 Feb 2014 18:08:49 +0100 Received: from c-67-164-45-159.hsd1.ca.comcast.net ([67.164.45.159]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Feb 2014 18:08:49 +0100 Received: from richard.lawrence by c-67-164-45-159.hsd1.ca.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Feb 2014 18:08:49 +0100 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 Peter Davis writes: > On my MacBook Pro at work, running Aquamacs 3.0a, in Org mode the mode > line shows > > ... Fill I think you want auto-fill-mode. See: https://www.gnu.org/software/emacs/manual/html_node/emacs/Auto-Fill.html Auto-fill-mode is an Emacs minor mode. You can make sure it's turned on in Org (which is a major mode) by adding it to Org's mode hook: (add-hook 'org-mode-hook ; add a function to the Org mode hook... (lambda () (auto-fill-mode 1))) ; that ensures auto-fill-mode is on Put that somewhere in your ~/.emacs, restart Emacs (to reload your ~/.emacs), and you should see "Fill" in the mode line when you're in Org mode. You can do the same for other modes by swapping out the "org-mode-hook" symbol for the appropriate hook variable for another mode (usually called MODE-NAME-hook). Best, Richard (If possible, please encrypt your reply to me using my PGP key: Key ID: CF6FA646 Fingerprint: 9969 43E1 CF6F A646. See http://www.ocf.berkeley.edu/~rwl/encryption.html for more information.)