Emacs's default keybindings are very ergonomically painful, for several reasons. (For detail, see: Why Emacs's Keyboard Shortcuts are Painful.) This page shows a emacs package that makes your emacs use a new shortcut set. This shortcut set is designed based on ergonomic principles, based on emacs's command call statistics, similar to how Dvorak Layout is designed.
Note: a new home page is at http://mlf176f2.github.io/ErgoEmacs/. That page should be the new home going forward.
IMPORTANT: Note: in the dev version, the isearch is moved from 【Alt+;】 to 【Alt+y】. Cancel command is moved from 【Alt+n】 to 【Esc】.
| ←w | →w | prev/next word |
| ←¶ | →¶ | prev/next paragraph |
| |← | →| | beginning/ending of line |
| ⌫w | ⌦w | delete prev/next word |
| |⌫ | ⌦| | delete to beginning/end of line |
| ▲ | ▼ | page up/down |
| |◀ | ▶| | beginning/end of file |
| isearch← | isearch→ | isearch previous/next |
Layout image with Dvorak key labels: ErgoEmacs Keybinding Dvorak.
Two ways to get it:
• Dev version from MELPA, using emacs 24 package system. Just call list-packages to install. 〔☛ A Guide on Emacs 24 Package System〕. (Thanks to Steve Purcell)
• Dev version git clone: http://code.google.com/p/ergoemacs/source/browse/ergoemacs/ergoemacs-keybindings. You'll need to git clone the whole ErgoEmacs project, because git does not allow cloning just subdirectory.
• Oldish, stable release. ZIP file: ergoemacs-keybindings-5.3.9.zip (Released on , tested with emacs 23.2.1.)
Older versions, for emacs 22 or emacs 23:
These older versions are provided for whatever reasons people might want them. You shouldn't use it unless you have good reasons. The 4.3.x versions are simple settings of global keymap, not a minor mode. The 5.3.x or later is a minor mode. Version since 2013-01-24 has a complete new key engine.
the best place to ask questions is at https://groups.google.com/group/ergoemacs
Here's the outline of how this design is arrived.
Statistics of emacs commands are compiled from emacs users, and are listed by frequency of use. The top about 30 ones, are given a keyboard shortcut.
To assign the key position, the following rules are used. The rules are listed roughly in order of priority:
The design is based on finger positions, not on first letter of command names. The shortcut set is the same for QWERTY and Dvorak. The ease of remembering what commands are on what keys are based on grouping and positioning. For example, cursor movings are all right hand, text changing are all left hand, moving or deleting to the left/right have keys that are place left and right together, and similar for up/down (by screen or to beginning/end of file). Undo, Cut, Copy, Paste are the familiar row Z X C V.
In this design, only the 【Alt+‹key›】 space is used. Some Alt+⇧ Shift is used too. 【Ctrl+‹key›】 space is not used except 7 standard keybindings (Open, Close, Save, Save As, Print, Select All). The operation and consistency of emacs are not affected.
David Capello rewrote this package into a full-featured minor-mode starting with version 5.0.0. ().
Matthew L Fidler did complete rewrite of the key engine, starting with version 5.6.1 (). Huge number of features are added. Matthew is the current maintainer.
Thanks to many people who helped in code snippets or suggestions, including providing versions for different keyboard layouts (⁖ UK, Italian, Swedish, Danish, …). Please see the package's header for a full list.