Unnamed repository; edit this file 'description' to name the repository.
Don't add cargo to requiresServerReloadOpts
| -rw-r--r-- | editors/code/src/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index c0a1b3f02e..5dc2c419ef 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts @@ -31,7 +31,7 @@ export class Config { workspaceState: vscode.Memento; private readonly rootSection = "rust-analyzer"; - private readonly requiresServerReloadOpts = ["cargo", "server", "files", "showSyntaxTree"].map( + private readonly requiresServerReloadOpts = ["server", "files", "showSyntaxTree"].map( (opt) => `${this.rootSection}.${opt}`, ); |