2013-04-13 21:17:19 +00:00
\section fish_prompt fish_prompt - define the appearance of the command line prompt
2007-03-24 22:21:35 +00:00
2012-11-08 03:59:20 +00:00
\subsection fish_prompt-synopsis Synopsis
2014-08-01 12:25:41 +00:00
\fish{synopsis}
2014-08-01 02:37:32 +00:00
function fish_prompt
2007-03-24 22:21:35 +00:00
...
2014-08-01 02:37:32 +00:00
end
\endfish
2007-03-24 22:21:35 +00:00
\subsection fish_prompt-description Description
2014-08-19 12:41:23 +00:00
By defining the `fish_prompt` function, the user can choose a custom prompt. The `fish_prompt` function is executed when the prompt is to be shown, and the output is used as a prompt.
2007-03-24 22:21:35 +00:00
2014-08-01 02:37:32 +00:00
The exit status of commands within `fish_prompt` will not modify the value of <a href="index.html#variables-status">$status</a> outside of the `fish_prompt` function.
Help cleanup
Large list of changes, including formatting and typos for most commands.
More substantive changes have been made to alias, bind, block, break,
builtin, case, cd, commandline, count, else, emit, fish_config, funced,
function, functions, history, math, mimedb, nextd, not, popd, prevd,
pushd, pwd, random, read, set, set_color, switch, test, trap, type,
ulimit, umask, and while.
2013-05-12 07:56:01 +00:00
2014-08-19 12:41:23 +00:00
`fish` ships with a number of example prompts that can be chosen with the `fish_config` command.
2012-07-10 17:11:21 +00:00
2007-03-24 22:21:35 +00:00
\subsection fish_prompt-example Example
A simple prompt:
2014-08-01 02:37:32 +00:00
\fish
2007-03-24 22:21:35 +00:00
function fish_prompt -d "Write out the prompt"
2014-08-08 02:44:37 +00:00
printf '%s@%s%s%s%s> ' (whoami) (hostname | cut -d . -f 1) \
(set_color $fish_color_cwd) (prompt_pwd) (set_color normal)
2007-03-24 22:21:35 +00:00
end
2014-08-01 02:37:32 +00:00
\endfish
2007-03-24 22:21:35 +00:00