docs: use monospace for inline code snippets more consistently

This commit is contained in:
Johannes Altmanninger
2020-10-26 19:19:05 +01:00
parent 5ff2d38d4c
commit 4081d58577
12 changed files with 41 additions and 41 deletions

View File

@@ -37,7 +37,7 @@ The following options change what part of the commandline is printed or updated:
- ``-b`` or ``--current-buffer`` select the entire buffer, including any displayed autosuggestion (default)
- ``-j`` or ``--current-job`` select the current job - a `job` here is one pipeline. It stops at logical operators or terminators (`;`, `&` or newlines).
- ``-j`` or ``--current-job`` select the current job - a `job` here is one pipeline. It stops at logical operators or terminators (``;``, ``&`` or newlines).
- ``-p`` or ``--current-process`` select the current process - a `process` here is one simple command. It stops at logical operators, terminators or pipes.
@@ -77,11 +77,11 @@ If the commandline contains
(with the cursor on the "o" of "flounder")
The `echo $flounder >&` is the first process, `less` the second and `and echo $catfish` the third.
The ``echo $flounder >&`` is the first process, ``less`` the second and ``and echo $catfish`` the third.
`echo $flounder >&2 | less` is the first job, `and echo $catfish` the second.
``echo $flounder >&2 | less`` is the first job, ``and echo $catfish`` the second.
`$flounder` is the current token.
``$flounder`` is the current token.
More examples: