1 write to Detail
System.CommandLine (1)
Completions\CompletionItem.cs (1)
34
Detail
= detail;
4 references to Detail
System.CommandLine.StaticCompletions (4)
shells\FishShellProvider.cs (1)
371
var desc = completion.Documentation ?? completion.
Detail
;
shells\PowershellShellProvider.cs (1)
135
yield return ParameterValueResult(completion.Label, completion.InsertText ?? completion.Label, completion.Documentation ?? completion.
Detail
?? completion.Label);
shells\ZshShellProvider.cs (2)
350
if (staticCompletions.Any(c => c.InsertText is not null || c.
Detail
is not null || c.Documentation is not null))
358
var documentation = completion.Documentation ?? completion.
Detail
?? completion.Label;