mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-01 15:14:26 +08:00
22 lines
610 B
Fish
22 lines
610 B
Fish
|
|
||
|
if test (uname) = Darwin
|
||
|
function prompt_pwd -d (_ "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 -d (_ "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-'
|
||
|
else
|
||
|
echo '~'
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|