aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/prompt_pwd.fish
diff options
context:
space:
mode:
authorGravatar Konrad Borowski <glitchmr@myopera.com>2013-08-16 20:47:04 +0200
committerGravatar Konrad Borowski <glitchmr@myopera.com>2013-08-16 20:48:44 +0200
commit3e115b7a85184d16a5bb8d00fff702a62e3f8fea (patch)
tree433cc36061f92feb807b45fb16b27f54f39dda97 /share/functions/prompt_pwd.fish
parentca8e4c08a786f31f2ca2d353f54df3653fdd7a1a (diff)
Mac OS X doesn't support uname -o. Use uname instead.
I break compatibility with Mac OS X again, that I don't have access to. Result: Stuff break, and I have to fix it, so it will perhaps work. At least, I hope it will work.
Diffstat (limited to 'share/functions/prompt_pwd.fish')
-rw-r--r--share/functions/prompt_pwd.fish7
1 files changed, 4 insertions, 3 deletions
diff --git a/share/functions/prompt_pwd.fish b/share/functions/prompt_pwd.fish
index ed6eb3d9..f559fb04 100644
--- a/share/functions/prompt_pwd.fish
+++ b/share/functions/prompt_pwd.fish
@@ -1,12 +1,13 @@
-if test (uname) = Darwin
+switch (uname)
+case Darwin
function prompt_pwd --description "Print the current working directory, shortend to fit the prompt"
echo $PWD | sed -e "s|^$HOME|~|" -e 's|^/private||' -e 's-\([^/.]\)[^/]*/-\1/-g'
end
-else if test (uname -o) = Cygwin
+case 'CYGWIN_*'
function prompt_pwd --description "Print the current working directory, shortend to fit the prompt"
echo $PWD | sed -e "s|^$HOME|~|" -e 's|^/cygdrive/\(.\)|\1/:|' -e 's-\([^/.]\)[^/]*/-\1/-g' -e 's-^\([^/]\)/:/\?-\u\1:/-'
end
-else
+case '*'
function prompt_pwd --description "Print the current working directory, shortend to fit the prompt"
echo $PWD | sed -e "s|^$HOME|~|" -e 's-\([^/.]\)[^/]*/-\1/-g'
end