diff options
author | Mikael Magnusson <mikachu@gmail.com> | 2015-08-05 19:45:35 +0200 |
---|---|---|
committer | Mikael Magnusson <mikachu@gmail.com> | 2015-08-05 19:45:35 +0200 |
commit | fb0b6483a08300e6d72e6079d0e402603f73255d (patch) | |
tree | 81054f4f5824f8f7215638fea3ec7e0d9026a14f /Completion/Unix/Command/_ssh | |
parent | 8ce0320d1b9bc64f50babab0a2dcfb85ce2cb1fc (diff) | |
download | zsh-fb0b6483a08300e6d72e6079d0e402603f73255d.tar.gz zsh-fb0b6483a08300e6d72e6079d0e402603f73255d.tar.xz zsh-fb0b6483a08300e6d72e6079d0e402603f73255d.zip |
unposted: _ssh: use the -q option for the = suffix
This way, you can press = to start completing the values instead of the space, backspace, tab dance
Diffstat (limited to 'Completion/Unix/Command/_ssh')
-rw-r--r-- | Completion/Unix/Command/_ssh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_ssh b/Completion/Unix/Command/_ssh index d00f1dfd6..fb8fe57b0 100644 --- a/Completion/Unix/Command/_ssh +++ b/Completion/Unix/Command/_ssh @@ -383,7 +383,7 @@ _ssh () { else # old options are after the empty "\"-line _wanted values expl 'configure file option' \ - compadd -M 'm:{a-z}={A-Z}' -S '=' - \ + compadd -M 'm:{a-z}={A-Z}' -q -S '=' - \ AddressFamily \ BatchMode \ BindAddress \ |