aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 7223e26..cd7b244 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -358,6 +358,12 @@ fn event_loop() {
todo!("unhandled: {seq:?}");
}
}
+
+ // END button
+ b'F' => {
+ se.move_to_end();
+ }
+
x => todo!("escape character {x}"),
}
}