We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
At the moment, if I have an option say
-e, --example <int>: this is an example
I can supply this option four ways:
julia demo.jl -- -e1 julia demo.jl -- -e=1 julia demo.jl -- --example 1 julia demo.jl -- --example=1
There's a fifth standard way that seems to have been overlooked:
julia demo.jl -- -e 1
It would be nice if Comonicon could support this.
The text was updated successfully, but these errors were encountered:
hmm, I think this is probably a bug of the dash separator, we should support this syntax for the sake of consistency with long options.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
At the moment, if I have an option say
I can supply this option four ways:
There's a fifth standard way that seems to have been overlooked:
It would be nice if Comonicon could support this.
The text was updated successfully, but these errors were encountered: