aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/mod.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-12-15 10:29:56 +0000
committerBlaž Hrastnik2020-12-15 10:29:56 +0000
commit8f0b28aeb872797e4be3f07575e628f5f93e74e0 (patch)
tree10d7964d79cd2c6959e9f38be4682bea7c3b4754 /helix-term/src/ui/mod.rs
parent1a843b6c06b5d4d75feb0a424bbfdcfb33ab7651 (diff)
Make the select prompt interactive.
Diffstat (limited to 'helix-term/src/ui/mod.rs')
-rw-r--r--helix-term/src/ui/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs
index bc79e09c..9a70d1bd 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -2,7 +2,7 @@ mod editor;
mod prompt;
pub use editor::EditorView;
-pub use prompt::Prompt;
+pub use prompt::{Prompt, PromptEvent};
pub use tui::layout::Rect;
pub use tui::style::{Color, Modifier, Style};