From: Darlan Cavalcante Moreira <darcamo@gmail.com>
To: tony day <tonyday567@gmail.com>
Cc: emacs-orgmode@gnu.org, Esben Stien <b0ef@esben-stien.name>
Subject: Re: Header Jumping
Date: Wed, 24 Oct 2012 14:17:41 -0300 [thread overview]
Message-ID: <508822b9.0ae2640a.44c3.ffff94bb@mx.google.com> (raw)
In-Reply-To: <205DDA2A-1D9D-4F02-B645-242AF0B3293A@gmail.com>
You can also pass C-u two times to go to the last refiled/captured
headline, that is, "C-u C-u C-c C-w" and "C-u C-u C-c c".
At Thu, 25 Oct 2012 00:02:22 +1100,
tony day wrote:
>
> > Esben Stien <b0ef@esben-stien.name> writes:
> >
> >> Is there some way to go directly to a node?
> >>
> >> F.ex, I have:
> >>
> >> * foo
> >> ** bar..
> >> ** baz..
> >> ** hukarz..
> >>
> >> I do C-c a s to search for baz, which brings up a buffer with baz
> >> somewhere in there and I have to move down the list to hit TAB on baz.
> >>
>
> Whoever crafted org-refile thought ahead. C-u C-c C-w selects and jumps to the header selected rather than doing a refiling.
>
> Just played around with that and =bookmark-set= and it works nicely with norang settings eg
>
> #+begin_src emacs-lisp
> ; Targets include this file and any file contributing to the agenda - up to 4 levels deep
> (setq org-refile-targets (quote ((nil :maxlevel . 2)
> (org-agenda-files :maxlevel . 2))))
> ; Use full outline paths for refile targets - we file directly with IDO
> (setq org-refile-use-outline-path t)
> ; Targets complete directly with IDO
> (setq org-outline-path-complete-in-steps nil)
> ; Allow refile to create parent tasks with confirmation
> (setq org-refile-allow-creating-parent-nodes (quote confirm))
> ; every header is a refile target
> (setq org-refile-target-verify-function nil)
> ; use IDO
> (setq org-completion-use-ido t)
>
> (defun org-jump ()
> (interactive)
> (bookmark-set "org-jumped-from")
> (org-refile t nil nil "Jump")
> (bookmark-set "org-jumped-to"))
>
>
> (defun org-jump-back()
> (interactive)
> (if (equal (point) (bookmark-get-position "org-jumped-from"))
> (bookmark-jump "org-jumped-to")
> (if (bookmark-get-position "org-jumped-to")
> (bookmark-jump "org-jumped-from"))))
>
>
> (bind-key "C-. j" 'org-jump)
> (bind-key "C-. l" 'org-jump-back)
> #+end_src
>
> tony
>
>
>
>
>
>
prev parent reply other threads:[~2012-10-24 17:17 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-18 23:37 Random Access Node Esben Stien
2012-10-20 5:12 ` Marcelo de Moraes Serpa
2012-10-21 14:45 ` Eric S Fraga
2012-10-24 13:02 ` Header Jumping tony day
2012-10-24 17:17 ` Darlan Cavalcante Moreira [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=508822b9.0ae2640a.44c3.ffff94bb@mx.google.com \
--to=darcamo@gmail.com \
--cc=b0ef@esben-stien.name \
--cc=emacs-orgmode@gnu.org \
--cc=tonyday567@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.