Textual's TextArea widget does not support multi-line cursors. It's a single-cursor text editor by design, and there's no built-in API for multi-cursor editing.
Implementing true multi-cursor support would require either:
- Waiting for Textual to add this feature upstream
- Building a custom text editor widget from scratch (significant undertaking)
Textual's TextArea widget does not support multi-line cursors. It's a single-cursor text editor by design, and there's no built-in API for multi-cursor editing.
Implementing true multi-cursor support would require either: