summaryrefslogtreecommitdiffstats
path: root/src/verb/builtin.rs
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-12-21 12:06:33 +0100
committerCanop <cano.petrole@gmail.com>2020-12-21 12:06:33 +0100
commit8a333631a638993ac6aab0a10bb7d839d577e84f (patch)
treed38e5c466d2472cd455f6aab464a8a26e5b525a0 /src/verb/builtin.rs
parent5a016dc391014a561babeebe058fbfd5a999699e (diff)
make the 'home' and 'end' key shortcuts standard
Diffstat (limited to 'src/verb/builtin.rs')
-rw-r--r--src/verb/builtin.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/verb/builtin.rs b/src/verb/builtin.rs
index d1f0edc..858ec9d 100644
--- a/src/verb/builtin.rs
+++ b/src/verb/builtin.rs
@@ -160,6 +160,8 @@ pub fn builtin_verbs() -> Vec<Verb> {
.with_control_key('q')
.with_shortcut("q"),
internal(refresh).with_key(F5),
+ internal(select_first).with_key(HOME),
+ internal(select_last).with_key(END),
internal(sort_by_count).with_shortcut("sc"),
internal(sort_by_date).with_shortcut("sd"),
internal(sort_by_size).with_shortcut("ss"),