summaryrefslogtreecommitdiffstats
path: root/shell/completion.zsh
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-06-02 22:01:26 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-06-02 22:01:26 +0900
commit923feb69ab80c63c49de114c6bcc5f8c48ef16d4 (patch)
treec4b586c1e2ddf1cf61d87153190303ab32097dc5 /shell/completion.zsh
parent92dba7035a7f748da6fef74bc1b383f0b271e34b (diff)
[zsh] Fix indentation
Diffstat (limited to 'shell/completion.zsh')
-rw-r--r--shell/completion.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/completion.zsh b/shell/completion.zsh
index dca77cd0..cbec1149 100644
--- a/shell/completion.zsh
+++ b/shell/completion.zsh
@@ -110,7 +110,7 @@ _fzf_complete_telnet() {
_fzf_complete_ssh() {
_fzf_complete '+m' "$@" < <(
cat <(cat ~/.ssh/config /etc/ssh/ssh_config 2> /dev/null | \grep -i '^host' | \grep -v '*') \
- <(\grep -oE '^[^ ]+' ~/.ssh/known_hosts | tr ',' '\n' | awk '{ print $1 " " $1 }') \
+ <(\grep -oE '^[^ ]+' ~/.ssh/known_hosts | tr ',' '\n' | awk '{ print $1 " " $1 }') \
<(\grep -v '^\s*\(#\|$\)' /etc/hosts | \grep -Fv '0.0.0.0') |
awk '{if (length($2) > 0) {print $2}}' | sort -u
)