summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-12-23 22:38:17 -0600
committerAiden Cline <[email protected]>2025-12-23 22:38:17 -0600
commit4275907df68ca8ef99841b118fa4612ccfda7532 (patch)
treea47add2b60796cdcaa17020e32c0e1524e27f6db
parent6097d6af862002a559cdc0c8ffa5e69f5f746406 (diff)
downloadopencode-4275907df68ca8ef99841b118fa4612ccfda7532.tar.gz
opencode-4275907df68ca8ef99841b118fa4612ccfda7532.zip
docs: tweak lsp.mdx
-rw-r--r--packages/web/src/content/docs/lsp.mdx28
1 files changed, 0 insertions, 28 deletions
diff --git a/packages/web/src/content/docs/lsp.mdx b/packages/web/src/content/docs/lsp.mdx
index 0b79fa329..230f782d3 100644
--- a/packages/web/src/content/docs/lsp.mdx
+++ b/packages/web/src/content/docs/lsp.mdx
@@ -51,34 +51,6 @@ You can disable automatic LSP server downloads by setting the `OPENCODE_DISABLE_
---
-## LLM Tool (Experimental)
-
-OpenCode includes an experimental built-in tool named `lsp` that lets the LLM query your LSP servers for code navigation and symbol information.
-
-To enable it, set `OPENCODE_EXPERIMENTAL_LSP_TOOL=true` (or `OPENCODE_EXPERIMENTAL=true` to enable all experimental features).
-
-Once enabled, you can still disable it via your `tools` config:
-
-```json title="opencode.json"
-{
- "$schema": "https://opencode.ai/config.json",
- "tools": {
- "lsp": false
- }
-}
-```
-
-Example prompts:
-
-- "Use the lsp tool to go to definition of `createServer` in `src/server.ts` at line 12, character 5."
-- "Use lsp hover on `User` in `src/models/user.ts` at line 20, character 10."
-
-:::note
-The `lsp` tool only works when an LSP server is available for the file type.
-:::
-
----
-
## How It Works
When opencode opens a file, it: