docs: Update C# and C++ configuration pages (#19500)
- Update C# configuration page. - Fix typo in C++ configuration page. Release Notes: - N/A
This commit is contained in:
parent
92c29be74c
commit
44dc693d30
2 changed files with 16 additions and 2 deletions
|
@ -24,7 +24,7 @@ To use a binary in a custom location, add the following to your `settings.json`:
|
|||
}
|
||||
```
|
||||
|
||||
If you want to disable Zed looking for a `clangd` binary, you can set `ignore_system-version` to `true`:
|
||||
If you want to disable Zed looking for a `clangd` binary, you can set `ignore_system_version` to `true`:
|
||||
|
||||
```json
|
||||
{
|
||||
|
|
|
@ -17,7 +17,21 @@ The `OmniSharp` binary can be configured in a Zed settings file with:
|
|||
"omnisharp": {
|
||||
"binary": {
|
||||
"path": "/path/to/OmniSharp",
|
||||
"args": ["optional", "additional", "args", "-lsp"]
|
||||
"arguments": ["optional", "additional", "args", "-lsp"]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
If you want to disable Zed looking for a `omnisharp` binary, you can set `ignore_system_version` to `true`:
|
||||
|
||||
```json
|
||||
{
|
||||
"lsp": {
|
||||
"omnisharp": {
|
||||
"binary": {
|
||||
"ignore_system_version": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue