aboutsummaryrefslogtreecommitdiff
path: root/src/tui.rs
diff options
context:
space:
mode:
authorlukeflo2024-10-25 12:48:19 +0200
committerlukeflo2024-10-25 12:48:19 +0200
commit23ee04fffe4bdf4b8c34603e4b191d7cc308051b (patch)
tree70e4b146e388067dec7e4d5d1c5b8cd3628b5e4a /src/tui.rs
parentbc4513d700b724b8edb72b6a1a429df60967a12c (diff)
downloadbibiman-23ee04fffe4bdf4b8c34603e4b191d7cc308051b.tar.gz
bibiman-23ee04fffe4bdf4b8c34603e4b191d7cc308051b.zip
Inegrate new command-action driven structure
- Map keys to actions to commands - allows for easily adding config file support - restructure folders/files - implement own input mode - rewrite UI rendering to make it better editable
Diffstat (limited to 'src/tui.rs')
-rw-r--r--src/tui.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tui.rs b/src/tui.rs
index a14a0ab..963abf9 100644
--- a/src/tui.rs
+++ b/src/tui.rs
@@ -15,9 +15,9 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
/////
-pub mod command;
-pub mod commandnew;
-pub mod handler;
+// pub mod command;
+pub mod commands;
+// pub mod handler;
pub mod ui;
use crate::App;