Skip to content

Commit

Permalink
fix titles in the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gokcehan committed Apr 6, 2018
1 parent 01581f9 commit 0175c1b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
8 changes: 4 additions & 4 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ commands it is possible to accidentally create recursive bindings:
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
purposes. For example, we can write a shell command to move selected file(s) to
Expand Down Expand Up @@ -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
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
error message is given and the command exits afterwards, the ui is immediately
Expand All @@ -315,15 +315,15 @@ 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
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
wait for a key press when the command is finished. These can be useful 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 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 and
then resume operation without waiting for the command to finish. Stdin, stdout,
Expand Down
12 changes: 8 additions & 4 deletions docstring.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,8 @@ of commands it is possible to accidentally create recursive bindings:
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 purposes. For example, we can write a shell command to move selected
Expand Down Expand Up @@ -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
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 error message is given and the command exits afterwards, the ui is
Expand Down Expand Up @@ -329,15 +331,17 @@ 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.
Waiting Shell Commands (!)
Waiting Shell Commands
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 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 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 then resume operation without waiting for the command to finish. Stdin,
Expand Down

0 comments on commit 0175c1b

Please sign in to comment.