mirror of
https://github.com/Eugeny/tabby
synced 2024-12-13 14:52:45 +00:00
fixed home/end keys in ssh sessions
This commit is contained in:
parent
5e771534a8
commit
3be98e6244
1 changed files with 2 additions and 2 deletions
|
@ -48,10 +48,10 @@ export class SSHTabComponent extends BaseTerminalTabComponent {
|
||||||
}
|
}
|
||||||
switch (hotkey) {
|
switch (hotkey) {
|
||||||
case 'home':
|
case 'home':
|
||||||
this.sendInput('\x1b[H' )
|
this.sendInput('\x1bOH' )
|
||||||
break
|
break
|
||||||
case 'end':
|
case 'end':
|
||||||
this.sendInput('\x1b[F' )
|
this.sendInput('\x1bOF' )
|
||||||
break
|
break
|
||||||
case 'restart-ssh-session':
|
case 'restart-ssh-session':
|
||||||
this.reconnect()
|
this.reconnect()
|
||||||
|
|
Loading…
Reference in a new issue