From 3be98e6244736405d9ddbf4778da3c45ce690c0c Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Mon, 12 Jul 2021 22:23:46 +0200 Subject: [PATCH] fixed home/end keys in ssh sessions --- tabby-ssh/src/components/sshTab.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tabby-ssh/src/components/sshTab.component.ts b/tabby-ssh/src/components/sshTab.component.ts index 69af4f8b..f12eb015 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() -- GitLab