-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Settings sync for settings GUI #84431
Comments
Here's the conceptual mockups for resolving conflicts. When we detect that there are conflicts, we will prompt the user either via a notification: Or via the settings gear: This will lead them to the Settings GUI (if
When we get to in narrow views, we'll adjust the layout and stack the conflicts: If strings are long and require it to wrap, we'll grow the conflict container (making sure the "Ignore Setting" action is adjusted): |
|
@sanket-bhalerao please see #2743 (comment) for all things related to Settings Sync, this issue is specifically for the UI in the Settings GUI. |
The terms I feel the terms will be interepreted differently by users. Would e.g. writing |
@thernstig I think this is something we'll iterate on to find the right verbiage to describe this behavior. This is also why we decided to add icons to help illustrate it better. IMO, select/pick/choose doesn't bring any more clarity. |
Implemented vscode/src/vs/platform/userDataSync/common/userDataSync.ts Lines 201 to 206 in f14dd3f
|
Notes on the API
|
@roblourens Changed it as requested vscode/src/vs/platform/userDataSync/common/userDataSync.ts Lines 201 to 206 in cd4472e
|
Current status, we were discussing whether or not we really need this full sophisticated GUI for resolving conflicts setting by setting. Figuring out how to communicate different situations in the settings UI gets complicated and it's feeling like not quite the right solution. Seems that conflicts will not usually occur that often, and when they do, users will probably typically just want to accept all the local or remote conflicted settings together, or in an advanced use case, the JSON editor is probably fine for those users. So one idea we had is that when you click "Resolve Conflicts", you would just get a list of settings that are in conflict, with buttons to "accept all local", "accept all remote", or "see details", where the first two buttons would resolve the conflicts with the local or remote versions, and the third would open the JSON editor for advanced users who want to make individual changes. Also, I think that we still don't have a good concept of how merging keybindings conflicts will work, and maybe we shouldn't go too far down the road of designing a complicated resolution UI for settings without a better understanding of that and how the two go together. |
We need to provide some UI for settings sync, especially for resolving simple conflicts without dropping the user into a JSON diff.
#78966
The text was updated successfully, but these errors were encountered: