2016-02-03 18:15:35 +01:00
|
|
|
KAKOUNE(1)
|
|
|
|
==========
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
registers - a
|
|
|
|
|
|
|
|
Description
|
|
|
|
-----------
|
2016-02-10 22:03:49 +01:00
|
|
|
Registers are named lists of text -instead of simply text- in order to interact
|
|
|
|
well with multiselection. They are used for various purposes, like storing
|
|
|
|
the last yanked test, or the captured groups associated with the selections.
|
2016-02-03 18:15:35 +01:00
|
|
|
|
|
|
|
Interacting
|
|
|
|
-----------
|
|
|
|
*<c-r><c>*::
|
2016-02-10 22:03:49 +01:00
|
|
|
when in insert mode or in a prompt, insert the value stored in the
|
|
|
|
*c* register (single character)
|
2016-02-03 18:15:35 +01:00
|
|
|
|
|
|
|
*"<c>*::
|
|
|
|
in normal mode, select the *<c>* register (single character)
|
|
|
|
|
2016-10-09 22:32:36 +02:00
|
|
|
Alternate names
|
|
|
|
---------------
|
|
|
|
|
|
|
|
non alphanumeric registers have an alternative name that can be used
|
|
|
|
in contexts where only alphanumeric identifiers are possible.
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
Default registers
|
|
|
|
-----------------
|
2016-02-02 20:15:12 +01:00
|
|
|
Most commands using a register default to a specific one if not specified:
|
|
|
|
|
2016-10-09 22:32:36 +02:00
|
|
|
*"* (dquote)::
|
|
|
|
default yank register, used by yanking and pasting commands like *y*, *p*
|
2016-02-10 22:03:49 +01:00
|
|
|
and *R*
|
2016-02-03 18:15:35 +01:00
|
|
|
|
2016-10-09 22:32:36 +02:00
|
|
|
*/* (slash)::
|
2016-02-18 13:57:23 +01:00
|
|
|
default search register, used by regex based commands like *s*, ***
|
2016-02-10 22:03:49 +01:00
|
|
|
or */*
|
2016-02-03 18:15:35 +01:00
|
|
|
|
2016-10-09 22:32:36 +02:00
|
|
|
*@* (arobase)::
|
2016-02-03 18:15:35 +01:00
|
|
|
default macro register, used by *q* and *Q*
|
|
|
|
|
2016-10-09 22:32:36 +02:00
|
|
|
*^* (caret)::
|
2016-02-03 18:15:35 +01:00
|
|
|
default mark register, used by *z* and *Z*
|
|
|
|
|
2016-10-09 22:32:36 +02:00
|
|
|
*|* (pipe)::
|
2016-02-18 13:57:23 +01:00
|
|
|
default shell command register, used by command that spawn a subshell such as
|
|
|
|
*|*, *<a-|>*, *!* or *<a-!>*
|
|
|
|
|
2016-02-03 18:15:35 +01:00
|
|
|
Special registers
|
|
|
|
-----------------
|
2016-02-10 22:03:49 +01:00
|
|
|
Some registers are not general purposes, they cannot be written to, but they
|
|
|
|
contain some special data
|
2016-02-02 20:15:12 +01:00
|
|
|
|
2016-10-09 22:32:36 +02:00
|
|
|
*%* (percent)::
|
2016-02-03 18:15:35 +01:00
|
|
|
current buffer name
|
|
|
|
|
2016-10-09 22:32:36 +02:00
|
|
|
*.* (dot)::
|
2016-02-03 18:15:35 +01:00
|
|
|
current selection contents
|
|
|
|
|
2016-10-11 00:19:23 +02:00
|
|
|
*#* (hash)::
|
2016-02-03 18:15:35 +01:00
|
|
|
selection indices (first selection has 1, second has 2, ...)
|
2016-03-16 13:29:43 +01:00
|
|
|
|
2016-10-09 22:32:36 +02:00
|
|
|
*_* (underscore)::
|
2016-03-31 10:19:33 +02:00
|
|
|
null register, always empty
|
|
|
|
|
2016-03-16 13:29:43 +01:00
|
|
|
Integer registers
|
|
|
|
-----------------
|
|
|
|
Registers *1* to *9* hold the grouped sub-matches of the regular
|
|
|
|
expression used to make the last selection. Example: applying the
|
|
|
|
following regular expression to the date of the day would put the day of
|
|
|
|
the week in register *1*, the month in register *2*, and the day of the
|
|
|
|
month in register *3*, but select the entire date:
|
|
|
|
|
|
|
|
--------------------
|
|
|
|
(\w+) (\w+) (\d+) .+
|
|
|
|
--------------------
|