Forge
csharp4405de34
1using System.Collections.Immutable;
2
3namespace CascadeIDE.Services;
4
5public static partial class IdeCommandRegistry
6{
7 private static void RegisterCockpitPalette(ImmutableArray<IdeCommandRegistryEntry>.Builder b)
8 {
9 AddPalette(b, "cockpit_open_command_line", IdeCommands.CockpitOpenCommandLine,
10 "Cockpit: Command Line (slash REPL)", "Cockpit");
11 }
12}
13
View only · write via MCP/CIDE