2019-03-31 17:05:09 +08:00
.. _cmd-fish_vcs_prompt:
2019-04-11 23:51:00 +08:00
fish_vcs_prompt - output version control system information for use in a prompt
===============================================================================
2019-02-25 08:20:25 +08:00
2019-09-17 17:59:04 +08:00
Synopsis
--------
::
function fish_prompt
2020-10-03 05:36:29 +08:00
printf '%s' $PWD (fish_vcs_prompt) ' $ '
2019-09-17 17:59:04 +08:00
end
2019-02-25 08:20:25 +08:00
Description
-----------
2019-04-11 23:51:00 +08:00
The `` fish_vcs_prompt `` function displays information about the current version control system (VCS) repository, if any.
2019-02-25 08:20:25 +08:00
2019-04-11 23:51:00 +08:00
It calls out to VCS-specific functions. The currently supported systems are:
2019-02-25 08:20:25 +08:00
2019-04-11 23:51:00 +08:00
- :ref: `fish_git_prompt <cmd-fish_git_prompt>`
- :ref: `fish_hg_prompt <cmd-fish_hg_prompt>`
- :ref: `fish_svn_prompt <cmd-fish_svn_prompt>`
2019-02-25 08:20:25 +08:00
2019-04-11 23:51:00 +08:00
If a VCS isn't installed, the respective function does nothing.
2019-02-25 08:20:25 +08:00
2020-03-02 00:03:15 +08:00
The svn prompt is disabled by default because it's slow on large svn repositories. To enable it, modify fish_vcs_prompt to uncomment it. See :ref: `funced <cmd-funced>` .
2019-04-11 23:51:00 +08:00
For more information, see the documentation for each of the functions above.
2019-02-25 08:20:25 +08:00
2019-03-25 02:44:45 +08:00
Example
-------
2019-02-25 08:20:25 +08:00
2019-04-11 23:51:00 +08:00
A simple prompt that displays all known VCS info::
2019-02-25 08:20:25 +08:00
function fish_prompt
...
set -g __fish_git_prompt_showupstream auto
printf '%s %s$' $PWD (fish_vcs_prompt)
end