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 69f4b0e commit ac34230Copy full SHA for ac34230
src/vs/workbench/contrib/inlineChat/browser/inlineChatController.ts
@@ -362,6 +362,9 @@ export class InlineChatController implements IEditorContribution {
362
this._zone.value.widget.updateInfo(this._activeSession.session.message ?? localize('welcome.1', "AI-generated code may be incorrect"));
363
this._zone.value.widget.preferredExpansionState = this._activeSession.lastExpansionState;
364
this._zone.value.widget.value = this._activeSession.session.input ?? this._activeSession.lastInput?.value ?? this._zone.value.widget.value;
365
+ if (this._activeSession.session.input) {
366
+ this._zone.value.widget.selectAll();
367
+ }
368
369
this._showWidget(true, options.position);
370
0 commit comments