Make Home, End and Enter on the keypad work in the debugger.
This commit is contained in:
parent
8691c8ec4b
commit
dac9dfc95d
|
@ -572,8 +572,11 @@ static KeyEntry EmacsKeyMapAlt[] =
|
||||||
|
|
||||||
static KeyEntry EmacsKeyMapExtended[] =
|
static KeyEntry EmacsKeyMapExtended[] =
|
||||||
{
|
{
|
||||||
|
{/*RETURN*/ 0x0d, WCEL_Done },
|
||||||
{/*VK_PRIOR*/0x21, WCEL_MoveToPrevHist },
|
{/*VK_PRIOR*/0x21, WCEL_MoveToPrevHist },
|
||||||
{/*VK_NEXT*/0x22, WCEL_MoveToNextHist },
|
{/*VK_NEXT*/0x22, WCEL_MoveToNextHist },
|
||||||
|
{/*VK_END*/ 0x23, WCEL_MoveToEnd },
|
||||||
|
{/*VK_HOME*/ 0x24, WCEL_MoveToBeg },
|
||||||
{/*VK_RIGHT*/0x27, WCEL_MoveRight },
|
{/*VK_RIGHT*/0x27, WCEL_MoveRight },
|
||||||
{/*VK_LEFT*/0x25, WCEL_MoveLeft },
|
{/*VK_LEFT*/0x25, WCEL_MoveLeft },
|
||||||
{ 0, NULL }
|
{ 0, NULL }
|
||||||
|
|
Loading…
Reference in New Issue