aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/prompt_pwd.fish
diff options
context:
space:
mode:
Diffstat (limited to 'share/functions/prompt_pwd.fish')
-rw-r--r--share/functions/prompt_pwd.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/functions/prompt_pwd.fish b/share/functions/prompt_pwd.fish
index 039148ff..49a03708 100644
--- a/share/functions/prompt_pwd.fish
+++ b/share/functions/prompt_pwd.fish
@@ -12,7 +12,7 @@ else
function prompt_pwd -d (N_ "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-'
+ echo $PWD|sed -n -e 's-.*/[^/]\([^/]*$\)-\1-p'
else
echo '~'
end