summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2019-01-30 22:39:05 -0500
committerJiayi Zhao <jeff.no.zhao@gmail.com>2019-01-30 22:39:05 -0500
commit4d9525b7d46905d78ecb62da26f6b7f5b84edc06 (patch)
tree26d418f0b4093afce8898078279a76ff87a0c2b7 /src/main.rs
parent7585db6db273b11d8725190a034520dd1251b297 (diff)
preliminary for preview rework
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index 9ecfbf0..c88c7c4 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -14,6 +14,7 @@ const CONFIG_FILE: &str = "joshuto.toml";
const MIMETYPE_FILE: &str = "mimetype.toml";
const KEYMAP_FILE: &str = "keymap.toml";
const THEME_FILE: &str = "theme.toml";
+const PREVIEW_FILE: &str = "preview.toml";
fn main()
{
@@ -26,10 +27,7 @@ fn main()
}
let config = joshuto::config::JoshutoConfig::get_config();
-// println!("{:#?}", config);
-
let keymap = joshuto::config::JoshutoKeymap::get_config();
-// println!("{:#?}", keymap);
joshuto::run(config, keymap);
}