mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-18 01:00:39 -07:00
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
|
|
/**
|
||
|
|
* @license
|
||
|
|
* Copyright 2025 Google LLC
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
import { Command, keyMatchers } from '../keyMatchers.js';
|
||
|
|
import type { Key } from '../hooks/useKeypress.js';
|
||
|
|
|
||
|
|
export function shouldDismissShortcutsHelpOnHotkey(key: Key): boolean {
|
||
|
|
return Object.values(Command).some((command) => keyMatchers[command](key));
|
||
|
|
}
|