functions [-a | --all] [-n | --names] [--color WHEN] functions [-D | --details] [-v] [--color WHEN] FUNCTION functions -c OLDNAME NEWNAME functions -d DESCRIPTION FUNCTION functions [-e | -q] FUNCTION ...
functions prints or erases functions.
The following options are available:
Lists all functions, even those whose name starts with an underscore.
Creates a new function named NEWNAME, using the definition of the OLDNAME function.
Changes the description of this function.
Causes the specified functions to be erased. This also means that it is prevented from autoloading in the current session. Use funcsave to remove the saved copy.
Reports the path name where the specified function is defined or could be autoloaded, stdin if the function was defined interactively or on the command line or by reading standard input, - if the function was created via source, and n/a if the function isn’t available. (Functions created via alias will return -, because alias uses source internally. Copied functions will return where the function was copied.) If the --verbose option is also specified then five lines are written:
autoloaded, not-autoloaded or n/a,scope-shadowing if the function shadows the vars in the calling function (the normal case if it wasn’t defined with --no-scope-shadowing), else no-scope-shadowing, or n/a if the function isn’t defined,n/a if the function isn’t defined or has no description.You should not assume that only five lines will be written since we may add additional information to the output in the future.
Turns off function path reporting, so just the definition will be printed.
Lists the names of all defined functions.
Tests if the specified functions exist.
Make some output more verbose.
Show all event handlers.
Show all event handlers matching the given TYPE.
Controls when to use syntax highlighting colors when printing function definitions. WHEN can be auto (the default, colorize if the output is a terminal), always, or never.
Displays help about using this command.
The default behavior of functions, when called with no arguments, is to print the names of all defined functions. Unless the -a option is given, no functions starting with underscores are included in the output.
If any non-option parameters are given, the definition of the specified functions are printed.
Copying a function using -c copies only the body of the function, and does not attach any event notifications from the original function.
Only one function’s description can be changed in a single invocation of functions -d.
The exit status of functions is the number of functions specified in the argument list that do not exist, which can be used in concert with the -q option.
functions -n # Displays a list of currently-defined functions functions -c foo bar # Copies the 'foo' function to a new function called 'bar' functions -e bar # Erases the function ``bar``
For more explanation of how functions fit into fish, see Functions.
© 2005-2009 Axel Liljencrantz, 2009-2026 fish-shell contributors
Licensed under the GNU General Public License, version 2.
https://fishshell.com/docs/4.5/cmds/functions.html