diff --git a/shell/completion.bash b/shell/completion.bash index f3dd19e..e5f2927 100644 --- a/shell/completion.bash +++ b/shell/completion.bash @@ -411,11 +411,11 @@ __fzf_list_hosts() { command cat <(command tail -n +1 ~/.ssh/config ~/.ssh/config.d/* /etc/ssh/ssh_config 2> /dev/null | command grep -i '^\s*host\(name\)\? ' | command awk '{for (i = 2; i <= NF; i++) print $1 " " $i}' | command grep -v '[*?%]') \ <(command grep -oE '^[[a-z0-9.,:-]+' ~/.ssh/known_hosts 2> /dev/null | command tr ',' '\n' | command tr -d '[' | command awk '{ print $1 " " $1 }') \ <(command grep -v '^\s*\(#\|$\)' /etc/hosts 2> /dev/null | command grep -Fv '0.0.0.0') | - command awk -v "user=$1" '{if (length($2) > 0) {print user $2}}' | command sort -u + command awk '{if (length($2) > 0) {print $2}}' | command sort -u } _fzf_host_completion() { - _fzf_complete +m -- "$@" < <(__fzf_list_hosts "") + _fzf_complete +m -- "$@" < <(__fzf_list_hosts) } # Values for $1 $2 $3 are described here @@ -431,7 +431,7 @@ _fzf_complete_ssh() { *) local user= [[ "$2" =~ '@' ]] && user="${2%%@*}@" - _fzf_complete +m -- "$@" < <(__fzf_list_hosts "$user") + _fzf_complete +m -- "$@" < <(__fzf_list_hosts | command awk -v user="$user" '{print user $0}') ;; esac } diff --git a/shell/completion.zsh b/shell/completion.zsh index f76d8af..c72d61c 100644 --- a/shell/completion.zsh +++ b/shell/completion.zsh @@ -223,11 +223,11 @@ __fzf_list_hosts() { command cat <(command tail -n +1 ~/.ssh/config ~/.ssh/config.d/* /etc/ssh/ssh_config 2> /dev/null | command grep -i '^\s*host\(name\)\? ' | awk '{for (i = 2; i <= NF; i++) print $1 " " $i}' | command grep -v '[*?%]') \ <(command grep -oE '^[[a-z0-9.,:-]+' ~/.ssh/known_hosts 2> /dev/null | tr ',' '\n' | tr -d '[' | awk '{ print $1 " " $1 }') \ <(command grep -v '^\s*\(#\|$\)' /etc/hosts 2> /dev/null | command grep -Fv '0.0.0.0') | - awk -v "user=$1" '{if (length($2) > 0) {print user $2}}' | sort -u + awk '{if (length($2) > 0) {print $2}}' | sort -u } _fzf_complete_telnet() { - _fzf_complete +m -- "$@" < <(__fzf_list_hosts "") + _fzf_complete +m -- "$@" < <(__fzf_list_hosts) } # The first and the only argument is the LBUFFER without the current word that contains the trigger. @@ -241,7 +241,7 @@ _fzf_complete_ssh() { *) local user= [[ $prefix =~ @ ]] && user="${prefix%%@*}@" - _fzf_complete +m -- "$@" < <(__fzf_list_hosts "$user") + _fzf_complete +m -- "$@" < <(__fzf_list_hosts | awk -v user="$user" '{print user $0}') ;; esac }