show diff editor for keybindings conflicts

This commit is contained in:
Sandeep Somavarapu
2020-01-20 22:50:13 +01:00
parent 4461c1649d
commit 0d71c3325f
13 changed files with 73 additions and 67 deletions

View File

@@ -74,6 +74,10 @@ export class UserDataSyncService extends Disposable implements IUserDataSyncServ
return this.channel.call('hasLocalData');
}
getRemoteContent(source: SyncSource): Promise<string | null> {
return this.channel.call('getRemoteContent', [source]);
}
isFirstTimeSyncAndHasUserData(): Promise<boolean> {
return this.channel.call('isFirstTimeSyncAndHasUserData');
}