docs: Links for the function-related commands

This commit is contained in:
Fabian Homborg 2021-05-08 12:12:56 +02:00
parent 555af37616
commit aa84a4ba30
3 changed files with 17 additions and 1 deletions

View File

@ -51,3 +51,10 @@ The following code will create ``rmi``, which runs ``rm`` with additional argume
# will be seen as an argument to "/Applications/Google":
alias chrome='/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome banana'
See more
--------
1. The :ref:`function <cmd-function>` builtin this builds on.
2. :ref:`Functions <syntax-function>`.
3. :ref:`Function wrappers <syntax-function-wrappers>`.

View File

@ -115,4 +115,9 @@ This will beep when the most recent job completes.
Notes
-----
Note that events are only received from the current fish process as there is no way to send events from one fish process to another.
Events are only received from the current fish process as there is no way to send events from one fish process to another.
See more
--------
For more explanation of how functions fit into fish, see :ref:`Functions <syntax-function>`.

View File

@ -79,3 +79,7 @@ Examples
functions -e bar
# Erases the function ``bar``
See more
--------
For more explanation of how functions fit into fish, see :ref:`Functions <syntax-function>`.