diff options
author | Robby Russell <robby@planetargon.com> | 2012-12-02 12:42:08 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2012-12-02 12:42:08 -0800 |
commit | 2e5a689c05f02f7403055367a5dbc3b041829c8b (patch) | |
tree | 1e42533891591d3e375b518666926dc25de06ce0 | |
parent | ac90eed387770e92e02f12c394b9f81b0b63b099 (diff) | |
parent | 9af7f862999c458525d1a5c0f2470757ffe2f1dc (diff) | |
download | zsh-2e5a689c05f02f7403055367a5dbc3b041829c8b.tar.gz zsh-2e5a689c05f02f7403055367a5dbc3b041829c8b.tar.bz2 zsh-2e5a689c05f02f7403055367a5dbc3b041829c8b.zip |
Merge pull request #1265 from aletessier/ssh-completion
Fix ssh plugin completion
-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 f31e101d5..ba839a067 100644 --- a/lib/completion.zsh +++ b/lib/completion.zsh @@ -32,7 +32,7 @@ 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 /etc/ssh/ssh_known_hosts ] && _global_ssh_hosts=(${${${${(f)"$(</etc/ssh/ssh_known_hosts)"}:#[\|]*}%%\ *}%%,*}) || _global_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=( |