mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-08-09 00:16:57 -07:00
19 lines
419 B
TypeScript
19 lines
419 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { CommandKind, type SlashCommand } from './types.js';
|
|
|
|
export const shortcutsCommand: SlashCommand = {
|
|
name: 'shortcuts',
|
|
altNames: [],
|
|
kind: CommandKind.BUILT_IN,
|
|
description: 'Toggle the shortcuts panel above the input',
|
|
autoExecute: true,
|
|
action: (context) => {
|
|
context.ui.toggleShortcutsHelp();
|
|
},
|
|
};
|