mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
mirror 'source' when cursor changes, #8093
This commit is contained in:
@@ -81,8 +81,8 @@ export class MainThreadEditors extends MainThreadEditorsShape {
|
||||
toDispose.push(textEditor.onConfigurationChanged((opts) => {
|
||||
this._proxy.$acceptOptionsChanged(id, opts);
|
||||
}));
|
||||
toDispose.push(textEditor.onSelectionChanged((selection) => {
|
||||
this._proxy.$acceptSelectionsChanged(id, selection);
|
||||
toDispose.push(textEditor.onSelectionChanged((event) => {
|
||||
this._proxy.$acceptSelectionsChanged(id, event);
|
||||
}));
|
||||
this._proxy.$acceptTextEditorAdd({
|
||||
id: id,
|
||||
|
||||
Reference in New Issue
Block a user