aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/mod.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2021-03-27 03:06:40 +0000
committerBlaž Hrastnik2021-03-27 03:08:44 +0000
commita24c3fff54f319eac42ae6947b910b54ee6fd899 (patch)
tree30f8b5394fc6205a6e7eae276a3a8caad47b59d3 /helix-term/src/ui/mod.rs
parent2a3910c1d9f2b05fe5bc0610e6a83e6dabe13b71 (diff)
Filter the completion menu based on text entered.
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 f7f77d0c..2d282867 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -1,3 +1,4 @@
+mod completion;
mod editor;
mod markdown;
mod menu;
@@ -6,6 +7,7 @@ mod popup;
mod prompt;
mod text;
+pub use completion::Completion;
pub use editor::EditorView;
pub use markdown::Markdown;
pub use menu::Menu;