Add reload folder key binding, fixes #146
This commit is contained in:
parent
2a9b4ad068
commit
3b34ba8907
5 changed files with 26 additions and 3 deletions
|
|
@ -140,6 +140,7 @@ pub enum Action {
|
|||
Paste,
|
||||
PermanentlyDelete,
|
||||
Preview,
|
||||
Reload,
|
||||
Rename,
|
||||
RestoreFromTrash,
|
||||
SearchActivate,
|
||||
|
|
@ -208,6 +209,7 @@ impl Action {
|
|||
Action::Paste => Message::Paste(entity_opt),
|
||||
Action::PermanentlyDelete => Message::PermanentlyDelete(entity_opt),
|
||||
Action::Preview => Message::Preview(entity_opt),
|
||||
Action::Reload => Message::TabMessage(entity_opt, tab::Message::Reload),
|
||||
Action::Rename => Message::Rename(entity_opt),
|
||||
Action::RestoreFromTrash => Message::RestoreFromTrash(entity_opt),
|
||||
Action::SearchActivate => Message::SearchActivate,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue