mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-20 03:51:07 +02:00
moved from Completion/Builtins/_command
This commit is contained in:
parent
8638ff684b
commit
d9ba273ed7
1 changed files with 10 additions and 0 deletions
10
Completion/Zsh/Command/_command
Normal file
10
Completion/Zsh/Command/_command
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#compdef command
|
||||||
|
|
||||||
|
if [[ CURRENT -ge 3 ]]; then
|
||||||
|
compset -n 2
|
||||||
|
_normal
|
||||||
|
else
|
||||||
|
local expl
|
||||||
|
|
||||||
|
_wanted commands expl 'external command' compadd "$@" -k commands
|
||||||
|
fi
|
Loading…
Reference in a new issue