mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Make ^/ do the same as ^_ (wish control-slash)
[originally from svn r2576]
This commit is contained in:
2
window.c
2
window.c
@ -3488,7 +3488,7 @@ static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam,
|
||||
*p++ = "\000\033\034\035\036\037\177"[wParam - '2'];
|
||||
return p - output;
|
||||
}
|
||||
if (shift_state == 2 && wParam == 0xBD) {
|
||||
if (shift_state == 2 && (wParam == 0xBD || wParam == 0xBF)) {
|
||||
*p++ = 0x1F;
|
||||
return p - output;
|
||||
}
|
||||
|
Reference in New Issue
Block a user