command-line-api icon indicating copy to clipboard operation
command-line-api copied to clipboard

Command line parsing, invocation, and rendering of terminal output.

Results 409 command-line-api issues
Sort by recently updated
recently updated
newest added

The following code exists in the `Tokenizer.Tokenize` method: ``` var rootIsExplicit = FirstArgIsRootCommand(args, rootCommand, inferRootCommand); var rootLocation = Location.CreateRoot(rootCommand.Name, rootIsExplicit, rootIsExplicit ? 0 : -1); ``` Keep in mind that...

Not a biggie, but is the naming of classes going to be addressed. CliConfiguration is ok I guess but then you have CliArgument and ArgumentArity. It might be worth just...

It would be nice to have a library of CliCommands that are maintained as a project within itself so that each developer doesn't have to come a long and write...

Posix support of using single hyphen "-" to mean standard input. ref: https://pubs.opengroup.org/onlinepubs/9699919799/ **example** ``` cd ~ && wget -O - "https://path/to/file" | tar xzf - ``` The```-``` argument passed...

The zsh completion script has a subtle error in which it calls `dotnet suggest` instead of `dotnet-suggest`. This error makes tab completion on zsh non-functional for me. To trigger the...

This is in draft because it is the entire implementation and thus could use some discussion as part of the review - perhaps in our Tuesday slot. Also, because it...

Powderhouse

This pull request updates the following dependencies [marker]: (Begin:272aed7a-a016-4fc1-8897-08d8446df6cf) ## From https://github.com/dotnet/arcade - **Subscription**: 272aed7a-a016-4fc1-8897-08d8446df6cf - **Build**: 20240821.4 - **Date Produced**: August 21, 2024 6:41:26 PM UTC - **Commit**: 4460b755f3c7c89e9660d9580ff79afc4218dd85...

I am relatively new to this library but I really like it. It is somewhat complicated and difficult to get started on and requires a lot of code to get...

Working on default values and validation at nearly the same time, along with conversations with Chet about configuration of open ended completions, led to an understanding of unification in how...

Powderhouse