1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-04 22:51:42 +02:00

Initial revision

This commit is contained in:
Tanaka Akira 2000-02-29 08:28:18 +00:00
parent a0402f795d
commit ee58f92362

13
Completion/Core/_call Normal file
View file

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