diff --git a/doc_src/cmds/alias.rst b/doc_src/cmds/alias.rst index 2c1644f92..b97b8c0cc 100644 --- a/doc_src/cmds/alias.rst +++ b/doc_src/cmds/alias.rst @@ -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 ` builtin this builds on. +2. :ref:`Functions `. +3. :ref:`Function wrappers `. diff --git a/doc_src/cmds/function.rst b/doc_src/cmds/function.rst index 553f56eb8..3ea9101a1 100644 --- a/doc_src/cmds/function.rst +++ b/doc_src/cmds/function.rst @@ -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 `. diff --git a/doc_src/cmds/functions.rst b/doc_src/cmds/functions.rst index 93ec0a417..436f40a68 100644 --- a/doc_src/cmds/functions.rst +++ b/doc_src/cmds/functions.rst @@ -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 `.