docs: Fix missing } in multiple formatters example (#22964)
Add a missing } in the multiple formatters example in the configuring Zed section of the manual. Release Notes: - Fixed a missing } in the multiple formatters doc example
This commit is contained in:
parent
cbc403d3f3
commit
b74cb92978
1 changed files with 6 additions and 4 deletions
|
@ -996,10 +996,12 @@ WARNING: `{buffer_path}` should not be used to direct your formatter to read fro
|
|||
```json
|
||||
{
|
||||
"formatter": [
|
||||
{"language_server": {"name": "rust-analyzer"}},
|
||||
{"external": {
|
||||
"command": "sed",
|
||||
"arguments": ["-e", "s/ *$//"]
|
||||
{ "language_server": { "name": "rust-analyzer" } },
|
||||
{
|
||||
"external": {
|
||||
"command": "sed",
|
||||
"arguments": ["-e", "s/ *$//"]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue