From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juan M. Gonzalez Newsgroups: gmane.emacs.devel Subject: Re: Emacs as word processor Date: Mon, 16 Dec 2013 20:37:13 +0000 (UTC) Message-ID: References: <5288A59E.7030109@dancol.org> <87vbzqfgd6.fsf@uwakimon.sk.tsukuba.ac.jp> <87mwl04w3k.fsf@zigzag.favinet> <87iovo4caz.fsf@zigzag.favinet> <878uvmoypl.fsf@dod.no> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1387226267 15451 80.91.229.3 (16 Dec 2013 20:37:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 16 Dec 2013 20:37:47 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Dec 16 21:37:52 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VsevG-0001ux-G4 for ged-emacs-devel@m.gmane.org; Mon, 16 Dec 2013 21:37:50 +0100 Original-Received: from localhost ([::1]:58060 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VsevG-0001Pa-4z for ged-emacs-devel@m.gmane.org; Mon, 16 Dec 2013 15:37:50 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33495) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vsev7-0001PL-U4 for emacs-devel@gnu.org; Mon, 16 Dec 2013 15:37:47 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vsev2-0007Fi-2p for emacs-devel@gnu.org; Mon, 16 Dec 2013 15:37:41 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:37088) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vsev1-0007F3-ST for emacs-devel@gnu.org; Mon, 16 Dec 2013 15:37:36 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Vsev0-0001jW-QV for emacs-devel@gnu.org; Mon, 16 Dec 2013 21:37:34 +0100 Original-Received: from 85.219.26.62.dyn.user.ono.com ([85.219.26.62]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 Dec 2013 21:37:34 +0100 Original-Received: from juanmgonzalezrey by 85.219.26.62.dyn.user.ono.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 16 Dec 2013 21:37:34 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 28 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 85.219.26.62 (Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20131030 Firefox/17.0 Iceweasel/17.0.10) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:166510 Archived-At: Richard Stallman gnu.org> writes: > > I did that, and it showed me only the first line. Yes, it's folded by default. One of the first customizations I did when starting to use Org-mode was to change this behavior, since I use more documents than outlines. In the ~/.emacs init file: ;; No folding of any entries (setq org-startup-folded "showall") And then, when I wish, I can fold/unfold part or all with (visibility cycling) or (global visibility cycling). Another useful Org customization is: ;; Cleaner view (setq org-startup-indented t) (global-set-key (kbd "") 'org-indent-mode) Etc... Apart from this, I can say that Emacs Org is being indeed useful for me, and for many others from what I've seen.