diff options
author | David Walter Seikel | 2014-01-28 18:22:39 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-01-28 18:22:39 +1000 |
commit | caa1156cce900ef52d6c3644a01d6cc54b1e15c4 (patch) | |
tree | 65c5c775ae8af76278c2f7fcb5b2c0a870a4cc1c | |
parent | Document key and command matching complications that are not yet handled. (diff) | |
download | boxes-caa1156cce900ef52d6c3644a01d6cc54b1e15c4.zip boxes-caa1156cce900ef52d6c3644a01d6cc54b1e15c4.tar.gz boxes-caa1156cce900ef52d6c3644a01d6cc54b1e15c4.tar.bz2 boxes-caa1156cce900ef52d6c3644a01d6cc54b1e15c4.tar.xz |
Document the escape sequences we send.
-rw-r--r-- | boxes.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -178,6 +178,15 @@ GLOBALS( | |||
178 | * So use sixteen bits for storing screen positions and the like. | 178 | * So use sixteen bits for storing screen positions and the like. |
179 | * Eight bits wont cut it. | 179 | * Eight bits wont cut it. |
180 | * | 180 | * |
181 | * | ||
182 | * These are the escape sequences we send - | ||
183 | * \x1B[m reset attributes and colours | ||
184 | * \x1B[1m turn on bold | ||
185 | * \x1B[%d;%dH move cursor | ||
186 | * Plus some experimentation with turning on mouse reporting that's not | ||
187 | * currently used. | ||
188 | * | ||
189 | * | ||
181 | * TODO - disentangle boxes from views. | 190 | * TODO - disentangle boxes from views. |
182 | * | 191 | * |
183 | * TODO - Show status line instead of command line when it's not being edited. | 192 | * TODO - Show status line instead of command line when it's not being edited. |