fish-shell/doc_src/fish_right_prompt.txt

27 lines
621 B
Text
Raw Normal View History

2013-04-13 21:17:19 +00:00
\section fish_right_prompt fish_right_prompt - define the appearance of the right-side command line prompt
\subsection fish_right_prompt-synopsis Synopsis
2014-08-01 12:25:41 +00:00
\fish{synopsis}
function fish_right_prompt
...
end
\endfish
\subsection fish_right_prompt-description Description
`fish_right_prompt` is similar to `fish_prompt`, except that it appears on the right side of the terminal window.
Multiple lines are not supported in `fish_right_prompt`.
\subsection fish_right_prompt-example Example
A simple right prompt:
\fish
function fish_right_prompt -d "Write out the right prompt"
date "+%m/%d/%y"
end
\endfish