13 lines
273 B
Python
13 lines
273 B
Python
__all__ = ["MessageEditorWidget"]
|
|
|
|
|
|
class MessageEditorWidget:
|
|
"""
|
|
This widget allows the user to compose a new message. It is based on
|
|
urwid's Edit widget.
|
|
|
|
One day, it will (hopefully) support syntax highlighting and tab
|
|
completion.
|
|
"""
|
|
|
|
pass
|