Docs: add missing colon register (last entered command)

This commit is contained in:
Delapouite 2017-07-10 22:05:21 +02:00
parent 52c8dc9d09
commit 0d2b303f62
3 changed files with 6 additions and 1 deletions

View File

@ -1098,6 +1098,7 @@ contain some special data:
* `.` (`dot`): current selection contents
* `#` (`hash`): selection indices (first selection has 1, second has 2, ...)
* `_` (`underscore`): null register, always empty
* `:` (`colon`): last entered command
Default registers
^^^^^^^^^^^^^^^^^

View File

@ -65,6 +65,9 @@ contain some special data
*_* (underscore)::
null register, always empty
*:* (colon)::
last entered command
Integer registers
-----------------
Registers *1* to *9* hold the grouped sub-matches of the regular

View File

@ -20,7 +20,8 @@ Register& RegisterManager::operator[](StringView reg) const
{ "percent", '%' },
{ "dot", '.' },
{ "hash", '#' },
{ "underscore", '_' }
{ "underscore", '_' },
{ "colon", ':' }
};
auto it = reg_names.find(reg);
if (it == reg_names.end())