diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-25 09:48:08 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-25 09:48:08 +0000 |
commit | d49da606702363f0eb5615a341126c2dbe562849 (patch) | |
tree | 7946392a9792bff64a6396868335a85c851690f4 /Completion/Builtins | |
parent | fc56c6231290db7b1979b2d6d3a978a5906c67ac (diff) | |
download | zsh-d49da606702363f0eb5615a341126c2dbe562849.tar.gz zsh-d49da606702363f0eb5615a341126c2dbe562849.tar.xz zsh-d49da606702363f0eb5615a341126c2dbe562849.zip |
make _arguments use more than one action when appropriate; add _argument_sets to complete different sets of arguments and options for the same command (10908)
Diffstat (limited to 'Completion/Builtins')
-rw-r--r-- | Completion/Builtins/_bindkey | 2 | ||||
-rw-r--r-- | Completion/Builtins/_compdef | 18 | ||||
-rw-r--r-- | Completion/Builtins/_emulate | 2 | ||||
-rw-r--r-- | Completion/Builtins/_zpty | 2 |
4 files changed, 16 insertions, 8 deletions
diff --git a/Completion/Builtins/_bindkey b/Completion/Builtins/_bindkey index 6f6677b59..d1e1f8ab1 100644 --- a/Completion/Builtins/_bindkey +++ b/Completion/Builtins/_bindkey @@ -24,7 +24,7 @@ _arguments -C -s \ '(-l -L -d -D -A -N -m -s *)-r[unbind specified in-strings]:*:in-string' \ '(-l -L -d -D -A -N -m -r *)-s[bind each in-string to each out-string]:*:key string' \ '(-e -v -a -M -l -L -d -D -A -N -m)-R[interpret in-strings as ranges]' \ - '(-l -L -d -A -N -m -r -s)*::widgets:->widget' + '(-l -L -d -A -N -m -r -s)*::widgets:->widget' && return 0 case $state in keymap) diff --git a/Completion/Builtins/_compdef b/Completion/Builtins/_compdef index 6287810e5..649daa6dc 100644 --- a/Completion/Builtins/_compdef +++ b/Completion/Builtins/_compdef @@ -8,11 +8,19 @@ _arguments -C -s \ '(-a -n -p -P -k -K)-d[delete]:*:completed command:->ccom' \ '(-n -d -P -k -K)-p[completion for command matching pattern]:completion function:->cfun:pattern' \ '(-n -d -p -k -K)-P[as -p for commands without own completion]:completion function:->cfun:pattern' \ - '(-d -p -P -K)-k[define widget and key binding]:completion function:->cfun:widget name::style:->style:*:key' \ - '(-d -p -P -k)-K[define multiple widgets based on function]:completion function:->cfun:widget name::style:->style:*:key' \ - '1:completion function:->cfun' \ - '2:commands:_command_names' - + '(-d -p -P -K)-k[define widget and key binding]:completion function:->cfun:style:->style:*:key' \ + '(-d -p -P -k)-K[define multiple widgets based on function]:*::: :->multi' \ + ':completion function:->cfun' \ + '*:commands: _command_names' && return 0 + +if [[ $state = multi ]]; then + case $(( CURRENT % 3 )) in + 0) _message key + return 1;; + 1) state=cfun;; + 2) state=style;; + esac +fi case $state in ccom) diff --git a/Completion/Builtins/_emulate b/Completion/Builtins/_emulate index 82096a77e..1c1f63cde 100644 --- a/Completion/Builtins/_emulate +++ b/Completion/Builtins/_emulate @@ -3,4 +3,4 @@ _arguments -C -s \ '-L[set local_options and local_traps as well]' \ '-R[reset all options instead of only those needed for script portability]' \ - '1::shell to emulate:(zsh sh ksh csh)' + '::shell to emulate:(zsh sh ksh csh)' diff --git a/Completion/Builtins/_zpty b/Completion/Builtins/_zpty index ac631baf4..e766e509e 100644 --- a/Completion/Builtins/_zpty +++ b/Completion/Builtins/_zpty @@ -9,7 +9,7 @@ _arguments -C -s \ '(-e -b -d -r -L)-w[send string to command]:name:->name:*:strings to write' \ '(-e -b -d -w -L *)-r[read string from command]:name:->name:param:_parameters' \ '(-e -b -d -w -r)-L[list defined commands as calls]' \ - '(-r)*::args:_normal' + '(-r)*::args:_normal' && return 0 if [[ $state = name ]]; then list=( ${${(f)"$(zpty)"}#*\) } ) |