mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
47e9e8ab8a
Closes #5980.
7 lines
284 B
Fish
7 lines
284 B
Fish
function fish_vcs_prompt --description "Print the prompts for all available vcsen"
|
|
# If a prompt succeeded, we assume that it's printed the correct info.
|
|
# This is so we don't try svn if git already worked.
|
|
fish_git_prompt
|
|
or fish_hg_prompt
|
|
or fish_svn_prompt
|
|
end
|