Problem: MS-Windows: Shift-Insert does not work on old conhost
(Nick Jensen, after 9.0.1146)
Solution: handle Shift-Insert specifically
(Christian Plewright)
fixes: #15326
closes: #15430
Signed-off-by: Christopher Plewright <chris@createng.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
}
}
}
+ else if (pker->wVirtualKeyCode == VK_INSERT
+ && (nModifs & SHIFT) != 0
+ && (nModifs & ~SHIFT) == 0)
+ {
+ *pmodifiers = 0;
+ *pch2 = VirtKeyMap[i].chShift;
+ }
else
{
*pch2 = VirtKeyMap[i].chAlone;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 660,
/**/
659,
/**/