fish-shell/sphinx_doc_src/cmds/fish_right_prompt.rst
Fabian Homborg 191b74df6f docs: Fix some sphinx errors
See #5696.

[ci skip]
2019-03-29 20:55:28 +01:00

35 lines
581 B
ReStructuredText

fish_right_prompt - define the appearance of the right-side command line prompt
===============================================================================
Synopsis
--------
::
function fish_right_prompt
...
end
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``.
Example
-------
A simple right prompt:
::
function fish_right_prompt -d "Write out the right prompt"
date '+%m/%d/%y'
end