summaryrefslogtreecommitdiffstats
path: root/src/commands/set_mode.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/set_mode.rs')
-rw-r--r--src/commands/set_mode.rs15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/commands/set_mode.rs b/src/commands/set_mode.rs
index 27b0b4a..ee7efd8 100644
--- a/src/commands/set_mode.rs
+++ b/src/commands/set_mode.rs
@@ -1,12 +1,9 @@
-extern crate libc;
-extern crate ncurses;
-
-use commands::{JoshutoCommand, JoshutoRunnable};
-use context::JoshutoContext;
-use structs::JoshutoDirEntry;
-use textfield::JoshutoTextField;
-use ui;
-use unix;
+use crate::commands::{JoshutoCommand, JoshutoRunnable};
+use crate::context::JoshutoContext;
+use crate::structs::JoshutoDirEntry;
+use crate::textfield::JoshutoTextField;
+use crate::ui;
+use crate::unix;
#[derive(Clone, Debug)]
pub struct SetMode;