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/X/_xutils | |
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/X/_xutils')
-rw-r--r-- | Completion/X/_xutils | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Completion/X/_xutils b/Completion/X/_xutils index c0d94a998..17100c033 100644 --- a/Completion/X/_xutils +++ b/Completion/X/_xutils @@ -107,7 +107,8 @@ xon) '-screen:screen number:' \ '-user:remote user name:_users' \ ':remote host:_hosts' \ - '*:command::command:_normal' + '(-):command: _command_names -e' \ + '*:command: _normal' ;; xsetroot) _x_arguments \ |