mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-29 06:13:20 +00:00
Synopses examples for vcs services now function as intended
This commit is contained in:
parent
17157b3516
commit
067ec6ca97
4 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@ Synopsis
|
||||||
::
|
::
|
||||||
|
|
||||||
function fish_prompt
|
function fish_prompt
|
||||||
echo -n (pwd)(fish_git_prompt) '$ '
|
printf '%s' $PWD (fish_git_prompt) ' $ '
|
||||||
end
|
end
|
||||||
|
|
||||||
Description
|
Description
|
||||||
|
|
|
@ -9,7 +9,7 @@ Synopsis
|
||||||
::
|
::
|
||||||
|
|
||||||
function fish_prompt
|
function fish_prompt
|
||||||
echo -n (pwd)(fish_hg_prompt) '$ '
|
printf '%s' $PWD (fish_hg_prompt) ' $ '
|
||||||
end
|
end
|
||||||
|
|
||||||
Description
|
Description
|
||||||
|
|
|
@ -9,7 +9,7 @@ Synopsis
|
||||||
::
|
::
|
||||||
|
|
||||||
function fish_prompt
|
function fish_prompt
|
||||||
echo -n (pwd)(fish_svn_prompt) '$ '
|
printf '%s' $PWD (fish_svn_prompt) ' $ '
|
||||||
end
|
end
|
||||||
|
|
||||||
Description
|
Description
|
||||||
|
|
|
@ -9,7 +9,7 @@ Synopsis
|
||||||
::
|
::
|
||||||
|
|
||||||
function fish_prompt
|
function fish_prompt
|
||||||
echo -n (pwd)(fish_vcs_prompt) '$ '
|
printf '%s' $PWD (fish_vcs_prompt) ' $ '
|
||||||
end
|
end
|
||||||
|
|
||||||
Description
|
Description
|
||||||
|
|
Loading…
Reference in a new issue