Forge
csharp4405de34
1namespace CascadeIDE.IdeDisplay.CockpitCommandLine;
2
3/// <summary>IDS v0: снимок оверлея Cockpit Command Line (editor host, ADR 0079).</summary>
4public sealed record CockpitCommandLineSurfaceSnapshot(
5 string DraftText,
6 int CaretIndex,
7 int SelectedSuggestionIndex,
8 string? Breadcrumb,
9 bool ShowSuggestions,
10 IReadOnlyList<CockpitCommandLineSurfaceEntry> Suggestions)
11{
12 public static CockpitCommandLineSurfaceSnapshot Empty { get; } = new("", 0, -1, null, false, []);
13}
14
View only · write via MCP/CIDE