aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/lib.rs
diff options
context:
space:
mode:
authorIvan Tham2021-06-07 04:40:21 +0000
committerIvan Tham2021-06-07 13:35:31 +0000
commitb5682f984b596da32662dc8b5918811318b0c59f (patch)
treeb76d1f4c111b4ca7c2e9c1d98ed5e5f71e31b661 /helix-term/src/lib.rs
parent68affa3c598723a8b9451ef3dcceda83ae161e39 (diff)
Separate helix-term as a library
helix-term stuff will now be documented in rustdoc.
Diffstat (limited to 'helix-term/src/lib.rs')
-rw-r--r--helix-term/src/lib.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/helix-term/src/lib.rs b/helix-term/src/lib.rs
new file mode 100644
index 00000000..2fd40358
--- /dev/null
+++ b/helix-term/src/lib.rs
@@ -0,0 +1,8 @@
+#![allow(unused)]
+
+pub mod application;
+pub mod args;
+pub mod commands;
+pub mod compositor;
+pub mod keymap;
+pub mod ui;