kakoune/doc/pages/mapping.asciidoc

120 lines
3.4 KiB
Plaintext
Raw Normal View History

= Mapping
== Description
Creating and removing shortcuts boils down to the following commands,
respectively:
---------------------------------------
map [switches] <scope> <mode> <key> <keys>
unmap <scope> <mode> <key> [<expected>]
---------------------------------------
The *map* command makes *key* behave as if the *keys* sequence was typed.
*mode* dictates in what context the mapping will be available:
2017-11-02 10:37:39 +01:00
*insert*::
insert mode
2017-11-02 10:37:39 +01:00
*normal*::
normal mode
2017-11-02 10:37:39 +01:00
*prompt*::
prompts, such as when entering a command through *:*, or a regex through */*
2017-11-02 10:37:39 +01:00
*menu*::
mode entered when a menu is displayed with the 'menu' command
2017-11-02 10:37:39 +01:00
*user*::
mode entered when the user prefix is hit (default: ',')
2017-11-02 10:37:39 +01:00
*goto*::
mode entered when the goto key is hit (default: 'g')
2017-11-02 10:37:39 +01:00
*view*::
mode entered when the view key is hit (default: 'v')
2017-11-02 10:37:39 +01:00
*object*::
mode entered when an object selection is triggered (e.g. '<a-i>')
The context of execution of the above modes is always the current one at the
time of execution of the mapping, except for *user* mode (always executed
2018-02-23 14:31:28 +01:00
in a 'normal' context). Refer to <<modes#,`:doc modes`>> for more details.
An optional *-docstring* switch followed by a string can be used
to describe what the mapping does. This docstring will be used
in autoinfo boxes.
The *unmap* command removes a mapping of *key* in the given *scope* and
*mode*. If *expected* is specified, the mapping is removed only if it is
set to the same sequence of keys passed using the *expected* argument.
For more information about the values of the *scope* parameter, refer to
2017-11-06 10:08:59 +01:00
<<scopes#,`:doc scopes`>>.
2017-09-18 04:59:41 +02:00
== Mappable keys
2017-09-18 04:59:41 +02:00
2018-02-23 14:31:28 +01:00
See <<keys#,`:doc keys`>> to discover the list of default bindings.
2017-09-18 04:59:41 +02:00
For *key* and *keys* in the *map* command, the following key names can
be used:
*x*, *<x>*::
2017-11-02 10:37:39 +01:00
Most keys, especially alphabetic keys, represent themselves.
Keys can also be wrapped in angle-brackets for consistency
with the non-alphabetic keys below.
2017-09-18 04:59:41 +02:00
*<c-x>*::
2017-11-02 10:37:39 +01:00
Holding down Control while pressing the *x* key.
2017-09-18 04:59:41 +02:00
*<a-x>*::
2017-11-02 10:37:39 +01:00
Holding down Alt while pressing the *x* key.
2017-09-18 04:59:41 +02:00
*<s-x>*, *X*, *<X>*, *<s-X>*::
Holding down Shift while pressing the *x* key.
*<s-x>*, *<s-X>* and *<X>* are treated as the same key. The *s-* modifier
only works with ASCII letters and cannot be used with other printable keys
(non-ASCII letters, digits, punctuation) because their shift behaviour
depends on your keyboard layout. The *s-* modifier _can_ be used with
special keys like *<up>* and *<tab>*.
2017-11-06 10:08:59 +01:00
*<c-a-x>*::
Holding down Control and Alt while pressing the *x* key.
2017-09-18 04:59:41 +02:00
*<lt>*, *<gt>*::
2017-11-02 10:37:39 +01:00
The *<* and *>* characters.
2017-09-18 04:59:41 +02:00
*<plus>*, *<minus>*::
The *+* and *-* characters.
2017-09-18 04:59:41 +02:00
*<ret>*::
2017-11-02 10:37:39 +01:00
The Return or Enter key.
2017-09-18 04:59:41 +02:00
*<space>*::
2017-11-02 10:37:39 +01:00
The space bar.
2017-09-18 04:59:41 +02:00
*<tab>*::
2017-11-02 10:37:39 +01:00
The Tab key.
2017-09-18 04:59:41 +02:00
*<backspace>*::
2017-11-02 10:37:39 +01:00
The Backspace (delete to the left) key.
2017-09-18 04:59:41 +02:00
*<del>*::
2017-11-02 10:37:39 +01:00
The Delete (to the right) key.
2017-09-18 04:59:41 +02:00
*<esc>*::
2017-11-02 10:37:39 +01:00
The Escape key.
2017-09-18 04:59:41 +02:00
2017-11-06 10:08:59 +01:00
*<up>*, *<down>*, *<left>*, *<right>*::
*<pageup>*, *<pagedown>*, *<home>*, *<end>*::
2017-11-02 10:37:39 +01:00
The usual cursor-movement keys.
2017-09-18 04:59:41 +02:00
*<f1>*, *<f2>*, ...*<f12>*::
2017-11-02 10:37:39 +01:00
Function keys.
NOTE: Although Kakoune allows many key combinations to be mapped, not every
possible combination can be triggered. For example, due to limitations in
the way terminals handle control characters, mappings like *<c-s-a>* are
unlikely to work in Kakoune's terminal UI.