Caleb Bassi

Results 118 comments of Caleb Bassi

1. Keeps the home directory clean 2. Stores config files in one place 3. Stores each app's config files in a separate folder It's the de facto standard on Linux...

So I forgot XDG is only supported on Linux and BSD, while OSX has its own standardization. [go-appdir](https://github.com/ProtonMail/go-appdir) has a good list of what the standardization is for each platform,...

Yah, breaking changes should definitely be avoided. I think the best solution would be to readd support for the currently used config file paths in this PR and default to...

I agree that having an easy way to convert from a rejection to a custom Json error response would be really nice. This feature, plus adding #458 would fix all...

I think the concept looks good. So check `getHash` when `Memorize` is initialized? And recreate the cache file if it has changed?

What kindof spinners do you mean? Like a loading spinner?

Just added the TextWrap option to the Paragraph widget that allows you to toggle line wrapping. So that leaves us with the autoscroll feature left to implement.

Sure, that could be added. The wiki should have an explanation of how the theme works now too. But the basic idea is that the theme allows you to define...

Hi, thanks for asking. So I'm actually not really familiar with sixel, and I don't even know if we can get it to work with termbox-go (but it would be...

Just a quick tip but you can detect when the terminal is resized by listening for the `""` event from the channel returned from `PollEvents()`. Example here: https://github.com/gizak/termui/blob/213738dbc71cff7412f8dae6d9f27ce4c379dc38/_examples/grid.go#L95-L108