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.
2 parents 49b8e2d + e399de0 commit d72845cCopy full SHA for d72845c
src/vs/workbench/contrib/inlineChat/browser/inlineChatController.ts
@@ -307,7 +307,7 @@ export class InlineChatController implements IEditorContribution {
307
}
308
});
309
310
- this._showWidget(false);
+ this._showWidget(true);
311
312
this._sessionStore.add(this._editor.onDidChangeModel((e) => {
313
const msg = this._activeSession?.lastExchange
src/vs/workbench/contrib/inlineChat/browser/inlineChatStrategies.ts
@@ -366,7 +366,7 @@ export class LiveStrategy extends EditModeStrategy {
366
367
368
override needsMargin(): boolean {
369
- return Boolean(this._session.lastTextModelChanges.length);
+ return !Boolean(this._session.lastTextModelChanges.length);
370
371
372
hasFocus(): boolean {
0 commit comments