From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Stribblehill Subject: Re: Fast way to jump to another specific heading? Date: Fri, 14 Aug 2009 00:22:56 +0100 Message-ID: <1f38ae890908131622r1f3b75cdt92dd1a87fda110d7@mail.gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MbjjT-0003Dq-Oh for emacs-orgmode@gnu.org; Thu, 13 Aug 2009 19:29:19 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MbjjO-00034G-Nd for emacs-orgmode@gnu.org; Thu, 13 Aug 2009 19:29:19 -0400 Received: from [199.232.76.173] (port=57346 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MbjjO-00033r-H3 for emacs-orgmode@gnu.org; Thu, 13 Aug 2009 19:29:14 -0400 Received: from mail-fx0-f205.google.com ([209.85.220.205]:38713) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MbjjO-0004IP-5l for emacs-orgmode@gnu.org; Thu, 13 Aug 2009 19:29:14 -0400 Received: by fxm1 with SMTP id 1so865393fxm.31 for ; Thu, 13 Aug 2009 16:29:12 -0700 (PDT) In-Reply-To: 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: =?ISO-8859-1?Q?Jan_B=F6cker?= Cc: emacs-orgmode@gnu.org Have you tried the org-refile interface? C-u C-c C-w lets you jump to a heading using the same interface you get when refiling, so you can customise it easily. My org-refile config is: (setq org-refile-targets '((org-agenda-files :maxlevel . 2)) org-refile-use-outline-path 'file org-refile-target-verify-function (lambda () (not (member "ARCHIVE" (org-get-tags))))) This lets me go to whichever file I choose out of the list of agenda files then up to two deep into the hierarchy, filtering out archived sections. If you're sticking to one file, perhaps see if (setq org-refile-use-outline-path t) is to your taste. 2009/8/13 Jan B=F6cker : > Hello, > > at the moment I use one org-mode file per project and use ido.el's fuzzy > search to quickly open the appropriate project file. However, this tends = to > clutter up my buffer list when I forget to kill buffers after using them. > > I'd like to use only one file to store all my active projects and use ido= .el > to quickly jump to another project node ("project nodes" being defined as= , > say, all direct descendants of a particular top-level node). > Ideally, after jumping to the node, the outline would automatically be > narrowed down to the target node. > > Are there similar facilities already present in org-mode that I missed? > > If not, I'd like to propose a new feature: take the results of a custom > agenda view (as those allow us to define powerful searches), then feed th= e > results to ido-mode or the standard emacs autocompletion for the user to > select one to jump to. > Unfortunately, my elisp-fu (and knowledge of org-mode internals) is way t= oo > insufficient to implement something like that myself. > > Jan > > > _______________________________________________ > 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 >