diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2006-02-03 22:44:49 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2006-02-03 22:44:49 +0000 |
commit | dfea4c5eaa685ba8c7bff59dff5243ed5f428bf1 (patch) | |
tree | ca3e2c756c1fc7dd444f3725f5ad30573406d155 /Completion/Unix | |
parent | ed6c05aa7cccd69d4928907450f5d6d84d3ef287 (diff) | |
download | zsh-dfea4c5eaa685ba8c7bff59dff5243ed5f428bf1.tar.gz zsh-dfea4c5eaa685ba8c7bff59dff5243ed5f428bf1.tar.xz zsh-dfea4c5eaa685ba8c7bff59dff5243ed5f428bf1.zip |
22191: from Danek Duvall: neaten host and user completions
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Type/_hosts | 2 | ||||
-rw-r--r-- | Completion/Unix/Type/_users | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/Completion/Unix/Type/_hosts b/Completion/Unix/Type/_hosts index e6833132f..7d88a4532 100644 --- a/Completion/Unix/Type/_hosts +++ b/Completion/Unix/Type/_hosts @@ -23,7 +23,7 @@ if ! zstyle -a ":completion:${curcontext}:hosts" hosts _hosts; then fi if [[ -r ~/.ssh/known_hosts ]]; then - _cache_hosts+=( $(sed -e '/^[0-9]*\.[0-9]*\.[0-9]*\.[0-9]/d' -e 's/[ ,].*//p' ~/.ssh/known_hosts) ) + _cache_hosts+=(${${${(u)${(f)"$(<~/.ssh/known_hosts)"}%%[ ,]*}:#(#s)[0-9]##.[0-9]##.[0-9]##.[0-9]##(#e)}:#(#s)[0-9a-f:]##(#e)}) fi fi diff --git a/Completion/Unix/Type/_users b/Completion/Unix/Type/_users index de671f27d..5ab8dbc55 100644 --- a/Completion/Unix/Type/_users +++ b/Completion/Unix/Type/_users @@ -2,7 +2,9 @@ local expl users -zstyle -a ":completion:${curcontext}:" users users && - _wanted users expl user compadd "$@" -a - users && return 0 +if zstyle -a ":completion:${curcontext}:users" users users; then + _wanted users expl user compadd "$@" -a - users + return 0 +fi _wanted users expl user compadd "$@" -k - userdirs |