aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--doc_src/index.hdr.in9
-rw-r--r--doc_src/tutorial.hdr4
2 files changed, 6 insertions, 7 deletions
diff --git a/doc_src/index.hdr.in b/doc_src/index.hdr.in
index 4a498f9d..fdceee1b 100644
--- a/doc_src/index.hdr.in
+++ b/doc_src/index.hdr.in
@@ -38,7 +38,7 @@ If you want to find out more about the echo command used above, read the manual
`man` is a command for displaying a manual page on a given topic. The man command takes the name of the manual page to display as an argument. There are manual pages for almost every command on most computers. There are also manual pages for many other things, such as system libraries and important files.
-Every program on your computer can be used as a command in `fish`. If the program file is located in one of the directories in the <a href="#variables-special"><b>`PATH`</b></a>, it is sufficient to type the name of the program to use it. Otherwise the whole filename, including the directory (like `/home/me/code/checkers/checkers` or `../checkers`) has to be used.
+Every program on your computer can be used as a command in `fish`. If the program file is located in one of the directories in the <a href="#variables-special">`PATH`</a>, it is sufficient to type the name of the program to use it. Otherwise the whole filename, including the directory (like `/home/me/code/checkers/checkers` or `../checkers`) has to be used.
Here is a list of some useful commands:
@@ -102,7 +102,7 @@ Some characters can not be written directly on the command line. For these chara
- '<code>\\}</code>' escapes the right curly bracket character
- '<code>\\[</code>' escapes the left bracket character
- '<code>\\]</code>' escapes the right bracket character
-- '<code>\\</code>' escapes the less than character
+- '<code>\\\<</code>' escapes the less than character
- '<code>\\\></code>' escapes the more than character
- '<code>\\^</code>' escapes the circumflex character
- '<code>\\&amp;</code>' escapes the ampersand character
@@ -121,8 +121,7 @@ invalid strings. Only use this if you know what you are doing.
- '<code>\\U<i>xxxxxxxx</i></code>', where <code><i>xxxxxxxx</i></code> is a hexadecimal number, escapes the 32-bit Unicode character with the specified value. For example, `\U9` is the tab character.
-- '<code>\\c<i>x</i></code>', where <code><i>x</i></code> is a letter of the alphabet, escapes the control sequence generated by pressing the control key and the specified letter. For example, `\ci` is
-the tab character
+- '<code>\\c<i>x</i></code>', where <code><i>x</i></code> is a letter of the alphabet, escapes the control sequence generated by pressing the control key and the specified letter. For example, `\ci` is the tab character
\subsection redirects Input/Output (IO) redirection
@@ -142,7 +141,7 @@ Any file descriptor can be directed to a different output than its default throu
An example of a file redirection is `echo hello > output.txt`, which directs the output of the echo command to the file output.txt.
- To read standard input from a file, write `<SOURCE_FILE`
-- To write standard output to a file, write `DESTINATION`
+- To write standard output to a file, write `>DESTINATION`
- To write standard error to a file, write `^DESTINATION`
- To append standard output to a file, write `>>DESTINATION_FILE`
- To append standard error to a file, write `^^DESTINATION_FILE`
diff --git a/doc_src/tutorial.hdr b/doc_src/tutorial.hdr
index 173c187b..505adc7c 100644
--- a/doc_src/tutorial.hdr
+++ b/doc_src/tutorial.hdr
@@ -184,13 +184,13 @@ And history too. Type a command once, and you can re-summon it by just typing a
>_ <error>r</error><s>___sync -avze ssh . myname@somelonghost.com:/some/long/path/doo/dee/doo/dee/doo</s>
\endfish
-To accept the autosuggestion, hit right arrow or @key{Control,F}. To accept a single word of the autosuggestion, @key{Alt,&rarr;} (right arrow). If the autosuggestion is not what you want, just ignore it.
+To accept the autosuggestion, hit @cursor_key{&rarr;,right arrow} or @key{Control,F}. To accept a single word of the autosuggestion, @key{Alt,&rarr;} (right arrow). If the autosuggestion is not what you want, just ignore it.
\section tut_tab_completions Tab Completions
`fish` comes with a rich set of tab completions, that work "out of the box."
-Press tab, and `fish` will attempt to complete the command, argument, or path:
+Press @key{Tab}, and `fish` will attempt to complete the command, argument, or path:
\fish{cli-dark}
>_ <error>/pri</error> @key{Tab} &rarr; /private/