aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/mod.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-02-09 06:40:30 +0000
committerBlaž Hrastnik2021-02-09 06:40:47 +0000
commitd4b85ce18d8a9bb535eaeae9e2c7421ef81c81e9 (patch)
treef68c8fc1d4996f861af2c7966ac8c49dba4aa174 /helix-term/src/ui/mod.rs
parent755632f23113ccff66390de1e2c3476a51886b00 (diff)
popup: wip work on completion popups
Diffstat (limited to 'helix-term/src/ui/mod.rs')
-rw-r--r--helix-term/src/ui/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs
index 7c12b918..29483705 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -1,8 +1,10 @@
mod editor;
+mod menu;
mod picker;
mod prompt;
pub use editor::EditorView;
+pub use menu::Menu;
pub use picker::Picker;
pub use prompt::{Prompt, PromptEvent};