From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Rustom Mody" Subject: Re: Feature request - add a new heading with a lower level than current Date: Tue, 11 Dec 2007 20:00:17 +0530 Message-ID: References: <200712102301.lBAN1ldk018426@mail01.syd.optusnet.com.au> <87prxded9s.fsf@shellarchive.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J267q-0004vF-1Z for emacs-orgmode@gnu.org; Tue, 11 Dec 2007 09:30:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J267o-0004uV-Ej for emacs-orgmode@gnu.org; Tue, 11 Dec 2007 09:30:21 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J267o-0004uS-6a for emacs-orgmode@gnu.org; Tue, 11 Dec 2007 09:30:20 -0500 Received: from rv-out-0910.google.com ([209.85.198.190]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J267n-0001E2-NU for emacs-orgmode@gnu.org; Tue, 11 Dec 2007 09:30:20 -0500 Received: by rv-out-0910.google.com with SMTP id c27so3194356rvf for ; Tue, 11 Dec 2007 06:30:17 -0800 (PST) In-Reply-To: <87prxded9s.fsf@shellarchive.co.uk> Content-Disposition: inline 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 On Dec 11, 2007 3:58 PM, Phil Jackson wrote: > > On a side note; I use C-p, C-n, C-b and C-f for my basic navigation > meaning the cursor keys are free for me so in org I bind them to: > > ,---- > | (define-key org-mode-map [left] 'org-metaleft) > | (define-key org-mode-map [right] 'org-metaright) > | (define-key org-mode-map [up] 'org-metaup) > | (define-key org-mode-map [down] 'org-metadown) > `---- > > Making re-organisation of the headings really fast. > > Cheers, > Phil When working with lisp, Ive found it convenient to bind the numeric-keypad keys to s-exp movement and leave the cursor-movement keypad keys to character movement. ie (define-key lisp-mode-map [kp-left] 'backward-sexp) (define-key lisp-mode-map [left] 'backward-char) ;; the default etc For org mode you may want to try something analogous like: (define-key org-mode-map [kp-left] 'org-metaleft) (define-key org-mode-map [left] 'backward-char) ;; the default Rustom