2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-17 07:24:00 +00:00
fish-shell/share/functions/fish_vcs_prompt.fish
nat-418 cf67709931
feat: add support for fossil-scm in prompt ()
* feat: add support for fossil-scm in prompt

* fix: change directory testing and string matching
2023-01-29 16:54:39 +01:00

11 lines
512 B
Fish

function fish_vcs_prompt --description "Print all vcs prompts"
# 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 $argv
or fish_hg_prompt $argv
or fish_fossil_prompt $argv
# 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