summaryrefslogtreecommitdiffstats
path: root/shell/completion.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'shell/completion.zsh')
-rw-r--r--shell/completion.zsh33
1 files changed, 22 insertions, 11 deletions
diff --git a/shell/completion.zsh b/shell/completion.zsh
index bb256d99..1b9d5594 100644
--- a/shell/completion.zsh
+++ b/shell/completion.zsh
@@ -215,21 +215,32 @@ _fzf_complete() {
command rm -f "$fifo"
}
+__fzf_list_hosts() {
+ setopt localoptions nonomatch
+ 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 | tr ',' '\n' | tr -d '[' | awk '{ print $1 " " $1 }') \
+ <(command grep -v '^\s*\(#\|$\)' /etc/hosts | command grep -Fv '0.0.0.0') |
+ awk -v "user=$1" '{if (length($2) > 0) {print user $2}}' | sort -u
+}
+
_fzf_complete_telnet() {
- _fzf_complete +m -- "$@" < <(
- command grep -v '^\s*\(#\|$\)' /etc/hosts | command grep -Fv '0.0.0.0' |
- awk '{if (length($2) > 0) {print $2}}' | sort -u
- )
+ _fzf_complete +m -- "$@" < <(__fzf_list_hosts "")
}
+# The first and the only argument is the LBUFFER without the current word that contains the trigger.
+# The current word without the trigger is in the $prefix variable passed from the caller.
_fzf_complete_ssh() {
- _fzf_complete +m -- "$@" < <(
- setopt localoptions nonomatch
- 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 | tr ',' '\n' | tr -d '[' | awk '{ print $1 " " $1 }') \
- <(command grep -v '^\s*\(#\|$\)' /etc/hosts | command grep -Fv '0.0.0.0') |
- awk '{if (length($2) > 0) {print $2}}' | sort -u
- )
+ local tokens=(${(z)1})
+ case ${tokens[-1]} in
+ -i|-F|-E)
+ _fzf_path_completion "$prefix" "$1"
+ ;;
+ *)
+ local user=
+ [[ $prefix =~ @ ]] && user="${prefix%%@*}@"
+ _fzf_complete +m -- "$@" < <(__fzf_list_hosts "$user")
+ ;;
+ esac
}
_fzf_complete_export() {