mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
Send the configuration change event data to Extension host
This commit is contained in:
@@ -27,8 +27,8 @@ export class MainThreadConfiguration implements MainThreadConfigurationShape {
|
||||
) {
|
||||
const proxy = extHostContext.get(ExtHostContext.ExtHostConfiguration);
|
||||
|
||||
this._configurationListener = configurationService.onDidChangeConfiguration(() => {
|
||||
proxy.$acceptConfigurationChanged(configurationService.getConfigurationData());
|
||||
this._configurationListener = configurationService.onDidChangeConfiguration(e => {
|
||||
proxy.$acceptConfigurationChanged(configurationService.getConfigurationData(), e.toJSON());
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user