Docs: add missing insert mode <c-x>L in docs
This commit is contained in:
parent
c6c501eb5b
commit
950e24949a
|
@ -709,18 +709,9 @@ See <<doc/pages/execeval#,`:doc execeval`>>.
|
||||||
Insert mode completion
|
Insert mode completion
|
||||||
~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
Kakoune can propose completions while inserting text, the `completers` option
|
Kakoune can propose completions while inserting text: filenames, words, lines…
|
||||||
controls automatic completion, which kicks in when a certain idle timeout is
|
|
||||||
reached (see `idle_timeout` option). Insert mode completion can be explicitly triggered
|
|
||||||
using `<c-x>`, followed, by:
|
|
||||||
|
|
||||||
* *f* : filename completion
|
See <<doc/pages/keys#insert-mode-completion,`:doc keys insert-mode-completion`>>.
|
||||||
* *w* : word completion (current buffer)
|
|
||||||
* *W* : word completion (all buffers)
|
|
||||||
* *l* : line completion (current buffer)
|
|
||||||
* *L* : line completion (all buffers)
|
|
||||||
|
|
||||||
Completion candidates can be selected using `<c-n>` and `<c-p>`.
|
|
||||||
|
|
||||||
Escape to normal mode
|
Escape to normal mode
|
||||||
~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
|
@ -31,6 +31,26 @@ In order to bind some keys to arbitrary ones, refer to <<mapping#,`:doc mapping`
|
||||||
*<end>*::
|
*<end>*::
|
||||||
move cursors to end of line
|
move cursors to end of line
|
||||||
|
|
||||||
|
*<c-r>*::
|
||||||
|
insert contents of the register given by next key
|
||||||
|
|
||||||
|
*<c-v>*::
|
||||||
|
insert next keystroke directly into the buffer, without interpreting it
|
||||||
|
|
||||||
|
*<c-u>*::
|
||||||
|
commit changes up to now as a single undo group
|
||||||
|
|
||||||
|
*<a-;>*::
|
||||||
|
escape to normal mode for a single command
|
||||||
|
|
||||||
|
== Insert mode completion
|
||||||
|
|
||||||
|
The `completers` option controls automatic completion, which kicks in when
|
||||||
|
the value specified in the `idle_timeout` option is reached.
|
||||||
|
|
||||||
|
*<c-o>*::
|
||||||
|
disable automatic completion for this insert session
|
||||||
|
|
||||||
*<c-n>*::
|
*<c-n>*::
|
||||||
select next completion candidate
|
select next completion candidate
|
||||||
|
|
||||||
|
@ -50,22 +70,10 @@ In order to bind some keys to arbitrary ones, refer to <<mapping#,`:doc mapping`
|
||||||
explicit word completion (all buffers)
|
explicit word completion (all buffers)
|
||||||
|
|
||||||
*l*:::
|
*l*:::
|
||||||
explicit line completion
|
explicit line completion (current buffer)
|
||||||
|
|
||||||
*<c-o>*::
|
*L*:::
|
||||||
disable automatic completion for this insert session
|
explicit line completion (all buffers)
|
||||||
|
|
||||||
*<c-r>*::
|
|
||||||
insert contents of the register given by next key
|
|
||||||
|
|
||||||
*<c-v>*::
|
|
||||||
insert next keystroke directly into the buffer, without interpreting it
|
|
||||||
|
|
||||||
*<c-u>*::
|
|
||||||
commit changes up to now as a single undo group
|
|
||||||
|
|
||||||
*<a-;>*::
|
|
||||||
escape to normal mode for a single command
|
|
||||||
|
|
||||||
== Using Counts
|
== Using Counts
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user