mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-25 19:22:08 +03:00
f6c3cbfa01
Ignore-this: e82f6a3b8eec33ab55fd04a51f4d9873 darcs-hash:20091228233218-f0a0d-345ddcbee616acc4f39d9d12393bdea5982f34d9.gz
16 lines
775 B
Plaintext
16 lines
775 B
Plaintext
- Improve input handling
|
|
- base off of haskeline input system. The haskeline input system appears to be excellent and
|
|
satisfy all of Vty's input requirements. The current haskeline distribution does not appear to
|
|
export the required modules. Either:
|
|
0. Add the required exports to the haskeline distribution.
|
|
- fine for development but complicates the UI for production clients. Though, exposing
|
|
the modules would only complicate the appearance of haskeline's interface.
|
|
1. Partition the backend of haskeline into a separate package usable by both vty and
|
|
haskeline.
|
|
- use compact-string for character encoding handling
|
|
- Custom cursor appearance handling?
|
|
- specific color?
|
|
- reverse video?
|
|
- auto?
|
|
|