From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Easily go to some frequently accessed heading (narrowed to region) Date: Wed, 02 Feb 2011 11:28:45 +0100 Message-ID: <87lj1yd92a.fsf@gnu.org> References: <4d487c86.5043ec0a.55ad.ffffaf99@mx.google.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=39110 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PkdpP-0002Tv-V3 for emacs-orgmode@gnu.org; Wed, 02 Feb 2011 09:37:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PkZxQ-0002fj-DD for emacs-orgmode@gnu.org; Wed, 02 Feb 2011 05:29:05 -0500 Received: from mail-wy0-f169.google.com ([74.125.82.169]:39967) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PkZxQ-0002Jc-5d for emacs-orgmode@gnu.org; Wed, 02 Feb 2011 05:29:04 -0500 Received: by wyj26 with SMTP id 26so8213464wyj.0 for ; Wed, 02 Feb 2011 02:28:42 -0800 (PST) In-Reply-To: <4d487c86.5043ec0a.55ad.ffffaf99@mx.google.com> (Darlan Cavalcante Moreira's message of "Tue, 01 Feb 2011 18:34:58 -0300") 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: Darlan Cavalcante Moreira Cc: Orgmode Mailing List Hi Darlan, Darlan Cavalcante Moreira writes: > I have a main .org file where I put almost everything. There is a > "Projects" headline where each subheading is a different project. During > the day I need to go to the Projects headline and open one of the its > subheadings when I want and add/read something in that project. I know I > can use a capture template to add something to one of the projects, but > that does not work (or does it?) when I just want to read or modify > something. Maybe some dummy function like that? (defun my-find-org-heading nil "Find a heading." (interactive) (find-file "~/org/my.org") (goto-char (point-min)) (search-forward "* Your heading") (org-narrow-to-subtree)) -- Bastien