Fargo icon indicating copy to clipboard operation
Fargo copied to clipboard

A functional command line argument parser with builtin completion.

Results 4 Fargo issues
Sort by recently updated
recently updated
newest added

I am trying to use Fargo in a .NET 6 project, which is not possible due to conflicting requirements on `FSharp.Core`. The [latest on Nuget](https://www.nuget.org/packages/Fargo.CmdLine/1.1.14#dependencies-body-tab) requires `FSharp.Core` `(>= 7.0.400)` However,...

This PR introduces fixes for usage generation and tab completion. Also fix for type in fish shell completion script. Check commit messages for details

As it stands, the visual studio tooltip for ```flag``` isn't very useful - ![image](https://github.com/thinkbeforecoding/Fargo/assets/1178570/7e33071d-1f06-4955-a535-14dd355ab04b) And I think that adding names in a similar way to is already done for ```opt```...

Hi, I was just having a go at using Fargo in a simple cli application that is currently using FSharp.SystemCommandLine, and I have a question about reading arguments as a...