From 1a18186ccadc74e93283b83331ad5a131ac6c347 Mon Sep 17 00:00:00 2001 From: Wild Kat Date: Sun, 30 Nov 2014 09:42:32 +0100 Subject: [PATCH] changed code indent to 2 spaces for consistency --- plugins/ssh/ssh.fish | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/ssh/ssh.fish b/plugins/ssh/ssh.fish index bf6f19c..00d1963 100644 --- a/plugins/ssh/ssh.fish +++ b/plugins/ssh/ssh.fish @@ -1,12 +1,12 @@ 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 + set -lx TERM screen + command ssh $argv case xterm-256color - set -lx TERM xterm - command ssh $argv + set -lx TERM xterm + command ssh $argv case '*' command ssh $argv - end + end end