Synopses examples for vcs services now function as intended

This commit is contained in:
Ilan Cosman 2020-10-02 14:36:29 -07:00 committed by Fabian Homborg
parent 17157b3516
commit 067ec6ca97
4 changed files with 4 additions and 4 deletions

View file

@ -9,7 +9,7 @@ Synopsis
::
function fish_prompt
echo -n (pwd)(fish_git_prompt) '$ '
printf '%s' $PWD (fish_git_prompt) ' $ '
end
Description

View file

@ -9,7 +9,7 @@ Synopsis
::
function fish_prompt
echo -n (pwd)(fish_hg_prompt) '$ '
printf '%s' $PWD (fish_hg_prompt) ' $ '
end
Description

View file

@ -9,7 +9,7 @@ Synopsis
::
function fish_prompt
echo -n (pwd)(fish_svn_prompt) '$ '
printf '%s' $PWD (fish_svn_prompt) ' $ '
end
Description

View file

@ -9,7 +9,7 @@ Synopsis
::
function fish_prompt
echo -n (pwd)(fish_vcs_prompt) '$ '
printf '%s' $PWD (fish_vcs_prompt) ' $ '
end
Description