Hejsil / zig-clap

Command line argument parsing library
MIT License
939 stars 67 forks source link

StreamingClap should support making all arguments after `--` be positional arguments #31

Closed Hejsil closed 3 years ago

Hejsil commented 3 years ago
program --arg1 --arg2 -- --arg3 --arg4

long arguments: --arg1, --arg2
positionals: --arg3, --arg4
Hejsil commented 3 years ago

Actually, I think StreamingClap could support this.

Hejsil commented 3 years ago

Fixed in db7525e