From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: Go to top node Date: Fri, 07 Aug 2009 11:04:31 -0600 Message-ID: References: <14568.1249664171@gamaville.dokosmarshall.org> 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 1MZSs0-0005dW-Jj for emacs-orgmode@gnu.org; Fri, 07 Aug 2009 13:04:44 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MZSrv-0005br-EU for emacs-orgmode@gnu.org; Fri, 07 Aug 2009 13:04:43 -0400 Received: from [199.232.76.173] (port=46029 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MZSrv-0005bf-1N for emacs-orgmode@gnu.org; Fri, 07 Aug 2009 13:04:39 -0400 Received: from rv-out-0708.google.com ([209.85.198.247]:11464) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MZSru-00010y-D3 for emacs-orgmode@gnu.org; Fri, 07 Aug 2009 13:04:38 -0400 Received: by rv-out-0708.google.com with SMTP id f25so613972rvb.6 for ; Fri, 07 Aug 2009 10:04:37 -0700 (PDT) In-Reply-To: <14568.1249664171@gamaville.dokosmarshall.org> (Nick Dokos's message of "Fri, 07 Aug 2009 12:56:11 -0400") 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: nicholas.dokos@hp.com Cc: emacs-orgmode@gnu.org, Geralt Nick Dokos writes: > Geralt wrote: > >> >> is there a command that brings me from somewhere below a top-node to >> the top-node of this (sub-tree)? >> > > C-c C-u is the keybinding for outline-up-heading: this can take a prefix > argument to go up multiple levels. Using the universal prefix argument > (C-u) multiplies the argument by four, so > > C-u C-c C-u will go up a maximum of 4 levels > C-u C-u C-c C-u will go up a maximum of 16 levels > etc > > I tried the latter from 9 levels down and it brought me up to the top > level. Will this do? > Somewhat related and potentially of interest, I really like the following for outline-node based navigation. It is similar to the behavior of paredit-mode in lisp files. --8<---------------cut here---------------start------------->8--- ;; org-mode hook (add-hook 'org-mode-hook (lambda () (local-set-key (kbd "\M-\C-n") 'outline-next-visible-heading) (local-set-key (kbd "\M-\C-p") 'outline-previous-visible-heading) (local-set-key (kbd "\M-\C-u") 'outline-up-heading))) --8<---------------cut here---------------end--------------->8--- -- Eric > > Nick > > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode