mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 07:04:29 +00:00
docs: Fix some of the escaping section
No more need to escape `^`, be fancy with the backslash space to make it actually, you know, render in the output.
This commit is contained in:
parent
1e7a4b076d
commit
d7f36fab44
1 changed files with 2 additions and 2 deletions
|
@ -125,7 +125,8 @@ outputs ``hello world`` (without the apostrophes). In the former case the shell
|
|||
|
||||
The special characters and their escape sequences are:
|
||||
|
||||
- :code:`\ ` (backslash space) escapes the space character. This keeps the shell from splitting arguments on the escaped space.
|
||||
.. (next line features a non-breaking space - this will be rendered to a normal space instead of removed)
|
||||
- :code:`\\\ ` (backslash space) escapes the space character. This keeps the shell from splitting arguments on the escaped space.
|
||||
- ``\$`` escapes the dollar character.
|
||||
- ``\\`` escapes the backslash character.
|
||||
- ``\*`` escapes the star character.
|
||||
|
@ -140,7 +141,6 @@ The special characters and their escape sequences are:
|
|||
- ``\]`` escapes the right bracket character.
|
||||
- ``\<`` escapes the less than character.
|
||||
- ``\>`` escapes the more than character.
|
||||
- ``\^`` escapes the circumflex character.
|
||||
- ``\&`` escapes the ampersand character.
|
||||
- ``\|`` escapes the vertical bar character.
|
||||
- ``\;`` escapes the semicolon character.
|
||||
|
|
Loading…
Reference in a new issue