We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8bce8c commit c23df8fCopy full SHA for c23df8f
src/goLanguageServer.ts
@@ -492,7 +492,9 @@ export function watchLanguageServerConfiguration(e: vscode.ConfigurationChangeEv
492
e.affectsConfiguration('go.useLanguageServer') ||
493
e.affectsConfiguration('go.languageServerFlags') ||
494
e.affectsConfiguration('go.languageServerExperimentalFeatures') ||
495
- e.affectsConfiguration('go.alternateTools')
+ e.affectsConfiguration('go.alternateTools') ||
496
+ e.affectsConfiguration('go.toolsEnvVars')
497
+ // TODO: Should we check http.proxy too? That affects toolExecutionEnvironment too.
498
) {
499
restartLanguageServer();
500
}
0 commit comments