2014-10-03 08:22:55 +08:00
|
|
|
set -l args_pre
|
|
|
|
set -l args_post
|
2013-08-17 02:47:04 +08:00
|
|
|
switch (uname)
|
|
|
|
case Darwin
|
2014-10-03 08:22:55 +08:00
|
|
|
set args_pre $args_pre -e 's|^/private/|/|'
|
2013-08-17 02:47:04 +08:00
|
|
|
case 'CYGWIN_*'
|
2014-10-03 08:22:55 +08:00
|
|
|
set args_pre $args_pre -e 's|^/cygdrive/\(.\)|\1/:|'
|
|
|
|
set args_post $args_post -e 's-^\([^/]\)/:/\?-\u\1:/-'
|
|
|
|
end
|
|
|
|
|
|
|
|
function prompt_pwd -V args_pre -V args_post --description "Print the current working directory, shortened to fit the prompt"
|
2014-10-26 14:20:49 +08:00
|
|
|
set -l realhome ~
|
|
|
|
echo $PWD | sed -e "s|^$realhome|~|" $args_pre -e 's-\([^/.]\)[^/]*/-\1/-g' $args_post
|
2006-02-12 21:14:21 +08:00
|
|
|
end
|