1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-22 00:21:27 +01:00

moved to Completion/Base/Utility/_call_program

This commit is contained in:
Sven Wischnowsky 2001-04-02 11:13:39 +00:00
parent 9e1b944434
commit 8b603585aa

View file

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