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 cd95e93 commit 65a3d20Copy full SHA for 65a3d20
src/vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionQuickInputActions.ts
@@ -148,10 +148,12 @@ class AskQuickQuestionAction extends Action2 {
148
// If we were given a query (via executeCommand), then accept it
149
if (query) {
150
this._input.value = query;
151
+ this._input.valueSelection = [0, this._input.value.length];
152
this._currentQuery = query;
153
this._currentSession.accept(query);
154
} else if (this._currentQuery) {
155
this._input.value = this._currentQuery;
156
157
}
158
159
0 commit comments