rivo
rivo
Currently not without writing your own functionality that does this. If you want to do that, you can check out https://github.com/rivo/tview/wiki/Primitives. If you look at the [presentation demo code](https://github.com/rivo/tview/tree/master/demos/presentation), there's...
Can you give an example where `ColorDefault` is a good idea for the background colour of a `TextView`?
That's exactly what [`TreeView`](https://pkg.go.dev/github.com/rivo/tview#TreeView) is for. You can use [`SetPrefixes()`](https://pkg.go.dev/github.com/rivo/tview#TreeView.SetPrefixes) to make it look more like a list: 
True, there is no primary/secondary text. Moving up or down will shift the focus to the "next" thing in the tree. But you're right, there is no function (yet?) that...
To my knowledge, I was the only one using it and I'm ok with this change.
I'm not sure if iterating through all runes numerically will give you valid unicode code points. Maybe you can post an example of a valid code point that fails your...
[0xd800, 0xdfff] are Unicode surrogate ranges. There are no characters in this range. I don't even know what the "width" of those code points is supposed to be. I don't...
Well, as you point out, the problem here is the conversion. If Go places different runes into the string than what you put in, you end up comparing apples to...
I upgraded again to the latest `uniseg` version. Also implemented the "Quick Fix" solution outlined in https://github.com/mattn/go-runewidth/issues/59#issuecomment-1242923961. Also updated CI to use current Go versions. Everything passes now.
Do you still need information or any action from me here?