changeset 6514:6911fa32a712

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.
author Michael Davis <mcarsondavis@gmail.com>
date Fri, 10 Jan 2025 20:17:33 -0500
parents 831502af1ac3
children fa9ab37f2fd1
files helix-term/src/ui/mod.rs
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/helix-term/src/ui/mod.rs	Sat Feb 01 20:44:07 2025 -0500
+++ b/helix-term/src/ui/mod.rs	Fri Jan 10 20:17:33 2025 -0500
@@ -8,7 +8,7 @@
 pub mod overlay;
 pub mod picker;
 pub mod popup;
-mod prompt;
+pub mod prompt;
 mod spinner;
 mod statusline;
 mod text;