summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2021-10-02 17:24:16 -0400
committerJeff Zhao <jeff.no.zhao@gmail.com>2021-10-02 17:24:54 -0400
commit65006271ed71fc79ef7d4582b5a676029bf3f65b (patch)
tree9b4b4f552f8eebb4c161ef936762095efaac721c /src/main.rs
parent8b5c257adfc8177cc4413309c0d1fc98d854ac1d (diff)
move key_command code out into separate module
- make separate files for trait impls - make separate file for constants
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 2b61c01..184d979 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -6,6 +6,7 @@ mod event;
mod fs;
mod history;
mod io;
+mod key_command;
mod preview;
mod run;
mod tab;