diff options
author | Robby Russell <robby@planetargon.com> | 2014-03-16 18:44:45 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-03-16 18:44:45 -0700 |
commit | 8ee99715560711cbf798a05f2bde72898b21bbb7 (patch) | |
tree | 4cd2fca6a7f45cb95451d8d431b91bbdbeb91b3a | |
parent | c9e7129341978cf0ba4767b20b31cd2fa712c05f (diff) | |
parent | b56e8fb47868f8433c7da809be3d4df833d9f59c (diff) | |
download | zsh-8ee99715560711cbf798a05f2bde72898b21bbb7.tar.gz zsh-8ee99715560711cbf798a05f2bde72898b21bbb7.tar.bz2 zsh-8ee99715560711cbf798a05f2bde72898b21bbb7.zip |
Merge pull request #2613 from Fisiu/ignore-ssh-users
Ignore more users in ssh completion.
-rw-r--r-- | lib/completion.zsh | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/completion.zsh b/lib/completion.zsh index 6e18e9c82..c54249c52 100644 --- a/lib/completion.zsh +++ b/lib/completion.zsh @@ -37,13 +37,14 @@ zstyle ':completion::complete:*' cache-path $ZSH/cache/ # Don't complete uninteresting users zstyle ':completion:*:*:*:users' ignored-patterns \ - adm amanda apache avahi beaglidx bin cacti canna clamav daemon \ - dbus distcache dovecot fax ftp games gdm gkrellmd gopher \ - hacluster haldaemon halt hsqldb ident junkbust ldap lp mail \ - mailman mailnull mldonkey mysql nagios \ - named netdump news nfsnobody nobody nscd ntp nut nx openvpn \ - operator pcap postfix postgres privoxy pulse pvm quagga radvd \ - rpc rpcuser rpm shutdown squid sshd sync uucp vcsa xfs + adm amanda apache at avahi avahi-autoipd beaglidx bin cacti canna \ + clamav daemon dbus distcache dnsmasq dovecot fax ftp games gdm \ + gkrellmd gopher hacluster haldaemon halt hsqldb ident junkbust kdm \ + ldap lp mail mailman mailnull man messagebus mldonkey mysql nagios \ + named netdump news nfsnobody nobody nscd ntp nut nx obsrun openvpn \ + operator pcap polkitd postfix postgres privoxy pulse pvm quagga radvd \ + rpc rpcuser rpm rtkit scard shutdown squid sshd statd svn sync tftp \ + usbmux uucp vcsa wwwrun xfs # ... unless we really want to. zstyle '*' single-ignored show |