summaryrefslogtreecommitdiffstats
path: root/src/commands/change_directory.rs
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2020-02-16 11:59:33 -0500
committerJiayi Zhao <jeff.no.zhao@gmail.com>2020-02-16 12:01:23 -0500
commitd788f8d740be85bb014ddfa005156723f0a31e99 (patch)
tree1cd74c86358b70f78dffe25da5e0bfe4bd9b1abf /src/commands/change_directory.rs
parent726a7a424f7ddec97478490a0f3a25005dde45ac (diff)
rework rendering system to use tui-rs widgets
- move files around - delete some old ncurses code - integrate tui-rs styles and colors
Diffstat (limited to 'src/commands/change_directory.rs')
-rw-r--r--src/commands/change_directory.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/commands/change_directory.rs b/src/commands/change_directory.rs
index cd761c9..5f30c36 100644
--- a/src/commands/change_directory.rs
+++ b/src/commands/change_directory.rs
@@ -1,10 +1,11 @@
use std::path;
-use crate::commands::{JoshutoCommand, JoshutoRunnable, LoadChild};
+use crate::commands::{JoshutoCommand, JoshutoRunnable};
use crate::context::JoshutoContext;
use crate::error::JoshutoResult;
use crate::history::DirectoryHistory;
use crate::ui::TuiBackend;
+use crate::util::load_child::LoadChild;
#[derive(Clone, Debug)]
pub struct ChangeDirectory {