mirror of
https://github.com/warpdotdev/warp.git
synced 2026-05-06 23:32:51 +08:00
### Description Two README files in \`crates/\` had typos and one had an ambiguous file reference: **\`crates/warpui_core/README.md\`** - \"to do describe\" → \"To describe\" - \"appearence\" → \"appearance\" - \"precicely\" → \"precisely\" - \"handlign\" → \"handling\" **\`crates/lsp/README.md\`** - \"implmentation\" → \"implementation\" - The README said \"See main.rs for an example implementation\" but there is no \`main.rs\` in \`crates/lsp/src/\`. The example actually lives at \`crates/lsp/examples/rust-lsp/main.rs\`, so I made the path explicit. Doc-only changes. ### Testing Markdown only. ### Server API No server changes. ### Agent Mode Not applicable. ### Changelog Entries None. Co-authored-by: anshul-garg27 <anshul-garg27@users.noreply.github.com>
307 B
307 B
lsp
This crate provides a stdio-only Language Server Protocol (LSP) client transport for Warp. It:
- Spawns and manages a language server process (child process)
- Communicates over stdio using JSON-RPC with proper Content-Length framing
See examples/rust-lsp/main.rs for an example implementation.