Forge
csharpdeeb25a2
1#nullable enable
2
3namespace CascadeIDE.Features.Chat;
4
5/// <summary>Контекст редактора для параметрических слэш-команд (диапазон строк).</summary>
6public readonly record struct ChatSlashEditorContext(
7 string? CurrentFilePath,
8 string? EditorText,
9 int? SelectionStart = null,
10 int? SelectionLength = null,
11 int? CaretOffset = null);
12
View only · write via MCP/CIDE