emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Re: Re: Feature request - add a new heading with a lower level than current
@ 2007-12-10 23:01 Charles Cave
  2007-12-11 10:28 ` Phil Jackson
  0 siblings, 1 reply; 3+ messages in thread
From: Charles Cave @ 2007-12-10 23:01 UTC (permalink / raw)
  To: emacs-orgmode

> Will

> Or you could just do "M-return M-right" - is that really too slow for 
> you?

Thank you!  I hadn't thought of that.   Entering M-right is
easy because I am already holding the Meta key with my thumb
so it is just a matter of continuing to hold the thumb and hitting
the right arrow key.

Charles

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Feature request - add a new heading with a lower level than current
  2007-12-10 23:01 Re: Feature request - add a new heading with a lower level than current Charles Cave
@ 2007-12-11 10:28 ` Phil Jackson
  2007-12-11 14:30   ` Rustom Mody
  0 siblings, 1 reply; 3+ messages in thread
From: Phil Jackson @ 2007-12-11 10:28 UTC (permalink / raw)
  To: charles_cave; +Cc: emacs-orgmode

Charles Cave <charles_cave@optusnet.com.au> writes:

>> Or you could just do "M-return M-right" - is that really too slow for
>> you?
>
> Thank you!  I hadn't thought of that.  Entering M-right is easy
> because I am already holding the Meta key with my thumb so it is just
> a matter of continuing to hold the thumb and hitting the right arrow
> key.

[...]

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Feature request - add a new heading with a lower level than current
  2007-12-11 10:28 ` Phil Jackson
@ 2007-12-11 14:30   ` Rustom Mody
  0 siblings, 0 replies; 3+ messages in thread
From: Rustom Mody @ 2007-12-11 14:30 UTC (permalink / raw)
  To: emacs-orgmode

On Dec 11, 2007 3:58 PM, Phil Jackson <phil@shellarchive.co.uk> 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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-12-11 14:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-12-10 23:01 Re: Feature request - add a new heading with a lower level than current Charles Cave
2007-12-11 10:28 ` Phil Jackson
2007-12-11 14:30   ` Rustom Mody

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).