Go to the first, previous, next, last section, table of contents.


Keys

As far as possible each single character key-definition corresponds to where that character is on the keyboard (a is `a', etc...).

When using an Amiga this should be true for all keys since the Amiga's "keymap.library" makes it easy to look up what key a character belongs to. However, this is not so easy on X11. All of the standard ASCII character set should be okay, but the more esoteric characters may have to be specified by the names of their X11 keysym (without the `XK_' prefix). Look in the <X11/keysymdef.h> include file for all keysyms, for example `XK_question' would have to be used for `?' if the editor didn't treat it, and many others, specially.

Some keys which don't follow this pattern are

SPC
Space
The space bar.
TAB
The tab key.
RET
Return
The return key.
ESC
Escape
The escape key.
BS
Backspace
The backspace key.
DEL
Delete
The delete key.
Help
The help key, not all keyboards have this.
Up
The cursor up key.
Down
The cursor down key
Left
The cursor left key.
Right
The cursor right key.
KP_Enter
KP_Multiply
KP_Divide
KP_Minus
KP_Add
KP_Decimal
KP_n
Keys on the numeric keypad. For KP_n, n is a digit.
Click1
Single clicking a mouse button.
Click2
Double clicking a mouse button.
Off
Releasing a mouse button.
Move
Moving the mouse. This doesn't work on X11 yet.


Go to the first, previous, next, last section, table of contents.