X-Git-Url: https://git.madduck.net/etc/ssh.git/blobdiff_plain/7e489083bc0d1328c7db1b1bbf036e31c0f98ea4..c61b78f6631ca529dc36a7df58830b2dec94bb95:/.zsh/zshrc/parts.d/50-ssh 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)'