There are two different types of keymap; one for keymaps which contain only a few bindings, the other providing a more efficient method of storing larger numbers of bindings.
keymap. All subsequent
elements define bindings, they are represented by three-element vectors. The
first two are the contents of the cons cell representing the input event,
the other element is the command to be invoked.
For example,
(keymap [120 9 some-command])Since the event
(120 . 9) is the key press Ctrl-x, this
keymap binds the command some-command to the key press Ctrl-x.
keymap symbol).
Go to the first, previous, next, last section, table of contents.