summaryrefslogtreecommitdiffstats
path: root/src/commands/key_command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/key_command.rs')
-rw-r--r--src/commands/key_command.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/commands/key_command.rs b/src/commands/key_command.rs
index d4f94be..3ca2980 100644
--- a/src/commands/key_command.rs
+++ b/src/commands/key_command.rs
@@ -4,7 +4,6 @@ use crate::context::AppContext;
use crate::error::{JoshutoError, JoshutoErrorKind, JoshutoResult};
use crate::io::IoWorkerOptions;
use crate::ui::TuiBackend;
-use crate::util::load_child::LoadChild;
use crate::util::select::SelectOption;
use crate::util::sort::SortType;
@@ -358,7 +357,6 @@ impl AppExecute for KeyCommand {
Self::BulkRename => bulk_rename::bulk_rename(context, backend),
Self::ChangeDirectory(p) => {
change_directory::change_directory(context, p.as_path())?;
- LoadChild::load_child(context)?;
Ok(())
}
Self::NewTab => tab_ops::new_tab(context),