From 95a04788e52873a4ffcd4fb238bf334902048107 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Fri, 17 Sep 2021 00:23:12 +0200 Subject: [PATCH] hotkey fixes --- tabby-core/src/services/hotkeys.service.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tabby-core/src/services/hotkeys.service.ts b/tabby-core/src/services/hotkeys.service.ts index db335be8..9e4c7460 100644 --- a/tabby-core/src/services/hotkeys.service.ts +++ b/tabby-core/src/services/hotkeys.service.ts @@ -229,6 +229,9 @@ export class HotkeysService { if (!matches.length) { return null } + if (matches[0].sequence.length > 1) { + this.clearCurrentKeystrokes() + } return matches[0].id }