emacs-orgmode
[Top][All Lists]
Advanced

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

[O] Re: Merging .org files


From: Matt Lundin
Subject: [O] Re: Merging .org files
Date: Fri, 18 Mar 2011 16:38:34 -0400
User-agent: Gnus/5.110016 (No Gnus v0.16) Emacs/23.3 (gnu/linux)

Pere Quintana SeguĂ­ <address@hidden> writes:

> Now I have to learn to better navigate within my much longer org files.
> Before, I used ido-mode to jump from buffer to buffer, now I guess I
> have to practise more sparse trees to jump from headline to headline.

I use this function to jump quickly (via ido) to a first level headline
in my org files:

--8<---------------cut here---------------start------------->8---
(defun my-org-global-goto ()
  (interactive)
  (let ((org-completion-use-ido t)
        (org-outline-path-complete-in-steps nil)
        (org-refile-use-outline-path nil)
        (org-refile-targets '((my-org-refile-targets :maxlevel . 1))))
    (org-refile t)))
--8<---------------cut here---------------end--------------->8---

Best,
Matt



reply via email to

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