Skip to content

Commit

Permalink
Make chat code blocks non-simple (#204780)
Browse files Browse the repository at this point in the history
This enables some features we don't want but we want to test it in insiders to see the impact
  • Loading branch information
mjbvz committed Feb 8, 2024
1 parent 90cebfa commit 4217d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/chat/browser/codeBlockPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ export class SimpleCodeBlockPart extends BaseCodeBlockPart<ISimpleCodeBlockData>

protected override createEditor(instantiationService: IInstantiationService, parent: HTMLElement, options: Readonly<IEditorConstructionOptions>): CodeEditorWidget {
return this._register(instantiationService.createInstance(CodeEditorWidget, parent, options, {
isSimpleWidget: true,
isSimpleWidget: false,
contributions: EditorExtensionsRegistry.getSomeEditorContributions([
MenuPreventer.ID,
SelectionClipboardContributionID,
Expand Down

0 comments on commit 4217d85

Please sign in to comment.