diff --git a/src/key_bind.rs b/src/key_bind.rs index 92cc04c..d2f1114 100644 --- a/src/key_bind.rs +++ b/src/key_bind.rs @@ -66,6 +66,7 @@ pub fn key_binds() -> HashMap { bind!([Alt], Key::Named(Named::ArrowRight), HistoryNext); bind!([Alt], Key::Named(Named::ArrowLeft), HistoryPrevious); bind!([Alt], Key::Named(Named::ArrowUp), LocationUp); + bind!([], Key::Named(Named::Delete), MoveToTrash); bind!([Ctrl], Key::Character("v".into()), Paste); bind!([], Key::Named(Named::F2), Rename); bind!([Ctrl], Key::Character("a".into()), SelectAll);