EdJoPaTo

Results 355 comments of EdJoPaTo

> > deno fmt uses `"` > > Not if you set the `singleQuote` option to `true` 😉 Changing that option would also change the code. And I would prefer...

See the discussion with https://github.com/ratatui/ratatui/pull/965. Overscroll seems to be the wanted behavior as VS Code also does it. (Personally I don't like it either)

I guess one of the major pitfalls for this crate is the binding to the trait. All the methods are implemented on traits currently so that further complicates its usage...

`call_async` (async fn on public trait) results in an unhappy Rust compiler: https://doc.rust-lang.org/rustc/lints/listing/warn-by-default.html#async-fn-in-trait

Regarding layout… The current layout code is far beyond "simple" code and I personally avoid it completely. Writing some math to calculate the positions of things seems far simpler to...

mqttui v0.20 is not the latest version (are you using the one packaged on alpine?) Anyway, that's something that wasn't really changed since then. The idea here is to require...

A question that definitely remains: Why do you need a username without a password? Also… it's somewhat strange that the CLI handling seems to be different on Alpine… would be...

> I do use a password. it is in the env variable MQTTUI_PASSWORD. hence why you dont see it in my cli invocation. Ah, that was missing in the initial...

This results from being a global option which allows the arguments to be either `mqttui --here pub` or `mqttui pub --here`. Username requires password and vice versa. As the environment...

Macros would be neat as that can result in `const` methods then. As styles are done many times per render that could be a performance benefit on runtime, but comes...