From 369f2bb93d1f33b0466cdc5f10d5db44d271c52f Mon Sep 17 00:00:00 2001 From: Michael Davis <mcarsondavis@gmail.com> Date: Fri, 10 Jan 2025 20:17:33 -0500 Subject: [PATCH] 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. --- helix-term/src/ui/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs index a7779be24..bbd71ca5c 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;