rivo

Results 259 comments of rivo

There is [`RemoveFormItem()`](https://godoc.org/github.com/rivo/tview#Form.RemoveFormItem) which allows you to remove a form item. But, granted, it's not the same as "hiding" it as you will have to reinsert it somehow. And you...

Keep in mind that some terminals have very few colours like white, red, yellow, blue, green, cyan, magenta. My own terminal does not diplay "gray".

I'm sure some users would like to see the field's value even if it is disabled. Maybe wrapping the label in brackets `(` and `)` helps? I haven't tried it...

Thank you. But shouldn't it also be checked in the lines before, i.e. for line [435](https://github.com/rivo/tview/blob/023b522d351167c0a085c82c890dbaf1d835b521/dropdown.go#L435)?

Are you using `tcell.ColorDefault` somewhere? (If you are, you shouldn't.) It's difficult to look into this without being able to reproduce this. Can you post some short code I can...

@barryodev Regarding highlighting, do you mean highlighting text with the mouse? This can be difficult when the text area is embedded in a `Flex` or `Grid` layout (maybe even with...

How important is undo/redo functionality to you? From what I can see, I'll have to implement a Gap Buffer (OT or CRDT are beyond scope, I would think) but I...

Everyone, thanks for providing feedback! I will try to use my time off work during the summer to implement this widget which, by the way, is the most requested feature....

There is a new branch `textarea` where I'm developing this new widget. It's not completely done yet and some things may still change but if you'd like to try it...