summaryrefslogtreecommitdiffstats
path: root/src/event/action_map.rs
diff options
context:
space:
mode:
authorqkzk <qu3nt1n@gmail.com>2024-01-04 22:52:57 +0100
committerqkzk <qu3nt1n@gmail.com>2024-01-04 22:52:57 +0100
commit9656f16179bb873c025adac096e4e6d3e3b06e69 (patch)
treecbcf2d8e563c918af0aaa625c93a9738314bd344 /src/event/action_map.rs
parent70941e88389336a74cfcfe55b8a647904d48e283 (diff)
merge flagged & fuzzy
Diffstat (limited to 'src/event/action_map.rs')
-rw-r--r--src/event/action_map.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event/action_map.rs b/src/event/action_map.rs
index 5974c61..a21495a 100644
--- a/src/event/action_map.rs
+++ b/src/event/action_map.rs
@@ -29,7 +29,7 @@ pub enum ActionMap {
CutPaste,
Delete,
DeleteFile,
- DisplayFuzzy,
+ DisplayFlagged,
EncryptedDrive,
End,
Enter,
@@ -130,7 +130,7 @@ impl ActionMap {
Self::CutPaste => EventAction::cut_paste(status),
Self::Delete => EventAction::delete(status),
Self::DeleteFile => EventAction::delete_file(status),
- Self::DisplayFuzzy => EventAction::display_fuzzy(status),
+ Self::DisplayFlagged => EventAction::display_flagged(status),
Self::EncryptedDrive => EventAction::encrypted_drive(status),
Self::End => EventAction::end(status),
Self::Enter => EventAction::enter(status, binds),