Implement search backend

This commit is contained in:
Jeremy Soller 2024-05-31 14:54:19 -06:00
parent e6f8fdd1e6
commit c5bff149c0
5 changed files with 302 additions and 74 deletions

View file

@ -43,6 +43,7 @@ pub fn key_binds() -> HashMap<KeyBind, Action> {
bind!([Ctrl], Key::Character("v".into()), Paste);
bind!([], Key::Named(Named::Space), Properties);
bind!([], Key::Named(Named::F2), Rename);
bind!([Ctrl], Key::Character("f".into()), SearchActivate);
bind!([Ctrl], Key::Character("a".into()), SelectAll);
bind!([Ctrl], Key::Character("w".into()), TabClose);
bind!([Ctrl], Key::Character("t".into()), TabNew);