aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/fish_prompt.txt
blob: 52dbbeb371932a65f88bf3cc232e0706fe8779bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
\section fish_prompt fish_prompt - define the apperance of the command line prompt

\subsection fish_promt-synopsis Synopsis
<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.

Please keep in mind that the function is executed by <a
href='index.html#expand-command-substitution'>command substitution</a>, and so the exit status of commands within fish_prompt will not modify the <a href="index.html#variables-status">$status</a> seen outside of fish_prompt.

\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>