summaryrefslogtreecommitdiff
path: root/helix-term/src/ui/mod.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-12-17 09:08:16 +0000
committerBlaž Hrastnik2020-12-17 09:08:16 +0000
commit7c75ec04e8db825f24f311d0c26109310738183d (patch)
treeacfcecf626aab578fc59dbbd406e0c38a8912348 /helix-term/src/ui/mod.rs
parented60866c5485c8f7e8d2e12fd34dd8243d079b2a (diff)
File picker mockup, reuses the line editor work done on Prompt.
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 9a70d1bd..cb79a1d1 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -1,7 +1,9 @@
mod editor;
+mod picker;
mod prompt;
pub use editor::EditorView;
+pub use picker::Picker;
pub use prompt::{Prompt, PromptEvent};
pub use tui::layout::Rect;