diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-03 14:44:01 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-03 14:44:01 +0000 |
commit | aa0381bd2b64ad6ea1e24110c1c2ec6773f9288e (patch) | |
tree | f9b2e23776f0510c2cb771bb882d5731b0a3b289 /Completion/User/_ssh | |
parent | 17e79c01575b26e28e5f978d99cff250a6d9e63b (diff) | |
download | zsh-aa0381bd2b64ad6ea1e24110c1c2ec6773f9288e.tar.gz zsh-aa0381bd2b64ad6ea1e24110c1c2ec6773f9288e.tar.xz zsh-aa0381bd2b64ad6ea1e24110c1c2ec6773f9288e.zip |
allow `-' in exclusion lists for _arguments, to avoid completing all options (11121)
Diffstat (limited to 'Completion/User/_ssh')
-rw-r--r-- | Completion/User/_ssh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/User/_ssh b/Completion/User/_ssh index 04ee5f2e2..986dec0c0 100644 --- a/Completion/User/_ssh +++ b/Completion/User/_ssh @@ -18,7 +18,7 @@ _ssh () { ssh|slogin) args=( ':remote host name:->userhost' - ':command: _command_names -e' + '(-):command: _command_names -e' '*::args:->command' ) ;& |