mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 18:30:20 +08:00
0f34459fce
This is apparently quite slow on large svn repos (like 40 seconds slow), and we don't have a good thing to display other than the full file information. So we'll have to disable it for now. Fixes #6681. [ci skip]
11 lines
488 B
Fish
11 lines
488 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
|
|
# The svn prompt is disabled by default because it's quite slow on common svn repositories.
|
|
# To enable it uncomment it.
|
|
# You can also only use it in specific directories by checking $PWD.
|
|
# or fish_svn_prompt
|
|
end
|