Christian Rocha
Christian Rocha
Making this change will slightly alter the final output of some programs, however it will remove a quirk which we've seen confuse new users. The former behavior can basically be...
That’s good to know and a good idea. You _may_ also be able to solve it by opening a dedicated TTY for input: ```go p := tea.NewProgram(model{}, tea.WithInputTTY()) ``` Docs:...
Yep, will be added in #261 which we plan to merge shortly.
Tested a little bit on Windows today, @erikgeiser, and so far so good.
I tested this a bit more and I must say…window resize events on Windows? What world is this?! It even works in the ol’ Windows Command Console. Absolutely wonderful. Really...
This is a situation where tests could help, though I wonder how possible it is to synthesize key and mouse events on Windows for something like this. In a worst...
That's reassuring. To that note I'm noticing the shift+tab keystroke isn't working in this PR (it registers as simply tab). My brief research suggests that shift may require special handling...
@michaeltlombardi alas, you're correct that this is now invalid — however there's still an enormous amount of value in the code that Erik has written here, such as the code...
Hi everyone! It’s really nice to see some interest here. This is part of a fairly big feature that’s currently in development and scheduled for release in 2022. We’ll keep...
If you don’t mind, let’s pull `WithPanicHandler` from the PR (unless it’s needed right now for Soft Serve). Otherwise, would prefer to consider it a bit more before we expose...