Kōshin Alex Flint

Results 82 comments of Kōshin Alex Flint

Looks like this was fixed in brightray, but brightray_example is still pointing to a slightly older version of brightray

The approach I'm hoping to take to enable this is the one from #197. Need to get that PR up to date with all recent changes to this repo, and...

Thanks for the note @purpleidea. Care to jump on a call some time to say hi / chat? Any chance you're free at 3pm US Eastern time one day this...

Oh, very interesting. This might a bug due to false being the zero value for bool. The way go-arg determines whether a value has been overridden is by checking whether...

The best way to do it at the moment is to implement TextUnmarshaler, as in: ``` type Map map[string]string func (m *Map) UnmarshalText(b []byte) error { // decode the string...

Thanks for these James. Here are my thoughts: ## First case ```bash go run parsingbug.go --some-list list1 sub input ``` At the moment, list arguments without equals signs consume all...

Yeah, seems reasonable. Happy to implement this.

Well ok the reason for this is that subcommands are nil pointers when the help string for the parent command is being printed. I didn't want to assume that you...

Good suggestion re assuming that the input args include all of os.Args in v2, but I'm not sure about the `arg:"zeroth"` tag idea -- I think it would be simpler...

Is it that you wanted the environment variable to not show up in the help text?