Removed pwd.fish, which made the home directory print out with ~ (annoying)

This commit is contained in:
ridiculousfish 2012-03-07 10:53:08 -08:00
parent 0ced7d8e56
commit 8ed20f3c28

View File

@ -1,18 +0,0 @@
#
# Make pwd print out the home directory as a tilde.
# Also drop '/private' directories on OS X.
#
switch (uname)
case Darwin
function pwd --description "Print working directory"
echo $PWD | sed -e 's|/private||' -e "s|^$HOME|~|"
end
case '*'
function pwd --description "Print working directory"
echo $PWD | sed -e "s|^$HOME|~|"
end
end