oh-my-fish/plugins/ssh/ssh.fish

13 lines
313 B
Fish

function ssh --description 'OpenSSH SSH client (remote login program) with a conservative $TERM value'
switch $TERM
case screen-256color
set -lx TERM screen
command ssh $argv
case xterm-256color
set -lx TERM xterm
command ssh $argv
case '*'
command ssh $argv
end
end