mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-29 19:00:57 +02:00
39 lines
923 B
Text
39 lines
923 B
Text
#autoload
|
|
|
|
# Completes current directories of other zsh processes
|
|
# this is intended to be used via _generic bound to a
|
|
# different key. Note that pattern matching is enabled.
|
|
|
|
local -a expl
|
|
local -au dirs
|
|
|
|
# undo work _main_complete did to remove the tilde
|
|
PREFIX="$IPREFIX$PREFIX"
|
|
IPREFIX=
|
|
SUFFIX="$SUFFIX$ISUFFIX"
|
|
ISUFFIX=
|
|
|
|
[[ -o magicequalsubst ]] && compset -P '*='
|
|
|
|
case $OSTYPE in
|
|
solaris*)
|
|
dirs=(
|
|
${(M)${${(f)"$(pgrep -U $UID -x zsh|xargs pwdx 2>/dev/null)"}:#$$:*}%%/*}
|
|
)
|
|
;;
|
|
linux*)
|
|
dirs=( /proc/${^$(pidof zsh):#$$}/cwd(N:A) )
|
|
dirs=( $^dirs(N^@) )
|
|
;;
|
|
*)
|
|
if (( $+commands[lsof] )); then
|
|
dirs=( ${${${(M)${(f)"$(lsof -a -u $EUID -c zsh -p \^$$ -d cwd -F n -w
|
|
2>/dev/null)"}:#n*}#?}%% \(*} )
|
|
fi
|
|
;;
|
|
esac
|
|
dirs=( ${(D)dirs} )
|
|
|
|
compstate[pattern_match]='*'
|
|
_wanted directories expl 'current directory from other shell' \
|
|
compadd -M "r:|/=* r:|=*" -f -a dirs
|