fish-shell/doc_src/funced.txt

24 lines
750 B
Text
Raw Normal View History

\section funced funced - edit a function interactively
\subsection funced-synopsis Synopsis
2014-08-01 12:25:41 +00:00
\fish{synopsis}
funced [OPTIONS] NAME
\endfish
\subsection funced-description Description
`funced` provides an interface to edit the definition of the function
`NAME`.
If the `$EDITOR` environment variable is set, it will be used as the program
to edit the function. Otherwise, a built-in editor will be used.
If there is no function called `NAME` a new function will be created with
the specified name
- `-e command` or `--editor command` Open the function
2013-04-22 01:13:18 +00:00
body inside the text editor given by the command (for example, "vi"). The
command 'fish' will use the built-in editor.
- `-i` or `--interactive` Open function body in the
2013-04-22 01:13:18 +00:00
built-in editor.