Drew Burlingame
Drew Burlingame
Hiya, I found your tool from a reference and hadn't seen it before. I've been contributing to [CommandDotNet](https://github.com/bilal-fazlani/commanddotnet). We [implemented pass-through](https://github.com/bilal-fazlani/commanddotnet/commit/ff1d331549d0). Well, we had pass-through but realized I'd forgotten about...
Hey Sneal. Are you using this? I had assumed everyone had moved on to using Json serializers. In my current projects, I only use a version of the AddContext extension...
PoC @ #306 using https://github.com/tonerdo/readline This will be updated to use the CommandDotNet ReadLine from #315
updated PoC @ #402 with package at https://www.nuget.org/packages/CommandDotNet/6.1.0-alpha.repl
This feature will be complicated to add. Since a dictionary contains two types, key & value, it does not play well with the existing ArgumentTypeDescriptors which take an IArgument. Some...
I wonder if we can tap into Suggestions from System.CommandLine https://github.com/dotnet/command-line-api/wiki/Features-overview https://github.com/dotnet/command-line-api/wiki/dotnet-suggest And `dotnet`s autocomplete. Even if this only worked for dotnet to start, it would be a win https://docs.microsoft.com/en-us/dotnet/core/tools/enable-tab-autocomplete
Another nugget for thought. Bash completion supports the keywords `file` and `directory` so that files and directories are suggestions. It would be handy if we used those keywords with the...
I don't see myself getting to this one anytime soon. As you mentioned, each shell will need its own implementation. I found a java library called [picocli](https://github.com/remkop/picocli) that implements for...
I realized something that will make a big difference for this feature. We can utilize the [dotnet-suggest](https://github.com/dotnet/command-line-api/wiki/dotnet-suggest) tool for this. You can see from [these tests](https://github.com/dotnet/command-line-api/blob/master/src/System.CommandLine.Tests/SuggestDirectiveTests.cs) that the features relies...
re: dotnet-suggest. I was thinking more about how to add an optional gate for this and thought of something like this ```c# internal static AppRunner UseAutoSuggestDirective(this AppRunner appRunner, Func registerWithDotNetSuggestWhen...