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.
else
1 parent 54314d9 commit ee25c1fCopy full SHA for ee25c1f
src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.ts
@@ -170,7 +170,7 @@ export class InlineCompletionsController extends Disposable {
170
for (const ctrl of InlineCompletionsController._instances) {
171
if (ctrl === this) {
172
continue;
173
- } if (nextEditUri && isEqual(nextEditUri, ctrl.editor.getModel()?.uri)) {
+ } else if (nextEditUri && isEqual(nextEditUri, ctrl.editor.getModel()?.uri)) {
174
// The next edit in other edito is related to this controller, trigger it.
175
ctrl.model.get()?.trigger();
176
} else {
0 commit comments