Skip to content
Snippets Groups Projects
Commit 4847b114 authored by deuce's avatar deuce
Browse files

Add F11 and F12 from telnet.exe, add IsControlKey setting for other telnet.exe

keys.
parent 630a58eb
Branches
Tags
No related merge requests found
......@@ -91,17 +91,19 @@ tODKeySequence aKeySequences[] =
{"\033OS", OD_KEY_F4, FALSE},
/* VT-220/VT-320 specific control sequences. */
{"\033[1~", OD_KEY_HOME}, /* Windows XP telnet.exe. Is actually FIND */
{"\033[2~", OD_KEY_INSERT},
{"\033[3~", OD_KEY_DELETE},
{"\033[4~", OD_KEY_END}, /* Windows XP telnet.exe. Is actually SELECT */
{"\033[5~", OD_KEY_PGUP},
{"\033[6~", OD_KEY_PGDN},
{"\033[1~", OD_KEY_HOME, FALSE}, /* Windows XP telnet.exe. Is actually FIND */
{"\033[2~", OD_KEY_INSERT, FALSE},
{"\033[3~", OD_KEY_DELETE, FALSE},
{"\033[4~", OD_KEY_END, FALSE}, /* Windows XP telnet.exe. Is actually SELECT */
{"\033[5~", OD_KEY_PGUP, FALSE},
{"\033[6~", OD_KEY_PGDN, FALSE},
{"\033[17~", OD_KEY_F6, FALSE},
{"\033[18~", OD_KEY_F7, FALSE},
{"\033[19~", OD_KEY_F8, FALSE},
{"\033[20~", OD_KEY_F9, FALSE},
{"\033[21~", OD_KEY_F10, FALSE},
{"\033[23~", OD_KEY_F11, FALSE},
{"\033[24~", OD_KEY_F12, FALSE},
/* ANSI-specific control sequences. */
{"\033[L", OD_KEY_HOME, FALSE},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment