Markus Balsam

Results 2 issues of Markus Balsam

It would be nice to have command-specific initializers in addition to the global ones: **Changes in command.go** ```go func (c *Command) OnInitialize(y ...func()) { c.initializers = append(c.initializers, y...) } func...

As far as I can see, it is only used in the `readline.Config` which expects `io.Writer`, not `io.WriterCloser` (see [here](https://github.com/chzyer/readline/blob/master/readline.go#L61)). `p.Stdout.Close()` is never called. It's a bit inconvenient that when...