From: martin f. krafft Date: Sun, 29 Mar 2020 20:18:09 +0000 (+1300) Subject: fix up completion for ssh functions X-Git-Url: https://git.madduck.net/etc/ssh.git/commitdiff_plain/c61b78f6631ca529dc36a7df58830b2dec94bb95 fix up completion for ssh functions --- 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)'