From c61b78f6631ca529dc36a7df58830b2dec94bb95 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 30 Mar 2020 09:18:09 +1300 Subject: [PATCH] fix up completion for ssh functions --- .zsh/zshrc/parts.d/50-ssh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.zsh/zshrc/parts.d/50-ssh b/.zsh/zshrc/parts.d/50-ssh index 4e37508..53d189c 100644 --- a/.zsh/zshrc/parts.d/50-ssh +++ b/.zsh/zshrc/parts.d/50-ssh @@ -24,13 +24,14 @@ _ssh_proxy() { eval ssh $sshopts -t $cmd $cmdopts } -alias rrsh='_ssh_proxy "su -"' +# need functions instead of aliases for completion +rrsh() { _ssh_proxy "su -" "$@" } compdef rrsh=ssh -alias ttsh='_ssh_proxy "tmux last"' +ttsh() { _ssh_proxy "tmux last" "$@" } compdef ttsh=ssh -alias rtsh='_ssh_proxy "tmux new su -"' +rtsh() { _ssh_proxy "tmux new su -" "$@" } compdef rtsh=ssh alias kssh='rm -vf -- $VARDIR/ssh/ssh_control_*(=as-60Y1omN)' -- 2.39.2