- retain order and comments

- show diff editor for conflicts
This commit is contained in:
Sandeep Somavarapu
2020-01-20 22:25:36 +01:00
parent 6a2268596b
commit 4461c1649d
11 changed files with 1346 additions and 216 deletions

View File

@@ -81,6 +81,10 @@ export class SettingsSyncService extends Disposable implements ISettingsSyncServ
return this.channel.call('resolveConflicts', [conflicts]);
}
getRemotContent(): Promise<string | null> {
return this.channel.call('getRemotContent');
}
private async updateStatus(status: SyncStatus): Promise<void> {
this._status = status;
this._onDidChangeStatus.fire(status);