marco_core/intelligence/editor/
mod.rs1#[cfg(feature = "intelligence-completions")]
5pub mod completion;
6#[cfg(feature = "intelligence-highlights")]
8pub mod highlight;
9#[cfg(feature = "intelligence-hover")]
11pub mod hover;
12
13#[cfg(feature = "intelligence-completions")]
15pub use completion::{get_markdown_completions, CompletionItem};
16#[cfg(feature = "intelligence-highlights")]
18pub use highlight::{compute_highlights, compute_highlights_with_source, Highlight, HighlightTag};
19#[cfg(feature = "intelligence-hover")]
21pub use hover::{get_hover_info, get_position_span, HoverInfo};