We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80d30b5 commit a8b7239Copy full SHA for a8b7239
src/vs/workbench/contrib/inlineChat/browser/inlineChatDecorations.ts
@@ -60,7 +60,7 @@ export class InlineChatDecorationsContribution extends Disposable implements IEd
60
return;
61
}
62
const editor = this._editor;
63
- const decorationUpdateScheduler = new RunOnceScheduler(() => this._onSelectionOrContentChanged(editor), 200);
+ const decorationUpdateScheduler = new RunOnceScheduler(() => this._onSelectionOrContentChanged(editor), 100);
64
this._localToDispose.add(decorationUpdateScheduler);
65
this._localToDispose.add(this._editor.onDidChangeCursorSelection(() => decorationUpdateScheduler.schedule()));
66
this._localToDispose.add(this._editor.onDidChangeModelContent(() => decorationUpdateScheduler.schedule()));
0 commit comments