aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/input.rs
diff options
context:
space:
mode:
authorDaniel Ebert2021-11-01 14:50:12 +0000
committerBlaž Hrastnik2021-11-03 02:56:55 +0000
commiteb8745db0999a50464ac183baa138c4e511430f2 (patch)
tree6089d754bf8d27f7cb865422d04947b4fa785026 /helix-view/src/input.rs
parente505bf2b4809681840d1684a23ad21255fca290d (diff)
Implement key ordering for info box
Diffstat (limited to 'helix-view/src/input.rs')
-rw-r--r--helix-view/src/input.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/input.rs b/helix-view/src/input.rs
index 1e0ddfe2..580204cc 100644
--- a/helix-view/src/input.rs
+++ b/helix-view/src/input.rs
@@ -8,7 +8,7 @@ use crate::keyboard::{KeyCode, KeyModifiers};
/// Represents a key event.
// We use a newtype here because we want to customize Deserialize and Display.
-#[derive(Debug, PartialEq, Eq, PartialOrd, Clone, Copy, Hash)]
+#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Hash)]
pub struct KeyEvent {
pub code: KeyCode,
pub modifiers: KeyModifiers,