(event?: KeyboardEvent | null)
| 55 | } |
| 56 | |
| 57 | export function shouldIgnoreAppShortcuts(event?: KeyboardEvent | null): boolean { |
| 58 | return isMonacoFocused(event) || isBlockingOverlayActive(event) |
| 59 | } |
| 60 | |
| 61 | export function shouldIgnoreChatReadingShortcuts(event?: KeyboardEvent | null): boolean { |
| 62 | const contextElement = getContextElement(event) |
no test coverage detected