From 8ed20f3c28fd194762afe2b859e0b3cacc066e61 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Wed, 7 Mar 2012 10:53:08 -0800 Subject: [PATCH] Removed pwd.fish, which made the home directory print out with ~ (annoying) --- share/functions/pwd.fish | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 share/functions/pwd.fish diff --git a/share/functions/pwd.fish b/share/functions/pwd.fish deleted file mode 100644 index 22745406f..000000000 --- a/share/functions/pwd.fish +++ /dev/null @@ -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 \ No newline at end of file