Komari Spaghetti

Results 116 comments of Komari Spaghetti

Aah, so this is a request for improving `parseParam` and `help` to support more exotic help "value descriptions" per say. Yea, if we can come up with something good, then...

Ofc, you'll still need to handle parsing this format outside the library, but as far as I understand, that is your intention.

Hi. The master branch of zig-clap targets zig master. The tagged releases of clap target tagged releases of zig

> > The master branch of zig-clap targets zig master > > Would it be a good idea to make this clear in the readme? Yes, this makes sense. I'll...

Right now, there is no standard way to install Zig libraries. There are a few common ways people do it: * git submodule or copying and pasting the library into...

You can also now try out the zig package manager: `build.zig.zon` ```zig .{ .name = "name-of-my-program-or-package", .version = "0.0.0", .dependencies = .{ .clap = .{ .url = "https://github.com/Hejsil/zig-clap/archive/.tar.gz", .hash =...

@rawhuul Version `0.7` of zig-clap targets `0.11` of zig. There is no guarantee that this version will work with newer version of zig. Seems you're very close to zig master,...

@MathewDeyo You have the right code in `build.zig` after you removed `exe.linkLibrary(clap.artifact("clap"));`. The problem you're hitting now is that `zig run` doesn't use the build system. Only `zig build` actually...

Maybe it is worth exploring just making instancing the default and only way to do this. So we look for fields instead of declarations for configuration. We could even have...

> ^ Note that resource acquisition and cleanup happens inside the measured function here. This is probably not desired. Resource acquisition and cleanup can be separated by passing in a...