Skip to content
Snippets Groups Projects
Commit 630a58eb authored by deuce's avatar deuce
Browse files

Add keys used by Windows XP telnet.exe

parent bae0a6cf
Branches
Tags
No related merge requests found
......@@ -91,6 +91,12 @@ 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[17~", OD_KEY_F6, FALSE},
{"\033[18~", OD_KEY_F7, FALSE},
{"\033[19~", OD_KEY_F8, FALSE},
......
......@@ -307,6 +307,8 @@ typedef enum
#define OD_KEY_END 0x4f
#define OD_KEY_PGUP 0x49
#define OD_KEY_PGDN 0x51
#define OD_KEY_F11 0x85
#define OD_KEY_F12 0x86
#define OD_KEY_SHIFTTAB 0x0f
/* Input event structure. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment