fix titles in the documentation
This commit is contained in:
parent
01581f902f
commit
0175c1bd1b
8
doc.go
8
doc.go
@ -244,7 +244,7 @@ commands it is possible to accidentally create recursive bindings:
|
|||||||
|
|
||||||
These types of bindings create a deadlock when executed.
|
These types of bindings create a deadlock when executed.
|
||||||
|
|
||||||
Shell Commands ($)
|
Shell Commands
|
||||||
|
|
||||||
Regular shell commands are the most basic command type that is useful for many
|
Regular shell commands are the most basic command type that is useful for many
|
||||||
purposes. For example, we can write a shell command to move selected file(s) to
|
purposes. For example, we can write a shell command to move selected file(s) to
|
||||||
@ -288,7 +288,7 @@ could use the 'ifs' option to set it for all shell commands (i.e. 'set ifs
|
|||||||
behave unexpectedly for new users. However, use of this option is highly
|
behave unexpectedly for new users. However, use of this option is highly
|
||||||
recommended and it is assumed in the rest of the documentation.
|
recommended and it is assumed in the rest of the documentation.
|
||||||
|
|
||||||
Piping Shell Commands (%)
|
Piping Shell Commands
|
||||||
|
|
||||||
Regular shell commands have some limitations in some cases. When an output or
|
Regular shell commands have some limitations in some cases. When an output or
|
||||||
error message is given and the command exits afterwards, the ui is immediately
|
error message is given and the command exits afterwards, the ui is immediately
|
||||||
@ -315,7 +315,7 @@ statline. For example, an alternative rename command may look like this:
|
|||||||
One thing to be careful is that although input is still line buffered, output
|
One thing to be careful is that although input is still line buffered, output
|
||||||
and error are byte buffered and verbose commands will be very slow to display.
|
and error are byte buffered and verbose commands will be very slow to display.
|
||||||
|
|
||||||
Waiting Shell Commands (!)
|
Waiting Shell Commands
|
||||||
|
|
||||||
Waiting shell commands are similar to regular shell commands except that they
|
Waiting shell commands are similar to regular shell commands except that they
|
||||||
wait for a key press when the command is finished. These can be useful to see
|
wait for a key press when the command is finished. These can be useful to see
|
||||||
@ -323,7 +323,7 @@ the output of a program before the ui is resumed. Waiting shell commands are
|
|||||||
more appropriate than piping shell commands when the command is verbose and the
|
more appropriate than piping shell commands when the command is verbose and the
|
||||||
output is best displayed as multiline.
|
output is best displayed as multiline.
|
||||||
|
|
||||||
Asynchronous Shell Commands (&)
|
Asynchronous Shell Commands
|
||||||
|
|
||||||
Asynchronous shell commands are used to start a command in the background and
|
Asynchronous shell commands are used to start a command in the background and
|
||||||
then resume operation without waiting for the command to finish. Stdin, stdout,
|
then resume operation without waiting for the command to finish. Stdin, stdout,
|
||||||
|
12
docstring.go
12
docstring.go
@ -254,7 +254,8 @@ of commands it is possible to accidentally create recursive bindings:
|
|||||||
|
|
||||||
These types of bindings create a deadlock when executed.
|
These types of bindings create a deadlock when executed.
|
||||||
|
|
||||||
Shell Commands ($)
|
|
||||||
|
Shell Commands
|
||||||
|
|
||||||
Regular shell commands are the most basic command type that is useful for
|
Regular shell commands are the most basic command type that is useful for
|
||||||
many purposes. For example, we can write a shell command to move selected
|
many purposes. For example, we can write a shell command to move selected
|
||||||
@ -300,7 +301,8 @@ or '$rm $fs' would simply work). This option is not set by default as it can
|
|||||||
behave unexpectedly for new users. However, use of this option is highly
|
behave unexpectedly for new users. However, use of this option is highly
|
||||||
recommended and it is assumed in the rest of the documentation.
|
recommended and it is assumed in the rest of the documentation.
|
||||||
|
|
||||||
Piping Shell Commands (%)
|
|
||||||
|
Piping Shell Commands
|
||||||
|
|
||||||
Regular shell commands have some limitations in some cases. When an output
|
Regular shell commands have some limitations in some cases. When an output
|
||||||
or error message is given and the command exits afterwards, the ui is
|
or error message is given and the command exits afterwards, the ui is
|
||||||
@ -329,7 +331,8 @@ One thing to be careful is that although input is still line buffered,
|
|||||||
output and error are byte buffered and verbose commands will be very slow to
|
output and error are byte buffered and verbose commands will be very slow to
|
||||||
display.
|
display.
|
||||||
|
|
||||||
Waiting Shell Commands (!)
|
|
||||||
|
Waiting Shell Commands
|
||||||
|
|
||||||
Waiting shell commands are similar to regular shell commands except that
|
Waiting shell commands are similar to regular shell commands except that
|
||||||
they wait for a key press when the command is finished. These can be useful
|
they wait for a key press when the command is finished. These can be useful
|
||||||
@ -337,7 +340,8 @@ to see the output of a program before the ui is resumed. Waiting shell
|
|||||||
commands are more appropriate than piping shell commands when the command is
|
commands are more appropriate than piping shell commands when the command is
|
||||||
verbose and the output is best displayed as multiline.
|
verbose and the output is best displayed as multiline.
|
||||||
|
|
||||||
Asynchronous Shell Commands (&)
|
|
||||||
|
Asynchronous Shell Commands
|
||||||
|
|
||||||
Asynchronous shell commands are used to start a command in the background
|
Asynchronous shell commands are used to start a command in the background
|
||||||
and then resume operation without waiting for the command to finish. Stdin,
|
and then resume operation without waiting for the command to finish. Stdin,
|
||||||
|
Loading…
Reference in New Issue
Block a user