We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 55f991c + 22fe200 commit 0eeaa13Copy full SHA for 0eeaa13
src/keyboard.rs
@@ -9,6 +9,7 @@ pub enum Key {
9
Up,
10
Down,
11
Delete,
12
+ Insert,
13
14
Home,
15
End,
@@ -57,7 +58,6 @@ impl Key {
57
58
65515 => Some(Key::Left),
59
65516 => Some(Key::Down),
60
65517 => Some(Key::Up),
- 65522 => Some(Key::Delete),
61
65535 => Some(Key::F(1)),
62
65534 => Some(Key::F(2)),
63
65533 => Some(Key::F(3)),
@@ -70,6 +70,8 @@ impl Key {
70
65526 => Some(Key::F(10)),
71
65525 => Some(Key::F(11)),
72
65524 => Some(Key::F(12)),
73
+ 65523 => Some(Key::Insert),
74
+ 65522 => Some(Key::Delete),
75
65521 => Some(Key::Home),
76
65520 => Some(Key::End),
77
65519 => Some(Key::PageUp),
0 commit comments