AJ Alt

Results 159 comments of AJ Alt

Nesting rules are complicated, and I'm sure there are some use cases where the current behavior is preferred. I agree that your example is valid though. In the mean time,...

This happens when your terminal isn't rendering unicode characters. Make sure your file encoding is utf-8 and your terminal is also utf-8. You can also use ascii-only characters with `borderType...

I switched to exceptions to make code simpler since `TerminalInterface` has to be public now. But if it's causing issues, I'll come up with something else.

I stopped using exceptions for the common case in #221. I'm boxing the byte values to simplify code, but if that's still too slow let me know and I can...

I think that's a good fit for a built-in widget: it's not trivial to make with a `grid`, and it's a common enough CLI pattern. Let's collect some more requirements...

I'm noticing a symmetry in the structure: nested nodes are drawn with exactly the same characters as the top level tree. So if each entry of the tree can be...

Thanks for all the feedback! I'll definitely have overloads for specifying entries as either a string or a widget, like I do for all the other widget builders. The reason...

Thanks, I'll see if I can repro this locally. In the mean time, if you're able to use Java 22+ to test [the FFM module][1] to see if this is...

JVM or native?