At Fri, 20 Nov 2009 17:29:15 +0100, Friedrich Delgado Friedrichs wrote:
> k for up, j for down, h for left and l for right. So I guess k would
> be previous-heading, j next heading, and h and l for the previous/next
> sibling on the same level.
> 
> So I guess I have:
> 
> j   (org-speed-move-safe (quote outline-next-visible-heading))
> k   (org-speed-move-safe (quote outline-previous-visible-heading))
> l   (org-speed-move-safe (quote org-forward-same-level))
> h   (org-speed-move-safe (quote org-backward-same-level))

I'm actually playing around with this combination:

--8<---------------cut here---------------start------------->8---
  ("h" org-speed-move-safe 'outline-up-heading)
  ("j" org-speed-move-safe 'outline-forward-same-level)
  ("k" org-speed-move-safe 'outline-backward-same-level)
  ("l" org-speed-move-safe 'outline-next-visible-heading)
--8<---------------cut here---------------end--------------->8---

and it's almost quite natural (for me) but quite the opposite of what
you have defined/suggested!  Interesting.


_______________________________________________
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

Reply via email to