mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-04 07:21:14 -03:00
In prompt_pwd, if a directory name starts with a dot, include first two characters. This patch was written by Denilson F. de Sá
darcs-hash:20080116223621-75c98-46f96c9f25d5e32cd10148d35713622e6eac50d7.gz
This commit is contained in:
@@ -2,8 +2,8 @@
|
|||||||
if test (uname) = Darwin
|
if test (uname) = Darwin
|
||||||
function prompt_pwd --description "Print the current working directory, shortend to fit the prompt"
|
function prompt_pwd --description "Print the current working directory, shortend to fit the prompt"
|
||||||
if test "$PWD" != "$HOME"
|
if test "$PWD" != "$HOME"
|
||||||
printf "%s" (echo $PWD|sed -e 's|/private||' -e "s|^$HOME|~|" -e 's-/\([^/]\)\([^/]*\)-/\1-g')
|
printf "%s" (echo $PWD|sed -e 's|/private||' -e "s|^$HOME|~|" -e 's-/\(\.\?[^/]\)\([^/]*\)-/\1-g')
|
||||||
echo $PWD|sed -e 's-.*/[^/]\([^/]*$\)-\1-'
|
echo $PWD|sed -e 's-.*/\.\?[^/]\([^/]*$\)-\1-'
|
||||||
else
|
else
|
||||||
echo '~'
|
echo '~'
|
||||||
end
|
end
|
||||||
@@ -15,8 +15,8 @@ else
|
|||||||
echo '~'
|
echo '~'
|
||||||
|
|
||||||
case '*'
|
case '*'
|
||||||
printf "%s" (echo $PWD|sed -e "s|^$HOME|~|" -e 's-/\([^/]\)\([^/]*\)-/\1-g')
|
printf "%s" (echo $PWD|sed -e "s|^$HOME|~|" -e 's-/\(\.\?[^/]\)\([^/]*\)-/\1-g')
|
||||||
echo $PWD|sed -n -e 's-.*/.\([^/]*\)-\1-p'
|
echo $PWD|sed -n -e 's-.*/\.\?.\([^/]*\)-\1-p'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user