We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a483f1 commit 7e26f84Copy full SHA for 7e26f84
1 file changed
src/vs/workbench/parts/extensions/electron-browser/extensionTipsService.ts
@@ -107,6 +107,17 @@ export class ExtensionTipsService implements IExtensionTipsService {
107
}
108
});
109
110
+ forEach(product.extensionImportantTips, entry => {
111
+ let {key: id, value} = entry;
112
+ const {pattern} = value;
113
+ let ids = this._availableRecommendations[pattern];
114
+ if (!ids) {
115
+ this._availableRecommendations[pattern] = [id];
116
+ } else {
117
+ ids.push(id);
118
+ }
119
+ });
120
+
121
this._modelService.onModelAdded(this._suggest, this, this._disposables);
122
this._modelService.getModels().forEach(model => this._suggest(model));
123
0 commit comments