Skip to main content

codetether_agent/lsp/
mod.rs

1//! LSP (Language Server Protocol) client implementation
2//!
3//! Provides a complete LSP client for code intelligence features:
4//! - Go to definition
5//! - Find references
6//! - Hover information
7//! - Document symbols
8//! - Workspace symbols
9//! - Code completion
10//!
11//! Supports language servers via stdio transport with JSON-RPC 2.0.
12
13pub mod client;
14pub mod transport;
15pub mod types;
16
17pub use client::LspManager;
18pub use types::*;