mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +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
|
||||
echo -n (pwd)(fish_git_prompt) '$ '
|
||||
printf '%s' $PWD (fish_git_prompt) ' $ '
|
||||
end
|
||||
|
||||
Description
|
||||
|
|
|
@ -9,7 +9,7 @@ Synopsis
|
|||
::
|
||||
|
||||
function fish_prompt
|
||||
echo -n (pwd)(fish_hg_prompt) '$ '
|
||||
printf '%s' $PWD (fish_hg_prompt) ' $ '
|
||||
end
|
||||
|
||||
Description
|
||||
|
|
|
@ -9,7 +9,7 @@ Synopsis
|
|||
::
|
||||
|
||||
function fish_prompt
|
||||
echo -n (pwd)(fish_svn_prompt) '$ '
|
||||
printf '%s' $PWD (fish_svn_prompt) ' $ '
|
||||
end
|
||||
|
||||
Description
|
||||
|
|
|
@ -9,7 +9,7 @@ Synopsis
|
|||
::
|
||||
|
||||
function fish_prompt
|
||||
echo -n (pwd)(fish_vcs_prompt) '$ '
|
||||
printf '%s' $PWD (fish_vcs_prompt) ' $ '
|
||||
end
|
||||
|
||||
Description
|
||||
|
|
Loading…
Reference in a new issue