diff options
author | Robby Russell <robby@planetargon.com> | 2011-12-26 10:02:59 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-12-26 10:02:59 -0800 |
commit | 8af3a9af56a2311d8a0c27b57e7ae09616038b36 (patch) | |
tree | 881adbbf3b4fc63542726381aef7735481421f8b /lib | |
parent | f8db2e88e51b9dc25151b616704ab77ab8bbac63 (diff) | |
parent | d8521693f4e2c140391065e7b721d7452134259f (diff) | |
download | zsh-8af3a9af56a2311d8a0c27b57e7ae09616038b36.tar.gz zsh-8af3a9af56a2311d8a0c27b57e7ae09616038b36.tar.bz2 zsh-8af3a9af56a2311d8a0c27b57e7ae09616038b36.zip |
Merge pull request #768 from askreet/master
global ssh_known_hosts file
Diffstat (limited to 'lib')
-rw-r--r-- | lib/completion.zsh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/completion.zsh b/lib/completion.zsh index b3cc91822..0e5d480ff 100644 --- a/lib/completion.zsh +++ b/lib/completion.zsh @@ -32,9 +32,11 @@ zstyle ':completion:*:cd:*' tag-order local-directories directory-stack path-dir cdpath=(.) # use /etc/hosts and known_hosts for hostname completion +[ -r /etc/ssh/ssh_known_hosts ] && _global_ssh_hosts=(${${${${(f)"$(</etc/ssh/ssh_known_hosts)"}:#[\|]*}%%\ *}%%,*}) || _ssh_hosts=() [ -r ~/.ssh/known_hosts ] && _ssh_hosts=(${${${${(f)"$(<$HOME/.ssh/known_hosts)"}:#[\|]*}%%\ *}%%,*}) || _ssh_hosts=() [ -r /etc/hosts ] && : ${(A)_etc_hosts:=${(s: :)${(ps:\t:)${${(f)~~"$(</etc/hosts)"}%%\#*}##[:blank:]#[^[:blank:]]#}}} || _etc_hosts=() hosts=( + "$_global_ssh_hosts[@]" "$_ssh_hosts[@]" "$_etc_hosts[@]" `hostname` |