Things I learned building a text editor for the terminal TextArea is the latest widget to be added to Textual's growing collection.It provides a multi-line space to edit text, and features optional syntax highlighting for a selection of languages. Adding a TextArea to your Textual app is as simple as adding this to your compose method: pythonyield TextArea() Enabling syntax highlighting for a language is as simple as: pythonyield TextArea(language="python") Working on the TextArea widget for ...