Ctrl+Shift+N is NewFolder

This commit is contained in:
Jeremy Soller 2024-02-28 15:27:27 -07:00
parent 9fa0a19c58
commit 09be33e391
No known key found for this signature in database
GPG key ID: D02FD439211AF56F

View file

@ -67,6 +67,7 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
bind!([Alt], Key::Named(Named::ArrowLeft), HistoryPrevious);
bind!([Alt], Key::Named(Named::ArrowUp), LocationUp);
bind!([], Key::Named(Named::Delete), MoveToTrash);
bind!([Ctrl, Shift], Key::Character("N".into()), NewFolder);
bind!([Ctrl], Key::Character("v".into()), Paste);
bind!([], Key::Named(Named::F2), Rename);
bind!([Ctrl], Key::Character("a".into()), SelectAll);