mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-11 13:01:28 +02:00
Initial revision
This commit is contained in:
parent
a0402f795d
commit
ee58f92362
1 changed files with 13 additions and 0 deletions
13
Completion/Core/_call
Normal file
13
Completion/Core/_call
Normal 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
|
Loading…
Reference in a new issue