aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui/mod.rs
diff options
context:
space:
mode:
authorGokul Soumya2022-07-19 16:19:02 +0000
committerBlaž Hrastnik2022-12-15 08:52:44 +0000
commit914d2944997e11cf76eeabfe43f9031aeb2b1721 (patch)
tree52641d59df67d3a7c3a5b120b012ed5e46eae892 /helix-term/src/ui/mod.rs
parentc64debc7412c0769db8186694bd89f85ea057b1b (diff)
Add DynamicPicker for updating options on every key
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 107e48dd..5b5924bf 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -19,7 +19,7 @@ pub use completion::Completion;
pub use editor::EditorView;
pub use markdown::Markdown;
pub use menu::Menu;
-pub use picker::{FileLocation, FilePicker, Picker};
+pub use picker::{DynamicPicker, FileLocation, FilePicker, Picker};
pub use popup::Popup;
pub use prompt::{Prompt, PromptEvent};
pub use spinner::{ProgressSpinners, Spinner};