aboutsummaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 9b730ba..167e648 100644
--- a/config.def.h
+++ b/config.def.h
@@ -45,6 +45,14 @@ struct key bindings[] = {
/* Page up */
{ KEY_PPAGE, SEL_PGUP },
{ CONTROL('U'), SEL_PGUP },
+ /* Home */
+ { KEY_HOME, SEL_HOME },
+ { CONTROL('A'), SEL_HOME },
+ { '^', SEL_HOME },
+ /* End */
+ { KEY_END, SEL_END },
+ { CONTROL('E'), SEL_END },
+ { '$', SEL_END },
/* Change dir */
{ 'c', SEL_CD },
/* Toggle sort by time */