emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Will default key bindings spell the death of Emacs?


From: Stefan Monnier
Subject: Re: Will default key bindings spell the death of Emacs?
Date: Thu, 29 May 2003 20:10:44 -0400

> I do not argue that we should implement MS Windows-like keybindings. I just
> argue that it should be easyer to change key bindings.

What exactly are you suggesting to make it easier ?
You'll get better feedback if you show us actual concrete problems
rather than philosophical arguments about how things should be easier.

I'm not sure what you mean by keybindings being hard to change,
but let's suppose it's because C-c, C-x and ESC are so pervasive
that you can't really move them.  I think you can solve this
using mappings such as:

(define-key key-translation-map [?\C-c] [control-c])

so that hitting C-c will now lookup bindings on the `control-c'
key which is completely free for you to use.

Or you can swap to keys:

(define-key key-translation-map [?\C-x] [?\A-x])
(define-key key-translation-map [?\A-x] [?\C-x])

so that all the C-x bindings are now actually on your Alt-x key
(assuming you have both Alt and Meta keys) and vice versa.

Very few applications are as flexible when it comes to configuring
key bindings.  If you don't like long-key-combos and prefer having
different modes, you can try M-x viper RET which offers a completely
different set of bindings which many people like.


        Stefan





reply via email to

[Prev in Thread] Current Thread [Next in Thread]