AJ Alt

Results 159 comments of AJ Alt

The only undefined symbol is `__secs_to_zone`, which seems to be a MUSL libc function that's used for timezone handling, but that isn't used in the current WASI preview, so it...

Thank you for looking into this! Emscripten adds some functions like that to the compiled WASM file. I'm not sure if it's possible to stop it from doing that, but...

To run that rust code, you'd need a `Cargo.toml` something like this: ```toml [package] name = "rust_wasm_test" version = "0.1.0" edition = "2021" [dependencies] wasmtime = "=24.0.0" wasmtime-wasi = "=24.0.0"...

The style for that text is [warning + muted][1], so you can adjust either of those theme styles by setting [the Terminal on your context][2], or override `styleMetavar` of you...

I assume so; dim is interpreted differently on different consoles. Happy to accept a better RGB value if you have one, although keep in mind that there's no way to...

I think adjusting the RGB color for `warning` to be more readable is the best solution. I'd be happy to use any values you came up with.

You can override [renderOptions][1] in your help formatter to order them how you'd like. [1]: https://github.com/ajalt/clikt/blob/2ef52297f64c3f34b4e55e33c7983210c4bf358a/clikt/src/commonMain/kotlin/com/github/ajalt/clikt/output/AbstractHelpFormatter.kt#L94

If you're using it through Clikt, you can add a `validate` to the option to check the length of the list. What would you want the behavior to be if...

You can! Create a `TerminalRecorder` with the input you want to simulate, and set it as the terminalInterface on your Terminal in tests. Take a look at how mordant tests...

What kind of integration were you hoping for?