diff options
author | Will Boyce <me@willboyce.com> | 2014-04-28 23:12:49 +0100 |
---|---|---|
committer | ncanceill <nicolas.canceill@ens-cachan.org> | 2014-06-10 13:33:33 +0200 |
commit | 09fdf763114fc571debff96b48c85ecfaeb7a2e4 (patch) | |
tree | da5a727d18c131038418006cc42cb34563efe9a6 /lib/completion.zsh | |
parent | 7fbbf28e6e37e604c7821a24993d32a478d857f8 (diff) | |
download | zsh-09fdf763114fc571debff96b48c85ecfaeb7a2e4.tar.gz zsh-09fdf763114fc571debff96b48c85ecfaeb7a2e4.tar.bz2 zsh-09fdf763114fc571debff96b48c85ecfaeb7a2e4.zip |
ignore usernames beginning with underscore
Diffstat (limited to 'lib/completion.zsh')
-rw-r--r-- | lib/completion.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/completion.zsh b/lib/completion.zsh index c54249c52..fa1d97f48 100644 --- a/lib/completion.zsh +++ b/lib/completion.zsh @@ -44,7 +44,7 @@ zstyle ':completion:*:*:*:users' ignored-patterns \ 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 + usbmux uucp vcsa wwwrun xfs '_*' # ... unless we really want to. zstyle '*' single-ignored show |