We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7197d0f commit 49e167cCopy full SHA for 49e167c
packages/core/src/browser/keybinding.ts
@@ -497,7 +497,7 @@ export class KeybindingRegistry {
497
498
isEnabledInScope(binding: common.Keybinding, target: HTMLElement | undefined): boolean {
499
const context = binding.context && this.contexts[binding.context];
500
- if (binding.command && !this.commandRegistry.isEnabled(binding.command, binding.args)) {
+ if (binding.command && (!this.isPseudoCommand(binding.command) && !this.commandRegistry.isEnabled(binding.command, binding.args))) {
501
return false;
502
}
503
if (context && !context.isEnabled(binding)) {
0 commit comments