tui-canvas 0.8.10

Form/textarea/input for TUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// src/suggestions/mod.rs
//! Suggestions subsystem - provider and optional GUI.
//!
//! Contains the suggestion provider types used by the editor and, when the GUI
//! feature is enabled, the rendering helpers for the suggestions dropdown.

#[cfg(feature = "gui")]
pub mod render;
pub mod state;

pub use state::SuggestionItem;

#[cfg(feature = "gui")]
pub use render::render_suggestions_dropdown;