Forge
csharp4405de34
1namespace CascadeIDE.IdeDisplay.CockpitCommandLine;
2
3public readonly record struct CockpitCommandLineSurfaceIntent(
4 string DraftText,
5 int CaretIndex,
6 int SelectedSuggestionIndex,
7 string? Breadcrumb,
8 bool ShowSuggestions,
9 IReadOnlyList<CockpitCommandLineSuggestionRow> Suggestions);
10
11public readonly record struct CockpitCommandLineSuggestionRow(string Title, string? Subtitle);
12
View only · write via MCP/CIDE