Files
warp/crates/lsp/README.md
Anshul Garg e05c5d2396 Fix typos and example reference in crate READMEs (#9408)
### 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>
2026-04-30 06:49:45 -07:00

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.