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 }