We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b9c54b1 + f18bef7 commit 4793a69Copy full SHA for 4793a69
1 file changed
src/vs/workbench/electron-browser/index.html
@@ -109,6 +109,10 @@
109
var enableDeveloperTools = !configuration.isBuilt || !!configuration.extensionDevelopmentPath;
110
111
process.env['VSCODE_SHARED_IPC_HOOK'] = configuration.sharedIPCHandle;
112
+ // Get the nls configuration into the process.env as early as possible.
113
+ if (configuration.userEnv && configuration.userEnv['VSCODE_NLS_CONFIG']) {
114
+ process.env['VSCODE_NLS_CONFIG'] = configuration.userEnv['VSCODE_NLS_CONFIG'];
115
+ }
116
117
registerListeners(enableDeveloperTools);
118
0 commit comments