We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad6810e commit 92241d6Copy full SHA for 92241d6
editors/code/src/config.ts
@@ -60,14 +60,7 @@ export class Config {
60
61
if (!requiresReloadOpt) return;
62
63
- const userResponse = await vscode.window.showInformationMessage(
64
- `Changing "${requiresReloadOpt}" requires a reload`,
65
- "Reload now"
66
- );
67
-
68
- if (userResponse === "Reload now") {
69
- await vscode.commands.executeCommand("rust-analyzer.reload");
70
- }
+ await vscode.commands.executeCommand("rust-analyzer.reload");
71
}
72
73
// We don't do runtime config validation here for simplicity. More on stackoverflow:
0 commit comments