aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2019-09-13 00:37:55 +0200
committerache <ache@ache.one>2019-09-13 00:37:55 +0200
commit2a068b8b4ad763ca46238a61d2ca47f1b6f995dd (patch)
tree05ea32c3fafd7f6d8e3107aa3f5653c7f9bf24d8
parentFix color message bug (diff)
HOME / END in conv feature
-rw-r--r--main.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/main.c b/main.c
index d5e5156..2d1ec05 100644
--- a/main.c
+++ b/main.c
@@ -435,6 +435,21 @@ edit:
unlink( fileName );
resize();
}
+ case KEY_HOME:
+ if ( tabed ) {
+ firstSMSIndex = 0;
+
+ clearWind();
+ showMessageWind();
+ }
+ break;
+ case KEY_END:
+ if ( tabed ) {
+ toTheEnd();
+
+ clearWind();
+ showMessageWind();
+ }
}
}