minttea
minttea copied to clipboard
A fun little TUI framework for OCaml
I noticed that my Mint Tea app hangs on the start occasionally. Sometimes the app is snappy but sometimes displays the initial screen and ignores all the future key events...
Following the main example, if I press `q` to terminate the program, it doesn't terminate as expected sometimes. Additionally, when running again, it doesn't render until I press a key.
At the moment the `padding_*` properties are happening _after_ the styles are applied to the text, which means padding doesn't behave like you'd expect it to. If you add padding...
I cloned the `minttea` repo. then ran `opam switch create .` I get the following error when i run `opam switch create .`. This is on a macbook M2 apple...
When starting a Mint Tea app, I enter the alt screen and hide the cursor like this: ```ocaml let init _model = Command.(Seq [ Hide_cursor; Enter_alt_screen ]) ``` When exiting,...
I am trying to use the basic example to see how to work with minttea but in the upate function i keep getting this error message This pattern matches values...
I'm trying to implement a fullscreen TUI application, but I realized there's no way I can detect the size of the terminal window/ receive message of terminal resize. I think...
I know little about ocaml, and just moved from go 'bubbletea', ocaml simple syntax attracted me. But I enter every example subfolder, and run 'dune bulid' always failed for same...
The version is bumped inside `dune-project` but not in the `minttea.opam` file. Because of this, when pinning the latest version of `minttea` from GitHub, I see the following error (which...
Fix compilation errors in `basic` used in README.md.