Christian Rocha
Christian Rocha
This looks awesome. If you don’t mind, please put the entry in alphabetical order.
Hey, @Bwahharharrr! shift+t is supported (it comes in as a literal capital `T`): ```go // Here's what shift+t looks like tea.Key{type: tea.KeyRunes, runes: []rune{'T'}} // Matching on it in an...
Hi! This may or may not be possible depending on limitations of terminals, but we'll look into it. Also note that it does not depend on #293.
Hey, Treilik! What’s your use case? Asking because `quitMsg` is similarly not exposed and I haven’t encountered a reason to expose either that nor `batchMsg` yet.
Thanks for the very detailed description, Treilik. One thing I'm not following is how you’re accessing `batchMsg`s. `batchMsg` is produced by `BatchCmd` when it is called in the runtime ([here](https://github.com/charmbracelet/bubbletea/blob/v0.14.1/tea.go#L533)),...
No ETA yet, but this in development. It’s a _very_ important feature for us as well. We’ll keep this issue updated with progress. Related: #79 and https://github.com/charmbracelet/lipgloss/issues/65.
We'll plan on adding some examples, but what you're describing actually isn't as complicated as it appears. Lip Gloss just outputs strings, so you'd simply use Lip Gloss styles and...
So once we merge #222 we should update this PR to get it where it needs to be in order to merge. Off the cuff, I imagine this would be...
Noted: that's a very acute point.
In your own models, there's nothing stopping you from adding methods with pointer receivers so long as you initialize the model as a pointer: ```go type Model struct { /*...