summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs
index 13f5ca0..7b70206 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -4,14 +4,15 @@ mod context;
mod error;
mod fs;
mod history;
+mod io;
mod preview;
mod run;
mod sort;
mod tab;
mod textfield;
mod ui;
-mod util;
mod unix;
+mod util;
mod window;
use lazy_static::lazy_static;
@@ -69,9 +70,9 @@ fn main() {
if args.debug {
eprintln!("keymaps: {:#?}", keymap);
- // eprintln!("config: {:#?}", config);
- // eprintln!("theme config: {:#?}", *THEME_T);
- // eprintln!("mimetype config: {:#?}", *MIMETYPE_T);
+ eprintln!("config: {:#?}", config);
+ eprintln!("theme config: {:#?}", *THEME_T);
+ eprintln!("mimetype config: {:#?}", *MIMETYPE_T);
}
run(config, keymap);