1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 19:27:22 +03:00

windows: restore recognizing the Insert key

refs: #1483
This commit is contained in:
Wez Furlong 2022-01-05 09:49:33 -07:00
parent b05cb1241e
commit 612afca961

View File

@ -127,6 +127,7 @@ fn build_map() -> HashMap<WPARAM, PhysKeyCode> {
(VK_OEM_3, PhysKeyCode::Grave),
(VK_DECIMAL, PhysKeyCode::KeypadDecimal),
(VK_MULTIPLY, PhysKeyCode::KeypadMultiply),
(VK_INSERT, PhysKeyCode::Insert),
(VK_ADD, PhysKeyCode::KeypadAdd),
(VK_CLEAR, PhysKeyCode::KeypadClear),
(VK_DIVIDE, PhysKeyCode::KeypadDivide),