2008-02-10 21:00:53 +00:00
|
|
|
\section fish_prompt fish_prompt - define the apperance 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
|
2007-03-24 22:21:35 +00:00
|
|
|
<pre>function fish_prompt
|
|
|
|
...
|
|
|
|
end</pre>
|
|
|
|
|
|
|
|
\subsection fish_prompt-description Description
|
|
|
|
|
|
|
|
By defining the \c fish_prompt function, the user can choose a custom
|
|
|
|
prompt. The \c fish_prompt function is executed when the prompt is to
|
|
|
|
be shown, and the output is used as a prompt.
|
|
|
|
|
2013-01-31 23:57:08 +00:00
|
|
|
The exit status of commands within \c fish_prompt will not modify the <a href="index.html#variables-status">$status</a> seen outside of fish_prompt.
|
2012-07-10 17:11:21 +00:00
|
|
|
|
2007-03-24 22:21:35 +00:00
|
|
|
\subsection fish_prompt-example Example
|
|
|
|
|
|
|
|
A simple prompt:
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
function fish_prompt -d "Write out the prompt"
|
|
|
|
printf '\%s\@\%s\%s\%s\%s> ' (whoami) (hostname|cut -d . -f 1) (set_color \$fish_color_cwd) (prompt_pwd) (set_color normal)
|
|
|
|
end
|
|
|
|
</pre>
|
|
|
|
|