fish_prompt(1) fish fish_prompt(1)
NAME
fish_prompt - define the apperance of the command line prompt
Synopsis
function fish_prompt
...
end
Description
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.
Example
A simple prompt:
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
Version 1.23.1 8 Mar 2009 fish_prompt(1)
fish 1.23.1 - Generated Sun Mar 8 14:05:59 CDT 2009
