emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Easily go to some frequently accessed heading (narrowed to


From: Bastien
Subject: Re: [Orgmode] Easily go to some frequently accessed heading (narrowed to region)
Date: Wed, 02 Feb 2011 11:28:45 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux)

Hi Darlan,

Darlan Cavalcante Moreira <address@hidden> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]