mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
b86856b454
darcs-hash:20080116223621-75c98-46f96c9f25d5e32cd10148d35713622e6eac50d7.gz
23 lines
651 B
Fish
23 lines
651 B
Fish
|
|
if test (uname) = Darwin
|
|
function prompt_pwd --description "Print the current working directory, shortend to fit the prompt"
|
|
if test "$PWD" != "$HOME"
|
|
printf "%s" (echo $PWD|sed -e 's|/private||' -e "s|^$HOME|~|" -e 's-/\(\.\?[^/]\)\([^/]*\)-/\1-g')
|
|
echo $PWD|sed -e 's-.*/\.\?[^/]\([^/]*$\)-\1-'
|
|
else
|
|
echo '~'
|
|
end
|
|
end
|
|
else
|
|
function prompt_pwd --description "Print the current working directory, shortend to fit the prompt"
|
|
switch "$PWD"
|
|
case "$HOME"
|
|
echo '~'
|
|
|
|
case '*'
|
|
printf "%s" (echo $PWD|sed -e "s|^$HOME|~|" -e 's-/\(\.\?[^/]\)\([^/]*\)-/\1-g')
|
|
echo $PWD|sed -n -e 's-.*/\.\?.\([^/]*\)-\1-p'
|
|
end
|
|
end
|
|
end
|
|
|