From 85cf6ef33dcd28a93f89a83809f974d783443ae3 Mon Sep 17 00:00:00 2001 From: alexpasmantier Date: Mon, 30 Sep 2024 19:04:05 +0200 Subject: [PATCH] ho ho ho --- TODO.md | 2 ++ src/main.rs | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/TODO.md b/TODO.md index 6db72db..e49ad8c 100644 --- a/TODO.md +++ b/TODO.md @@ -13,6 +13,8 @@ - [ ] better keymaps ## feature ideas +- [ ] some sort of iterative fuzzy file explorer (preview contents of folders on the right, enter to go in etc.) maybe + with mixed previews of files and folders - [x] environment variables - [ ] aliases - [ ] shell history diff --git a/src/main.rs b/src/main.rs index 59a4f5a..8bb6949 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,11 @@ +/// +/// ________ ______ _____ _____ +/// ___ __/_______ /_______ ____(_)_________(_)____________ +/// __ / _ _ \_ /_ _ \_ | / /_ /__ ___/_ /_ __ \_ __ \ +/// _ / / __/ / / __/_ |/ /_ / _(__ )_ / / /_/ / / / / +/// /_/ \___//_/ \___/_____/ /_/ /____/ /_/ \____//_/ /_/ +/// +/// use clap::Parser; use cli::Cli; use color_eyre::Result;