Alex Flint
Alex Flint
I like this proposal a lot. I think a unified `gallium` tool makes a lot of sense, and I think over time we will have a number of different gallium-specific...
I have seen this happen before when LockOSThread was not called at the top of main, or where the chromium loop was not launched from the same goroutine that called...
Oh this would be great! I will likely look into this in the near future.
Here is a library that sets up a separate binary that provides completion support for the primary binary: https://github.com/posener/complete/tree/master Ultimately, completions are installed into bash by appending a `complete -C`...
Oh, interesting. Yeah I don't think we should print the version string in error lines. Do you mean that if you do something like ```go type args struct { N...
Seems like a great idea. On Tue, Aug 24, 2021 at 12:12 PM Marco Molteni ***@***.***> wrote: > Hello, > I have this not fully backed idea: instead of the...
Indeed this is not possible with the current API. One option would be to do it manually like this: ```go var args struct { H bool `arg:"-h"` } arg.MustParse(&args) var...
Yes that seems reasonable. PR would be much appreciated @IljaN
Hey @Lilja- thank you for posting this. What would you like the help text to be in this case? Which strings would you like to join together?
I see. Thank you for explaining this, @Lilja. I understand your need. It seems reasonable to me. One way we could do it is with a convention where you can...