-
Notifications
You must be signed in to change notification settings - Fork 4k
Added changes for clu helps #1656
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Hi @arroyc, I'm your friendly neighborhood Azure Pull Request Bot (You can call me AZPRBOT). Thanks for your contribution!
TTYL, AZPRBOT; |
private void PresentCommandHelp(ICommandBinder commandBinder, string[] arguments, bool prefix) | ||
private void PresentCommandCompletion(string[] arguments) | ||
{ | ||
foreach (var cmd in Help.CommandDispatchHelper.CompleteCommands(CLUEnvironment.GetPackagesRootPath(), arguments).OrderBy((cmd) => cmd.Commandline)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
line breaks
{ | ||
// BUGBUG - NYI! | ||
if (arguments.Length == 0) | ||
{ | ||
var concatenatedArgs = string.Join(" ", arguments); | ||
Console.WriteLine($"Look up help corresponding to the arguments '{concatenatedArgs}'"); | ||
Console.WriteLine("TODO: Present help for Azure itself..."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't thinkw e should write this to the console: let's put a TODO comment in the code instead
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed .. I thought .. for demo we wanted it specifically to be in command prompt
@arroyc A couple of changes. |
added help files and updates on code review comments
added changes needed for finding helps/commands etc for clui