From 746a602515360c2119a445d352d20ebf300efd7c Mon Sep 17 00:00:00 2001 From: axel Date: Tue, 11 Jul 2006 08:38:48 +1000 Subject: [PATCH] Make sure that the / is only printed once in prompt_pwd function when cwd is root darcs-hash:20060710223848-ac50b-ddb52c414fd8b08bd7c515c99cc4e05a3c479c7d.gz --- share/functions/prompt_pwd.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/prompt_pwd.fish b/share/functions/prompt_pwd.fish index 039148ff6..49a037088 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