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.
2 parents e191637 + 0360c03 commit a29151bCopy full SHA for a29151b
src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.ts
@@ -187,6 +187,13 @@ export class InlineCompletionsModel extends Disposable {
187
}
188
}));
189
190
+ this._register(autorun(reader => {
191
+ const inlineSuggestion = this.state.map(s => s?.inlineSuggestion).read(reader);
192
+ if (inlineSuggestion) {
193
+ inlineSuggestion.addPerformanceMarker('activeSuggestion');
194
+ }
195
+ }));
196
+
197
const inlineEditSemanticId = this.inlineEditState.map(s => s?.inlineSuggestion.semanticId);
198
199
this._register(autorun(reader => {
0 commit comments