diff --git a/tabby-ssh/src/components/sshTab.component.ts b/tabby-ssh/src/components/sshTab.component.ts index 69af4f8bc50e6a66e5d272bc8183c591e5893c0b..f12eb01510f60bcd518b5b3e30ed5e676b3f8112 100644 --- a/tabby-ssh/src/components/sshTab.component.ts +++ b/tabby-ssh/src/components/sshTab.component.ts @@ -48,10 +48,10 @@ export class SSHTabComponent extends BaseTerminalTabComponent { } switch (hotkey) { case 'home': - this.sendInput('\x1b[H' ) + this.sendInput('\x1bOH' ) break case 'end': - this.sendInput('\x1b[F' ) + this.sendInput('\x1bOF' ) break case 'restart-ssh-session': this.reconnect()