Merge remote-tracking branch 'lenormf/manpage'
This commit is contained in:
commit
ab20e2e5eb
|
@ -965,6 +965,7 @@ Most commands using a register default to a specific one if not specified:
|
||||||
* `/`: default search register, used by regex based commands like `s`, `*` or `/`
|
* `/`: default search register, used by regex based commands like `s`, `*` or `/`
|
||||||
* `@`: default macro register, used by `q` and `Q`
|
* `@`: default macro register, used by `q` and `Q`
|
||||||
* `^`: default mark register, used by `z` and `Z`
|
* `^`: default mark register, used by `z` and `Z`
|
||||||
|
* `|`: default shell command register, used by command that spawn a subshell such as `|`, `<a-|>`, `!` or `<a-!>`
|
||||||
|
|
||||||
Macros
|
Macros
|
||||||
~~~~~~
|
~~~~~~
|
||||||
|
@ -995,6 +996,9 @@ the `:exec` and `:eval` commands can be used for running Kakoune commands.
|
||||||
paremeters as if they were entered in the command prompt. By default,
|
paremeters as if they were entered in the command prompt. By default,
|
||||||
they do their execution in the context of the current client.
|
they do their execution in the context of the current client.
|
||||||
|
|
||||||
|
These two commands also save the following registers, who are then restored
|
||||||
|
when the commands have been executed: `/`, `"`, `|`, `^`, `@`.
|
||||||
|
|
||||||
Some parameters provide a way to change the context of execution:
|
Some parameters provide a way to change the context of execution:
|
||||||
|
|
||||||
* `-client <name>`: execute in the context of the client named <name>
|
* `-client <name>`: execute in the context of the client named <name>
|
||||||
|
@ -1013,7 +1017,7 @@ Some parameters provide a way to change the context of execution:
|
||||||
* `-no-hooks`: disable hook execution while executing the keys/commands
|
* `-no-hooks`: disable hook execution while executing the keys/commands
|
||||||
* `-with-maps`: use user key mapping in `:exec` instead of built in keys.
|
* `-with-maps`: use user key mapping in `:exec` instead of built in keys.
|
||||||
* `-save-regs <regs>`: regs is a string of registers to be restored after
|
* `-save-regs <regs>`: regs is a string of registers to be restored after
|
||||||
execution.
|
execution (overwrites the list of registers saved by default)
|
||||||
|
|
||||||
The execution stops when the last key/command is reached, or an error
|
The execution stops when the last key/command is reached, or an error
|
||||||
is raised.
|
is raised.
|
||||||
|
|
|
@ -20,6 +20,9 @@ paremeters as if they were entered in the command prompt. By default, their
|
||||||
execution happens within the context of the current client, and stops when
|
execution happens within the context of the current client, and stops when
|
||||||
the last key/command is reached, or an error is raised.
|
the last key/command is reached, or an error is raised.
|
||||||
|
|
||||||
|
These two commands also save the following registers, who are then restored
|
||||||
|
when the commands have been executed: */*, *"*, *|*, *^*, *@*.
|
||||||
|
|
||||||
Optional flags
|
Optional flags
|
||||||
--------------
|
--------------
|
||||||
*-client* <name>::
|
*-client* <name>::
|
||||||
|
@ -51,4 +54,5 @@ Optional flags
|
||||||
use user key mapping in instead of built in keys (*exec* only)
|
use user key mapping in instead of built in keys (*exec* only)
|
||||||
|
|
||||||
*-save-regs* <regs>::
|
*-save-regs* <regs>::
|
||||||
regs is a string of registers to be restored after execution
|
regs is a string of registers to be restored after execution (overwrites
|
||||||
|
the list of registers saved by default, c.f. description)
|
||||||
|
|
|
@ -29,7 +29,7 @@ Most commands using a register default to a specific one if not specified:
|
||||||
and *R*
|
and *R*
|
||||||
|
|
||||||
*/*::
|
*/*::
|
||||||
default search register, used by regex based commands like *s*, *\**
|
default search register, used by regex based commands like *s*, ***
|
||||||
or */*
|
or */*
|
||||||
|
|
||||||
*@*::
|
*@*::
|
||||||
|
@ -38,6 +38,10 @@ Most commands using a register default to a specific one if not specified:
|
||||||
*^*::
|
*^*::
|
||||||
default mark register, used by *z* and *Z*
|
default mark register, used by *z* and *Z*
|
||||||
|
|
||||||
|
*|*::
|
||||||
|
default shell command register, used by command that spawn a subshell such as
|
||||||
|
*|*, *<a-|>*, *!* or *<a-!>*
|
||||||
|
|
||||||
Special registers
|
Special registers
|
||||||
-----------------
|
-----------------
|
||||||
Some registers are not general purposes, they cannot be written to, but they
|
Some registers are not general purposes, they cannot be written to, but they
|
||||||
|
|
|
@ -78,7 +78,7 @@ kak : $(objects)
|
||||||
sed -i -r -e "s,^\.TH .+,.TH KAKOUNE 1 \"\" \"\" \"$(basename $(notdir $<))\"," \
|
sed -i -r -e "s,^\.TH .+,.TH KAKOUNE 1 \"\" \"\" \"$(basename $(notdir $<))\"," \
|
||||||
-e "/^\.SH \"NAME\"/{N;d;}" $(@:.gz=.1)
|
-e "/^\.SH \"NAME\"/{N;d;}" $(@:.gz=.1)
|
||||||
gzip -f $(@:.gz=.1)
|
gzip -f $(@:.gz=.1)
|
||||||
mv $(@:.gz=.1.gz) $@
|
mv -f $(@:.gz=.1.gz) $@
|
||||||
|
|
||||||
test:
|
test:
|
||||||
cd ../test && ./run
|
cd ../test && ./run
|
||||||
|
|
Loading…
Reference in New Issue
Block a user