From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: Speed commands (was: Release 6.33) Date: Fri, 20 Nov 2009 20:55:35 +0000 Message-ID: <87zl6ggblk.wl%ucecesf@ucl.ac.uk> References: <87aayqfh8a.wl%ucecesf@ucl.ac.uk> <8D1991FE-E04A-41DF-8919-C72E4EA9AFF1@uva.nl> <4AFDB0AB.9040607@cs.tu-berlin.de> <78C217F4-D3EA-46BA-A237-CA0E54216D5E@uva.nl> <20091120143546.GA1227@taupan.ath.cx> <95E34029-6EF2-4E77-B303-37676E5FA79F@gmail.com> <20091120162915.GB5311@taupan.ath.cx> Reply-To: Eric S Fraga Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NBaWE-0004qJ-F4 for emacs-orgmode@gnu.org; Fri, 20 Nov 2009 15:55:50 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NBaW9-0004kq-Kh for emacs-orgmode@gnu.org; Fri, 20 Nov 2009 15:55:49 -0500 Received: from [199.232.76.173] (port=57382 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NBaW9-0004kS-4v for emacs-orgmode@gnu.org; Fri, 20 Nov 2009 15:55:45 -0500 Received: from vscane-b.ucl.ac.uk ([144.82.108.141]:43166) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NBaW8-0007CU-D5 for emacs-orgmode@gnu.org; Fri, 20 Nov 2009 15:55:44 -0500 In-Reply-To: <20091120162915.GB5311@taupan.ath.cx> 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: emacs-orgmode@gnu.org 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.