mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
14 lines
208 B
Plaintext
14 lines
208 B
Plaintext
|
#autoload
|
||
|
|
||
|
local tmp
|
||
|
|
||
|
if zstyle -s ":completion:${curcontext}:${1}" command tmp; then
|
||
|
if [[ "$tmp" = -* ]]; then
|
||
|
eval "$tmp[2,-1]" "$argv[2,-1]"
|
||
|
else
|
||
|
eval "$tmp"
|
||
|
fi
|
||
|
else
|
||
|
eval "$argv[2,-1]"
|
||
|
fi
|