Merge remote-tracking branch 'dontlaugh/patch-1'
This commit is contained in:
commit
a52b867dba
|
@ -423,6 +423,11 @@ but not really useful in that context.
|
||||||
|
|
||||||
== Module commands
|
== Module commands
|
||||||
|
|
||||||
|
In Kakoune, modules are a grouping of stored commands to be executed the first time
|
||||||
|
they are needed. This allows complex configurations to be evaluated lazily, and allows
|
||||||
|
plugins to ensure their dependencies have been loaded before they execute. The builtin
|
||||||
|
filetype handling for Kakoune is implemented via modules.
|
||||||
|
|
||||||
*provide-module* [<switches>] <name> <commands>::
|
*provide-module* [<switches>] <name> <commands>::
|
||||||
declares a module *name* that is defined by *commands*. *commands* will be
|
declares a module *name* that is defined by *commands*. *commands* will be
|
||||||
evaluated as if by source the first time *require-module <name>* is run.
|
evaluated as if by source the first time *require-module <name>* is run.
|
||||||
|
|
|
@ -716,7 +716,7 @@ When pressing `:` in normal mode, Kakoune will open a prompt to enter
|
||||||
a command. The executed command line is stored in the *:* register
|
a command. The executed command line is stored in the *:* register
|
||||||
(See <<registers#,`:doc registers`>>).
|
(See <<registers#,`:doc registers`>>).
|
||||||
|
|
||||||
During edition, a transient *clipboard* is available, its content is
|
During editing, a transient *clipboard* is available, its content is
|
||||||
empty at the start of prompt edition, and is not preserved afterwards.
|
empty at the start of prompt edition, and is not preserved afterwards.
|
||||||
|
|
||||||
The following keys are recognized by this mode to help with editing
|
The following keys are recognized by this mode to help with editing
|
||||||
|
|
|
@ -342,7 +342,7 @@ are exclusively available to built-in options.
|
||||||
|
|
||||||
*ui_options* `str-to-str-map`::
|
*ui_options* `str-to-str-map`::
|
||||||
a list of `key=value` pairs that are forwarded to the user
|
a list of `key=value` pairs that are forwarded to the user
|
||||||
interface implementation. The NCurses UI support the following options:
|
interface implementation. The NCurses UI supports the following options:
|
||||||
|
|
||||||
*terminal_set_title*:::
|
*terminal_set_title*:::
|
||||||
if *yes* or *true*, the terminal emulator title will
|
if *yes* or *true*, the terminal emulator title will
|
||||||
|
|
Loading…
Reference in New Issue
Block a user