Skip to content
Snippets Groups Projects
Commit 11c74ac6 authored by deuce's avatar deuce
Browse files

Add ANSI/ECMA INSERT keystroke support to inkey().

Allows the INSERT key to work from SyncTERM (and possibly others?)
parent 3f0af6fa
No related branches found
No related tags found
No related merge requests found
......@@ -290,6 +290,8 @@ char sbbs_t::handle_ctrlkey(char ch, long mode)
case 'F': /* Xterm: cursor preceding line */
case 'K': /* ANSI: clear-to-end-of-line */
return(CTRL_E); /* ctrl-e (end line) */
case '@': /* ANSI/ECMA-048 INSERT */
return(CTRL_V);
case '~': /* VT-220 (XP telnet.exe) */
switch(atoi(str)) {
case 1:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment