Commit dac9dfc9 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Make Home, End and Enter on the keypad work in the debugger.

parent 8691c8ec
...@@ -572,8 +572,11 @@ static KeyEntry EmacsKeyMapAlt[] = ...@@ -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 }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment