00JCIV00 / cova

Commands, Options, Values, Arguments. A simple yet robust cross-platform command line argument parsing library for Zig.
https://00jciv00.github.io/cova/
MIT License
110 stars 5 forks source link

Option Termination Configuration. #44

Closed p7r0x7 closed 1 year ago

p7r0x7 commented 1 year ago
/// Enable Option Termination using `--` per the POSIX standard (or whatever symbol is chosen for Option long names).
enable_opt_termination: bool = true,

a) This comment is ambiguous if you don't already understand the POSIX standard here. b) As discussed elsewhere, this option terminator could be made configurable to support any string.

00JCIV00 commented 1 year ago

Good call as previously discussed. Addressed with cca5576.