In prompt_pwd, if a directory name starts with a dot, include first two characters. This patch was written by Denilson F. de Sá

darcs-hash:20080116223621-75c98-46f96c9f25d5e32cd10148d35713622e6eac50d7.gz
This commit is contained in:
liljencrantz 2008-01-17 08:36:21 +10:00
parent 6598320534
commit b86856b454

View file

@ -2,8 +2,8 @@
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-'
printf "%s" (echo $PWD|sed -e 's|/private||' -e "s|^$HOME|~|" -e 's-/\(\.\?[^/]\)\([^/]*\)-/\1-g')
echo $PWD|sed -e 's-.*/\.\?[^/]\([^/]*$\)-\1-'
else
echo '~'
end
@ -15,8 +15,8 @@ else
echo '~'
case '*'
printf "%s" (echo $PWD|sed -e "s|^$HOME|~|" -e 's-/\([^/]\)\([^/]*\)-/\1-g')
echo $PWD|sed -n -e 's-.*/.\([^/]*\)-\1-p'
printf "%s" (echo $PWD|sed -e "s|^$HOME|~|" -e 's-/\(\.\?[^/]\)\([^/]*\)-/\1-g')
echo $PWD|sed -n -e 's-.*/\.\?.\([^/]*\)-\1-p'
end
end
end