1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 13:33:52 +01:00

moved from Completion/Core/_call

This commit is contained in:
Sven Wischnowsky 2001-04-02 11:13:47 +00:00
parent 8b603585aa
commit 06e7790548

@ -0,0 +1,13 @@
#autoload +X
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