UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

16 lines 388 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { CommandKind, } from './types.js'; export const editorCommand = { name: 'editor', description: 'set external editor preference', kind: CommandKind.BUILT_IN, action: () => ({ type: 'dialog', dialog: 'editor', }), }; //# sourceMappingURL=editorCommand.js.map