summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorrabite <rabite@posteo.de>2019-03-11 12:08:43 +0100
committerrabite <rabite@posteo.de>2019-03-11 12:08:43 +0100
commite63c65ab7d944fb3a80f6c40bd0d98ec50b054c6 (patch)
tree06ed1d6a0f8cb1a7b13a5b36591680b922abbf32 /src/main.rs
parent5b9a150a10411dcc47bd6340aa33fa8423aaa2be (diff)
tagging files
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index f90f8ef..45679eb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -66,6 +66,10 @@ fn main() -> HResult<()> {
}
fn run() -> HResult<()> {
+ // do this early so it might be ready when needed
+ crate::files::load_tags()?;
+
+
let bufout = std::io::BufWriter::new(std::io::stdout());
// Need to do this here to actually turn terminal into raw mode...
let mut screen = AlternateScreen::from(bufout);