From 9c7fb870c1a7c80741fafdfc6837d4b92e373b2d Mon Sep 17 00:00:00 2001 From: Deepankar Sharma Date: Wed, 13 Aug 2025 13:32:54 -0400 Subject: Add terminal setup command for Shift+Enter and Ctrl+Enter support (#3289) Co-authored-by: jacob314 --- packages/cli/src/services/BuiltinCommandLoader.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'packages/cli/src/services') diff --git a/packages/cli/src/services/BuiltinCommandLoader.ts b/packages/cli/src/services/BuiltinCommandLoader.ts index 639bb4d8..7a09cb14 100644 --- a/packages/cli/src/services/BuiltinCommandLoader.ts +++ b/packages/cli/src/services/BuiltinCommandLoader.ts @@ -33,6 +33,7 @@ import { toolsCommand } from '../ui/commands/toolsCommand.js'; import { settingsCommand } from '../ui/commands/settingsCommand.js'; import { vimCommand } from '../ui/commands/vimCommand.js'; import { setupGithubCommand } from '../ui/commands/setupGithubCommand.js'; +import { terminalSetupCommand } from '../ui/commands/terminalSetupCommand.js'; /** * Loads the core, hard-coded slash commands that are an integral part @@ -76,6 +77,7 @@ export class BuiltinCommandLoader implements ICommandLoader { settingsCommand, vimCommand, setupGithubCommand, + terminalSetupCommand, ]; return allDefinitions.filter((cmd): cmd is SlashCommand => cmd !== null); -- cgit v1.2.3