1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 00:41:44 +02:00

moved from Completion/User/_tilde_files

This commit is contained in:
Sven Wischnowsky 2001-04-02 11:42:54 +00:00
parent e4b24d4420
commit 88be4ff850

@ -0,0 +1,38 @@
#autoload
# Complete files and expand tilde expansions in it.
if [[ ( -o magicequalsubst && "$IPREFIX" = *\= ) || $argv[(I)-W*] -ne 0 ]]; then
_files "$@"
return
fi
case "$PREFIX" in
\~/*)
IPREFIX="${IPREFIX}${HOME}/"
PREFIX="${PREFIX[3,-1]}"
_files "$@" -W "${HOME}"
;;
\~*/*)
local user="${PREFIX[2,-1]%%/*}"
if (( $+userdirs[$user] )); then
user="$userdirs[$user]"
elif (( $+nameddirs[$user] )); then
user="$nameddirs[$user]"
else
_message "unknown user \`$user'"
return 1
fi
IPREFIX="${IPREFIX}${user%/}/"
PREFIX="${PREFIX#*/}"
_files "$@" -W "$user"
;;
\~*)
compset -P '?'
_users "$@"
;;
*)
_files "$@"
;;
esac