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