1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-12 20:19:10 +03:00

Change all instances of count to monospace

This commit is contained in:
Jan-Jaap Korpershoek 2019-02-01 18:19:50 +01:00
parent 4521099ebb
commit 0d8d32cf38

View File

@ -77,7 +77,7 @@ the value specified in the `idle_timeout` option is reached.
== Using Counts == Using Counts
In normal mode, commands can be prefixed with a numeric count, which can control In normal mode, commands can be prefixed with a numeric `count`, which can control
the command behaviour. the command behaviour.
For example, *3W* selects 3 consecutive words and *3w* select the third word on For example, *3W* selects 3 consecutive words and *3w* select the third word on
@ -227,11 +227,11 @@ Yanking (copying) and pasting use the *"* register by default (See <<registers#,
the end of each selection the end of each selection
*o*:: *o*::
enter insert mode in a new line (or in a given count of new lines) enter insert mode in a new line (or in a given `count` of new lines)
below the end of each selection below the end of each selection
*O*:: *O*::
enter insert mode in a new line (or in a given count of new lines) enter insert mode in a new line (or in a given `count` of new lines)
above the beginning of each selection above the beginning of each selection
*<a-o>*:: *<a-o>*::
@ -304,7 +304,7 @@ Yanking (copying) and pasting use the *"* register by default (See <<registers#,
*<a-&>*:: *<a-&>*::
copy indent, copy the indentation of the main selection (or the copy indent, copy the indentation of the main selection (or the
count one if a count is given) to all other ones `count` one if a `count` is given) to all other ones
*`*:: *`*::
to lower case to lower case
@ -317,18 +317,18 @@ Yanking (copying) and pasting use the *"* register by default (See <<registers#,
*@*:: *@*::
convert tabs to spaces in each selection, uses the buffer tabstop convert tabs to spaces in each selection, uses the buffer tabstop
option or the count parameter for tabstop option or the `count` parameter for tabstop
*<a-@>*:: *<a-@>*::
convert spaces to tabs in each selection, uses the buffer tabstop convert spaces to tabs in each selection, uses the buffer tabstop
option or the count parameter for tabstop option or the `count` parameter for tabstop
*_*:: *_*::
unselect whitespace surrounding each selection, drop those that only unselect whitespace surrounding each selection, drop those that only
contain whitespace contain whitespace
*<a-)>*:: *<a-)>*::
rotate selections content, if specified, the count groups selections, rotate selections content, if specified, the `count` groups selections,
so the following command so the following command
---------- ----------
@ -398,7 +398,7 @@ Searches use the */* register by default (See <<registers#,`:doc registers`>>)
== Goto commands == Goto commands
*g*, *G*:: *g*, *G*::
When a count is specified, *G* only extends the selection to the given line, When a `count` is specified, *G* only extends the selection to the given line,
*g* sends the anchor to the given line and a menu is then displayed which waits *g* sends the anchor to the given line and a menu is then displayed which waits
for one of the following additional keys: for one of the following additional keys:
@ -458,16 +458,16 @@ Searches use the */* register by default (See <<registers#,`:doc registers`>>)
scroll to put the main selection on the bottom line of the window scroll to put the main selection on the bottom line of the window
*h*::: *h*:::
scroll the window count columns left scroll the window `count` columns left
*j*::: *j*:::
scroll the window count line downward scroll the window `count` line downward
*k*::: *k*:::
scroll the window count line upward scroll the window `count` line upward
*l*::: *l*:::
scroll the window count columns right scroll the window `count` columns right
== Marks == Marks
@ -583,7 +583,7 @@ to skim through the jump list using:
== Object Selection == Object Selection
For nestable objects, a count can be used in order to specify which surrounding For nestable objects, a `count` can be used in order to specify which surrounding
level to select. Object selections are repeatable using *<a-.>*. level to select. Object selections are repeatable using *<a-.>*.
=== Whole object === Whole object