Skip to content

Commit

Permalink
Merge pull request #179184 from microsoft/merogge/select
Browse files Browse the repository at this point in the history
`isSimpleWidget:false` for terminal accessible buffer so `editorTextFocus:true`
  • Loading branch information
meganrogge committed Apr 5, 2023
2 parents 40662a9 + 32f63fe commit 8ae2344
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ export class AccessibleBufferWidget extends DisposableStore {
this._accessibleBuffer.classList.add('accessible-buffer');
this._editorContainer = document.createElement('div');
const codeEditorWidgetOptions: ICodeEditorWidgetOptions = {
isSimpleWidget: true,
contributions: EditorExtensionsRegistry.getSomeEditorContributions([LinkDetector.ID, SelectionClipboardContributionID])
contributions: EditorExtensionsRegistry.getSomeEditorContributions([LinkDetector.ID, SelectionClipboardContributionID, 'editor.contrib.selectionAnchorController'])
};
const font = _xterm.getFont();
const editorOptions: IEditorConstructionOptions = {
Expand Down

0 comments on commit 8ae2344

Please sign in to comment.