gemini-cli / packages /cli /src /ui /commands /editorCommand.ts
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
52efc7b verified
Raw
History Blame Contribute Delete
444 Bytes
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {
CommandKind,
type OpenDialogActionReturn,
type SlashCommand,
} from './types.js';
export const editorCommand: SlashCommand = {
name: 'editor',
description: 'Set external editor preference',
kind: CommandKind.BUILT_IN,
autoExecute: true,
action: (): OpenDialogActionReturn => ({
type: 'dialog',
dialog: 'editor',
}),
};