diff --git a/tabby-core/src/services/hotkeys.service.ts b/tabby-core/src/services/hotkeys.service.ts index 1237fa95..e933532c 100644 --- a/tabby-core/src/services/hotkeys.service.ts +++ b/tabby-core/src/services/hotkeys.service.ts @@ -122,7 +122,7 @@ export class HotkeysService { } for (const [key, time] of this.pressedKeyTimestamps.entries()) { - if (time < performance.now() - 5000) { + if (time < performance.now() - 2000) { this.removePressedKey(key) } }