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/_zpty | |
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/_zpty')
-rw-r--r-- | Completion/Builtins/_zpty | 2 |
1 files changed, 1 insertions, 1 deletions
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)"}#*\) } ) |