mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
Make sure that the / is only printed once in prompt_pwd function when cwd is root
darcs-hash:20060710223848-ac50b-ddb52c414fd8b08bd7c515c99cc4e05a3c479c7d.gz
This commit is contained in:
parent
a41fd8f759
commit
746a602515
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ else
|
|||
function prompt_pwd -d (N_ "Print the current working directory, shortend to fit the prompt")
|
||||
if test "$PWD" != "$HOME"
|
||||
printf "%s" (echo $PWD|sed -e "s|^$HOME|~|" -e 's-/\([^/]\)\([^/]*\)-/\1-g')
|
||||
echo $PWD|sed -e 's-.*/[^/]\([^/]*$\)-\1-'
|
||||
echo $PWD|sed -n -e 's-.*/[^/]\([^/]*$\)-\1-p'
|
||||
else
|
||||
echo '~'
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue