You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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