diff options
author | Sébastien M-B <essembeh@gmail.com> | 2011-11-05 00:34:37 +0100 |
---|---|---|
committer | Sébastien M-B <essembeh@gmail.com> | 2011-11-05 00:34:37 +0100 |
commit | c4434d2ddedd62737ad3f99111ef47d722e2b74e (patch) | |
tree | 18230af62c7c4daae0e415056c8522eb105141bd | |
parent | 914e1b52583e09298f10fab7a301711bd9613ac6 (diff) | |
download | zsh-c4434d2ddedd62737ad3f99111ef47d722e2b74e.tar.gz zsh-c4434d2ddedd62737ad3f99111ef47d722e2b74e.tar.bz2 zsh-c4434d2ddedd62737ad3f99111ef47d722e2b74e.zip |
Update completion for SSH
Add all hosts found in ~/.ssh/config.
Tip found on: http://www.nerux.org/wiki/OpenSSH#coupler_avec_zsh_completion
-rw-r--r-- | lib/completion.zsh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/completion.zsh b/lib/completion.zsh index b3cc91822..dab9bb1d3 100644 --- a/lib/completion.zsh +++ b/lib/completion.zsh @@ -33,14 +33,17 @@ cdpath=(.) # use /etc/hosts and known_hosts for hostname completion [ -r ~/.ssh/known_hosts ] && _ssh_hosts=(${${${${(f)"$(<$HOME/.ssh/known_hosts)"}:#[\|]*}%%\ *}%%,*}) || _ssh_hosts=() +[ -r ~/.ssh/config ] && _ssh_config=($(cat ~/.ssh/config | sed -ne 's/Host[=\t ]//p')) || _ssh_config=() [ -r /etc/hosts ] && : ${(A)_etc_hosts:=${(s: :)${(ps:\t:)${${(f)~~"$(</etc/hosts)"}%%\#*}##[:blank:]#[^[:blank:]]#}}} || _etc_hosts=() hosts=( + "$_ssh_config[@]" "$_ssh_hosts[@]" "$_etc_hosts[@]" `hostname` localhost ) zstyle ':completion:*:hosts' hosts $hosts +zstyle ':completion:*' users off # Use caching so that commands like apt and dpkg complete are useable zstyle ':completion::complete:*' use-cache 1 |