diff --git a/doc_src/index.hdr.in b/doc_src/index.hdr.in
index 172779ab2..c85f7127e 100644
--- a/doc_src/index.hdr.in
+++ b/doc_src/index.hdr.in
@@ -135,11 +135,12 @@ these characters, so called escape sequences are provided. These are:
- '\\\<', escapes the less than character
- '\\\>', escapes the more than character
- '\\^', escapes the circumflex character
-- '\\xxx', where xx is a hexadecimal number, escapes the ascii character with the specified value
+- '\\xxx', where xx is a hexadecimal number, escapes the ascii character with the specified value. For example, \\x9 is the tab character.
- '\\Xxx', where xx is a hexadecimal number, escapes a byte of data with the specified value. If you are using a mutibyte encoding, this can be used to enter invalid strings. Only use this if you know what you are doing.
-- '\\ooo', where ooo is an octal number, escapes the ascii character with the specified value
-- '\\uxxxx', where xxxx is a hexadecimal number, escapes the 16-bit unicode character with the specified value
-- '\\Uxxxxxxxx', where xxxxxxxx is a hexadecimal number, escapes the 32-bit unicode character with the specified value
+- '\\ooo', where ooo is an octal number, escapes the ascii character with the specified value. For example, \\011 is the tab character.
+- '\\uxxxx', where xxxx is a hexadecimal number, escapes the 16-bit unicode character with the specified value. For example, \\u9 is the tab character.
+- '\\Uxxxxxxxx', where xxxxxxxx is a hexadecimal number, escapes the 32-bit unicode character with the specified value. For example, \\U9 is the tab character.
+- '\\cx', where x 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 IO redirection
@@ -1423,7 +1424,6 @@ g++, javac, java, gcj, lpr, doxygen, whois)
- Suspending and then resuming pipelines containing a builtin is broken. How should this be handled?
- delete-word is broken on the commandline 'sudo update-alternatives --config x-'
-
If you think you have found a bug not described here, please send a
report to fish-users@lists.sf.net.