mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-28 17:10:59 +01:00
zsh-workers/9920
This commit is contained in:
parent
e06e67f734
commit
09ac0f90df
3 changed files with 14 additions and 5 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
DISTFILES_SRC='
|
DISTFILES_SRC='
|
||||||
.distfiles
|
.distfiles
|
||||||
_alternative _approximate _compalso _complete _correct _description
|
_alternative _approximate _call _compalso _complete _correct _description
|
||||||
_expand _files _funcall _list _main_complete _match
|
_expand _files _funcall _list _main_complete _match
|
||||||
_menu _multi_parts _message _normal _oldlist _options
|
_menu _multi_parts _message _normal _oldlist _options
|
||||||
_parameters _path_files _prefix _requested _sep_parts
|
_parameters _path_files _prefix _requested _sep_parts
|
||||||
|
|
|
||||||
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
|
||||||
|
|
@ -1484,10 +1484,6 @@ item(tt(users-hosts-ports))(
|
||||||
Like tt(users-hosts) but used for commands like tt(telnet) and
|
Like tt(users-hosts) but used for commands like tt(telnet) and
|
||||||
containing strings of the form `var(user)tt(@)var(host)tt(:)var(port)'.
|
containing strings of the form `var(user)tt(@)var(host)tt(:)var(port)'.
|
||||||
)
|
)
|
||||||
item(tt(users-hosts-ports))(
|
|
||||||
Like tt(users-hosts) but used for commands like tt(telnet) and
|
|
||||||
containing strings of the form `var(user)tt(@)var(host)tt(:)var(port)'.
|
|
||||||
)
|
|
||||||
item(tt(verbose))(
|
item(tt(verbose))(
|
||||||
This is used in several contexts to decide if only a simple or a
|
This is used in several contexts to decide if only a simple or a
|
||||||
verbose list of matches should be generated. For example some commands
|
verbose list of matches should be generated. For example some commands
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue