Leandro Ostera
Leandro Ostera
To be able to format all of your code using the formatters you've already configured (or the default ones if you haven't!)
- [ ] We can run `warp` on a new repo and we'll automatically create a `Warpfile` for it. No complaints. - [ ] If we're in a subfolder, we'll...
@leostera This is awesome sauce! I think the situation has improved for me but not entirely. I still see an issue from #34 but it happens not so frequently to...
Having a nice little library of components to reuse would be amazing, and [Bubbles](https://github.com/charmbracelet/bubbles/) has a nice list that we can just port over: - [x] cursor - [x] spinner...
At the moment we are only handling the space `" "` and keys in a nice way, but it'd be nice to be able to match on `KeyDown Enter` or...
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...
```python ocaml_module( name = "module_srcs", srcs = glob(["*.ml", "*.mli"]), ) odoc_unit( name = "docs.odoc", srcs = [ ":module_srcs" ], ) odoc_html( name = "docs.html", srcs = [ ":docs.odoc"] ) ```...
This issue got reported first here https://github.com/leostera/minttea/issues/38 – but Github doesn't let me transfer an issue across organizations. Possible culprits: - [x] #71 - [x] #72 - [ ] timer...
currently when we write a recursive function that uses a `match%b` expression to pattern-match on bytestrings, we end up creating a stack, instead of tail-recursing. My gut tells me this...