Forge
csharpdeeb25a2
1#nullable enable
2
3namespace CascadeIDE.Features.Chat;
4
5/// <summary>Подсказки файлов solution/workspace для slash с <see cref="SlashCompletionKind.WorkspaceFiles"/> (ADR 0125).</summary>
6public interface IWorkspaceFileSlashCompletionProvider
7{
8 IReadOnlyList<WorkspaceFileSlashMatch> GetMatches(string pathPrefix, int limit);
9}
10
11/// <param name="InsertPath">Относительный путь для вставки в поле (от корня solution/workspace).</param>
12public readonly record struct WorkspaceFileSlashMatch(string InsertPath, string Help);
13
View only · write via MCP/CIDE