From 064699cade2bba9f37b1a90317f7d370b8481030 Mon Sep 17 00:00:00 2001 From: Luca Trevisani Date: Tue, 20 Sep 2022 23:47:57 +0200 Subject: [PATCH] Add reference to abbreviations --- doc_src/tutorial.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc_src/tutorial.rst b/doc_src/tutorial.rst index dcd33f8f5..d31788835 100644 --- a/doc_src/tutorial.rst +++ b/doc_src/tutorial.rst @@ -579,7 +579,7 @@ A fish function is a list of commands, which may optionally take arguments. Unli # prints: Hello everybody! -Unlike other shells, fish does not have aliases or special prompt syntax. Functions take their place. [#]_ +Unlike other shells, fish does not have aliases or special prompt syntax. Functions take their place. [#]_ [#]_ You can list the names of all functions with the :doc:`functions ` builtin (note the plural!). fish starts out with a number of functions:: @@ -599,6 +599,8 @@ For more, see :ref:`Functions `. .. [#] There is a function called :doc:`alias `, but it's just a shortcut to make functions. +.. [#] fish also provides :ref:`abbrevisations `, through the :ref:`abbr ` command. + Loops -----