prevent "history restored" popping up in ssh splits

This commit is contained in:
Eugene Pankov 2021-06-28 22:21:22 +02:00
parent 90affc3efb
commit 1198ede0fd
No known key found for this signature in database
GPG key ID: 5896FCBBDD1CF4F4

View file

@ -19,4 +19,11 @@ export class RecoveryProvider extends TabRecoveryProvider {
},
}
}
duplicate (recoveryToken: RecoveryToken): RecoveryToken {
return {
...recoveryToken,
savedState: null,
}
}
}