Add reference to abbreviations

This commit is contained in:
Luca Trevisani 2022-09-20 23:47:57 +02:00 committed by ridiculousfish
parent 692a2fc135
commit 064699cade

View File

@ -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 <cmds/functions>` builtin (note the plural!). fish starts out with a number of functions::
@ -599,6 +599,8 @@ For more, see :ref:`Functions <syntax-function>`.
.. [#] There is a function called :doc:`alias <cmds/alias>`, but it's just a shortcut to make functions.
.. [#] fish also provides :ref:`abbrevisations <interactive-abbreviations>`, through the :ref:`abbr <cmd-abbr>` command.
Loops
-----