Skip to content
Snippets Groups Projects
Commit d751f01d authored by rswindell's avatar rswindell
Browse files

Added KEY_INSERT and KEY_ABORT definitions.

parent 928138f5
Branches
Tags
No related merge requests found
......@@ -163,7 +163,10 @@ var KEY_RIGHT ='\x06'; /* ctrl-f (rt arrow) */
var KEY_LEFT ='\x1d'; /* ctrl-] (lf arrow) */
var KEY_HOME ='\x02'; /* ctrl-b (home) */
var KEY_END ='\x05'; /* ctrl-e (end) */
var KEY_DEL ='\x7f'; /* (del) */
var KEY_INSERT ='\x16'; /* ctrl-v (insert) */
var KEY_DEL ='\x7f'; /* ctrl-BkSpc (DEL) */
/********************************************/
var KEY_ABORT ='\x03'; /* ctrl-c (cancel/abort/break) */
/********************************************/
/********************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment