From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathias Schenner Subject: Re: org-mode is turning off soft word wrapping. Date: Fri, 24 Apr 2009 09:54:00 +0000 (UTC) Message-ID: References: <173767.55920.qm@web45106.mail.sp1.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LxICf-0005jD-8f for emacs-orgmode@gnu.org; Fri, 24 Apr 2009 06:00:17 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LxICZ-0005f1-7Z for emacs-orgmode@gnu.org; Fri, 24 Apr 2009 06:00:15 -0400 Received: from [199.232.76.173] (port=33308 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LxICY-0005ex-T7 for emacs-orgmode@gnu.org; Fri, 24 Apr 2009 06:00:10 -0400 Received: from main.gmane.org ([80.91.229.2]:44900 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LxICY-0002TK-C2 for emacs-orgmode@gnu.org; Fri, 24 Apr 2009 06:00:10 -0400 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1LxICQ-0003qe-Tf for emacs-orgmode@gnu.org; Fri, 24 Apr 2009 10:00:02 +0000 Received: from 78.52.234.171 ([78.52.234.171]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 24 Apr 2009 10:00:02 +0000 Received: from mschenner.dev by 78.52.234.171 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 24 Apr 2009 10:00:02 +0000 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org > Bernt Hansen norang.ca> writes: > > Good Bad yahoo.com> writes: > > > > > > 1. How do I turn on soft word wrapping in org-mode? > > > ;; keybinding for toggling soft word wrapping mode > (global-set-key (kbd "") 'toggle-truncate-lines) > > ;; turn on soft wrapping mode for org mode > (add-hook 'org-mode-hook > (lambda () (setq truncate-lines nil))) > > http://www.emacswiki.org/emacs/TruncateLines > Actually, it's even easier. Just add: (setq org-startup-truncated nil) > > > 2. If org-mode automatically turning off word wrapping > > > is a feature, what is the reason non-wrapping mode should > > > be prefered in org-mode? Here is what org.el says: "... entering Org-mode will set `truncate-lines'. This is useful since some lines containing links can be very long and uninteresting. Also tables look terrible when wrapped."