David Herman
David Herman
Right now, if an exception occurs within run, the program just exists. A user can themselves wrap everything inside a try / catch block, but it might be nice if...
Create a test executor and test terminal so we can verify behaviors in unit tests.
So ``` bordered(horizontalAlignment = CENTER, minWidth = 10) { text("Hello") } ``` Would look like: ``` +----------+ | Hello | +----------+ ```
Also, should the state of "insert" be remembered across the whole app?
Ctrl + U: Delete input Ctrl + W: Delete word Alt + Backspace (and Ctrl + Backspace?): Delete last word
Something like ``` box(WIDTH, HEIGHT, x, y, "TEXT") where box(10, 10, 3, 5, "Hello") would render (assume X's are spaces): XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXHelloXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX...
Getting this occasionally when exiting an app using Kotter: ``` Exception in thread "DefaultDispatcher-worker-4" java.lang.IllegalStateException: 'awaitClose { yourCallbackOrListener.cancel() }' should be used in the end of callbackFlow block. Otherwise, a...