summaryrefslogtreecommitdiffstats
path: root/src/event/action_map.rs
diff options
context:
space:
mode:
authorqkzk <qu3nt1n@gmail.com>2023-12-03 21:35:37 +0100
committerqkzk <qu3nt1n@gmail.com>2023-12-03 21:35:54 +0100
commite562d3cd56862455b2b1ba4475916fe1c0a50cb7 (patch)
treedd4d08ff740e8d34ba0e42d5c7c4a2f1c9d904c7 /src/event/action_map.rs
parentd4b5e46118154f80daf178d07f873b6a43ed01a1 (diff)
remove specific commands
Diffstat (limited to 'src/event/action_map.rs')
-rw-r--r--src/event/action_map.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/event/action_map.rs b/src/event/action_map.rs
index 21870a9..32abdbb 100644
--- a/src/event/action_map.rs
+++ b/src/event/action_map.rs
@@ -27,8 +27,6 @@ pub enum ActionMap {
CutPaste,
Delete,
DeleteFile,
- Diff,
- DragNDrop,
Ncdu,
EncryptedDrive,
End,
@@ -51,7 +49,6 @@ pub enum ActionMap {
Log,
MarksJump,
MarksNew,
- MediaInfo,
MocpAddToPlayList,
MocpClearPlaylist,
MocpGoToSong,
@@ -83,7 +80,6 @@ pub enum ActionMap {
ReverseFlags,
Search,
SearchNext,
- SetWallpaper,
Shell,
ShellCommand,
TuiMenu,
@@ -128,8 +124,6 @@ impl ActionMap {
Self::CutPaste => EventAction::cut_paste(status),
Self::Delete => EventAction::delete(status),
Self::DeleteFile => EventAction::delete_file(status),
- Self::Diff => EventAction::diff(status),
- Self::DragNDrop => EventAction::drag_n_drop(status),
Self::Ncdu => EventAction::ncdu(status),
Self::EncryptedDrive => EventAction::encrypted_drive(status),
Self::End => EventAction::end(status),
@@ -152,7 +146,6 @@ impl ActionMap {
Self::LazyGit => EventAction::lazygit(status),
Self::MarksJump => EventAction::marks_jump(status),
Self::MarksNew => EventAction::marks_new(current_tab),
- Self::MediaInfo => EventAction::mediainfo(current_tab),
Self::MocpAddToPlayList => EventAction::mocp_add_to_playlist(current_tab),
Self::MocpClearPlaylist => EventAction::mocp_clear_playlist(),
Self::MocpGoToSong => EventAction::mocp_go_to_song(status),
@@ -183,7 +176,6 @@ impl ActionMap {
Self::ReverseFlags => EventAction::reverse_flags(status),
Self::Search => EventAction::search(current_tab),
Self::SearchNext => EventAction::search_next(status),
- Self::SetWallpaper => EventAction::set_wallpaper(current_tab),
Self::Shell => EventAction::shell(status),
Self::ShellCommand => EventAction::shell_command(current_tab),
Self::Shortcut => EventAction::shortcut(status),