Unnamed repository; edit this file 'description' to name the repository.
ui: Expose the 'prompt' module
The prompt Completion type alias is otherwise private. This will be used in <https://redirect.github.com/helix-editor/helix/pull/12527> to refactor some functions to return prompt completions.
Michael Davis 2025-02-02
parent 0f594c3 · commit 369f2bb
-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 a7779be2..bbd71ca5 100644
--- a/helix-term/src/ui/mod.rs
+++ b/helix-term/src/ui/mod.rs
@@ -8,7 +8,7 @@ pub mod menu;
pub mod overlay;
pub mod picker;
pub mod popup;
-mod prompt;
+pub mod prompt;
mod spinner;
mod statusline;
mod text;