Skip to main content

marco_core/intelligence/
lsp_protocol.rs

1//! Optional protocol bridge for external LSP transport.
2//!
3//! The editor intelligence system is in-process first. This module exists as
4//! an explicit extension point for protocol adapters.
5
6#[derive(Debug, Default, Clone)]
7pub struct ProtocolCapabilities {
8    pub diagnostics: bool,
9    pub hover: bool,
10    pub completion: bool,
11    pub semantic_highlighting: bool,
12}