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.
1 parent f6c307e commit e444051Copy full SHA for e444051
src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsController.ts
@@ -154,13 +154,6 @@ export class InlineCompletionsController extends Disposable {
154
this.updateObservables(tx, getReason(e))
155
)));
156
157
- this._register(this._contextKeyService.onDidChangeContext((e) => transaction(tx => {
158
- if (e.affectsSome(new Set('editorDictation.inProgress'))) {
159
- /** @description contextKeyService.editorDictation.inProgress*/
160
- this.updateObservables(tx, VersionIdChangeReason.Other);
161
- this.model.get()?.stop(tx);
162
- }
163
- })));
164
165
this._register(editor.onDidChangeCursorPosition(e => transaction(tx => {
166
/** @description InlineCompletionsController.onDidChangeCursorPosition */
0 commit comments