diff options
author | Jan Hrastnik | 2020-12-13 11:30:36 +0000 |
---|---|---|
committer | GitHub | 2020-12-13 11:30:36 +0000 |
commit | b12a6dc8303bbc1b4b08a9abb4668741d154adbd (patch) | |
tree | 016aa433cf7c226341e9c3c3e74ea65060db1914 /helix-term/src/main.rs | |
parent | b7a3e525ed7fed5ed79e8580df2e3496bd994419 (diff) | |
parent | 07801b60bccd0f084eae925e0290c24322de575f (diff) |
Merge pull request #6 from helix-editor/compositor
Compositor v2 rewrite
Diffstat (limited to 'helix-term/src/main.rs')
-rw-r--r-- | helix-term/src/main.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index 9378d3ee..f350b4c1 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -1,6 +1,11 @@ #![allow(unused)] mod application; +mod commands; +mod compositor; +mod keymap; +mod terminal; +mod ui; use application::Application; |