From mboxrd@z Thu Jan 1 00:00:00 1970 From: david@adboyd.com (J. David Boyd) Subject: Re: bug in version 5.06 Date: Mon, 27 Aug 2007 12:33:29 -0400 Message-ID: <876431hr8m.fsf@adboyd.com> References: <87mywdhyap.fsf@adboyd.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IPhXA-0003jh-GR for emacs-orgmode@gnu.org; Mon, 27 Aug 2007 12:33:48 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IPhX9-0003jV-JW for emacs-orgmode@gnu.org; Mon, 27 Aug 2007 12:33:47 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IPhX9-0003jS-Co for emacs-orgmode@gnu.org; Mon, 27 Aug 2007 12:33:47 -0400 Received: from main.gmane.org ([80.91.229.2] 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 1IPhX8-0007WX-Qq for emacs-orgmode@gnu.org; Mon, 27 Aug 2007 12:33:47 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1IPhX4-0003I6-NX for emacs-orgmode@gnu.org; Mon, 27 Aug 2007 18:33:42 +0200 Received: from 156-40.126-70.tampabay.res.rr.com ([70.126.40.156]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 27 Aug 2007 18:33:42 +0200 Received: from david by 156-40.126-70.tampabay.res.rr.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 27 Aug 2007 18:33:42 +0200 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 Leo writes: > On 2007-08-27 15:01 +0100, J. David Boyd wrote: >> I used to be able to open an org file, and with the cursor in the top left >> hand corner of the file, where it defaults to, press repeatedly to cycle >> through showing the different levels of my file. > > See the ChangeLog on org mode page. I remembered it says something about > this. > > -- > Leo (GPG Key: 9283AA3F) > > Gnus is one component of the Emacs operating system. Hmm, I do see this when I do a Ctl-h k on the key: runs the command org-cycle which is an interactive Lisp function in `/home/Dave/.emacs.d/org-5.06/org.el'. It is bound to , TAB, , . (org-cycle &optional arg) Visibility cycling for Org-mode. - When this function is called with a prefix argument, rotate the entire buffer through 3 states (global cycling) 1. OVERVIEW: Show only top-level headlines. 2. CONTENTS: Show all headlines of all levels, but no body text. 3. SHOW ALL: Show everything. - When point is at the beginning of a headline, rotate the subtree started by this line through 3 different states (local cycling) 1. FOLDED: Only the main headline is shown. 2. CHILDREN: The main headline and the direct children are shown. From this state, you can move to one of the children and zoom in further. 3. SUBTREE: Show the entire subtree, including body text. - When there is a numeric prefix, go up to a heading with level arg, do a `show-subtree' and return to the previous cursor position. If arg is negative, go up that many levels. - When point is not at the beginning of a headline, execute `indent-relative', like TAB normally does. See the option `org-cycle-emulate-tab' for details. - Special case: if point is at the beginning of the buffer and there is no headline in line 1, this function will act as if called with prefix arg. The last point, the 'Special case' seems to be the problem. I'm on the first line in the buffer, there is no headline, but it doesn't work. If I do a Ctl-U , it works okay. Dave