diff options
author | Blaž Hrastnik | 2021-02-25 09:07:47 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-02-25 09:07:47 +0000 |
commit | 7162632eb739557ededaee902b23e48a577817b4 (patch) | |
tree | 22dbfc57f04e72e2f7dfbbcc2f3dee42bf00cd0a /helix-term/src/ui/mod.rs | |
parent | 8289bd1cb0cf34d26a9f452850081799311e3f45 (diff) |
lsp: Hover documentation draft.
Diffstat (limited to 'helix-term/src/ui/mod.rs')
-rw-r--r-- | helix-term/src/ui/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-term/src/ui/mod.rs b/helix-term/src/ui/mod.rs index e1899144..ea1d22ab 100644 --- a/helix-term/src/ui/mod.rs +++ b/helix-term/src/ui/mod.rs @@ -1,11 +1,13 @@ mod editor; mod menu; mod picker; +mod popup; mod prompt; pub use editor::EditorView; pub use menu::Menu; pub use picker::Picker; +pub use popup::Popup; pub use prompt::{Prompt, PromptEvent}; pub use tui::layout::Rect; |