diff options
author | Blaž Hrastnik | 2020-12-10 09:13:42 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-12-10 09:13:42 +0000 |
commit | 5103dc96173afaa1c0793db56f60ec1fef1e0fc3 (patch) | |
tree | eda1e63fa536b589974c5bc7c7aff12fdac8c4f2 /helix-term/src/main.rs | |
parent | be3c02104600e5bba8e3af7bc9787e62cba30183 (diff) |
move commands and keymap back to terminal.
Command needs to be able to deal with UI. We'll separate it again later
on.
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r-- | helix-term/src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index a43aebd8..92ab10c2 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -1,7 +1,10 @@ #![allow(unused)] mod application; +mod commands; mod compositor; +mod keymap; +mod prompt; use application::Application; |