From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: org-info.js Date: Wed, 19 May 2010 09:58:15 -0400 Message-ID: <9853.1274277495@gamaville.dokosmarshall.org> References: <877hn0qb3n.fsf@stats.ox.ac.uk> Reply-To: nicholas.dokos@hp.com Return-path: Received: from [140.186.70.92] (port=55870 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEjnG-0001aD-9q for emacs-orgmode@gnu.org; Wed, 19 May 2010 09:58:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OEjnE-00019m-BD for emacs-orgmode@gnu.org; Wed, 19 May 2010 09:58:42 -0400 Received: from vms173013pub.verizon.net ([206.46.173.13]:56212) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEjnE-00019V-7P for emacs-orgmode@gnu.org; Wed, 19 May 2010 09:58:40 -0400 Received: from gamaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173013.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0L2O00ELG6T4E622@vms173013.mailsrvcs.net> for emacs-orgmode@gnu.org; Wed, 19 May 2010 08:58:16 -0500 (CDT) In-reply-to: Message from Dan Davison of "Wed, 19 May 2010 09:23:24 EDT." <877hn0qb3n.fsf@stats.ox.ac.uk> 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: Dan Davison Cc: nicholas.dokos@hp.com, emacs org-mode mailing list Dan Davison wrote: > If I'm viewing the manual with Sebastian's org-info javascript info > emulation, and I'm on node 13 of the manual, what key do I press to get > to 13.1? > > I wish I were better with info. My understanding is that I would use > space or ] in emacs. > In emacs info, advances down the imaginary scroll, so it may or may not get you to the next (sub)section, depending on the length of the current section and the size of your screen. ']' will go to the next node in a depth-first traversal, 'n' will get you to the next node in a level-traversal (always assuming that the relevant nodes exist). Numeric arguments will get you to the relevant subsection (i.e. if you are in sec. 13 and press 6, you'll end up in subsection 13.6 - assuming that it exists), whereas 'n' and 'p' will get you to the next/previous heading at the same level and 'u' will go up a level. Now I'm on much shakier ground (iow, I don't necessarily know what I'm talking about), but I think `n' does a depth-first traversal, so it will go from 13 to 13.1 - the question is how to go from 13 to 14 without visiting all the 13.x... in-between: I thought I would go UP to the TOC and then TAB to or click on the next section, but the UP link does not seem to do what I think it should do (go up one level in the hierarchy - at least that seems to be the case in the org-info pages: http://orgmode.org/worg/code/org-info-js). I'm not saying there is no way: I just didn't find one after a few minutes of fooling around. HTH, Nick