aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-01-28 18:22:39 +1000
committerDavid Walter Seikel2014-01-28 18:22:39 +1000
commitcaa1156cce900ef52d6c3644a01d6cc54b1e15c4 (patch)
tree65c5c775ae8af76278c2f7fcb5b2c0a870a4cc1c
parentDocument key and command matching complications that are not yet handled. (diff)
downloadboxes-caa1156cce900ef52d6c3644a01d6cc54b1e15c4.zip
boxes-caa1156cce900ef52d6c3644a01d6cc54b1e15c4.tar.gz
boxes-caa1156cce900ef52d6c3644a01d6cc54b1e15c4.tar.bz2
boxes-caa1156cce900ef52d6c3644a01d6cc54b1e15c4.tar.xz
Document the escape sequences we send.
-rw-r--r--boxes.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/boxes.c b/boxes.c
index 94a38b8..dfe950d 100644
--- a/boxes.c
+++ b/boxes.c
@@ -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.