How do we update the version of clangd that comes bundled with Zed? #34551
Closed
jedrichards
started this conversation in
Feature Requests
Replies: 1 comment 5 replies
-
|
The Lines 40 to 63 in 42b2b65 I've had no predownloaded clang and when I've opened a *.c file, the Could it be that the update path is not working properly? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
-
Looking at my system the version of clangd that comes with Zed is ancient:
The latest version is
20.1.8.Is there anyway to update this? I know I can adjust the path to the binary in the lsp settings, but a built in way might be better. For example in VS Code there's a
clangd: check for language server updatecommand.At the moment I'm resorting to configuring Zed to use VS Code's clangd binary 😅
{ "lsp": { "clangd": { "binary": { "path": "/Users/{USER}/Library/Application Support/Code/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/20.1.8/clangd_20.1.8/bin/clangd", } } } }I would rather not resort to
brew install llvmto get a recent clangd, since I don't want to clobber my OS too badly. Having a pre-built bin in a folder somewhere, is more appealing.Beta Was this translation helpful? Give feedback.
All reactions