You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Profiles should be able to inherit settings, extensions, and keybinds from other profiles. Specifically, it would be useful to inherit from the default profile.
If this feature already exists, I have not found it.
Problem
Imagine I have multiple profiles. These could be a home and work profile. They could be language-specific profiles like C++, Python, and Javascript. Whatever the case is, I have multiple profiles.
I may choose to install VSCodeVim. Obviously, this extension would be useful to have across all my profiles. Furthermore, the settings related to this extension are likely to be the same across all my profiles.
As it currently stands, I must install VSCodeVim in each profile separately and copy any settings to each profile. If, in the future, I decide to change my VSCodeVim settings, I must copy those changes to each profile. This is a major pain. The problem only gets worse with each extension I wish to share across profiles.
VSCode attempts to solve this issue by allowing you to create a profile by using another as a base. This is insufficient because any changes made to the original profile are not reflected in the new profile.
Solution
Introduce a per-profile setting to inherit from another: "inherit-profile": "default"
This solution comes with drawbacks. The inheritance graph may contain cycles and may be many levels deep, leading to unexpected behavior on the user's end. This can be solved by only allowing inheritance one level deep. I do not see the need for a profile to inherit from a profile that inherits from another profile.
Another option is to only allow a new profile to inherit from the default profile. This results in a loss in flexibility, but is a simpler solution.
The text was updated successfully, but these errors were encountered:
Adding my .02¢, the main reason I would like profile inheritance is so that my keyboard shortcuts, global state, and the main settings (i.e. not extension specific) would carry over to each profile.
I want these to be consistent across all profiles and don't want to have to update 1 change across X number of profiles.
Thanks for creating this issue! We figured it's covering the same as another one we already have. Thus, we closed this one as a duplicate. You can search for similar existing issues. See also our issue reporting guidelines.
Profiles should be able to inherit settings, extensions, and keybinds from other profiles. Specifically, it would be useful to inherit from the default profile.
If this feature already exists, I have not found it.
Problem
Imagine I have multiple profiles. These could be a home and work profile. They could be language-specific profiles like C++, Python, and Javascript. Whatever the case is, I have multiple profiles.
I may choose to install VSCodeVim. Obviously, this extension would be useful to have across all my profiles. Furthermore, the settings related to this extension are likely to be the same across all my profiles.
As it currently stands, I must install VSCodeVim in each profile separately and copy any settings to each profile. If, in the future, I decide to change my VSCodeVim settings, I must copy those changes to each profile. This is a major pain. The problem only gets worse with each extension I wish to share across profiles.
VSCode attempts to solve this issue by allowing you to create a profile by using another as a base. This is insufficient because any changes made to the original profile are not reflected in the new profile.
Solution
Introduce a per-profile setting to inherit from another:
"inherit-profile": "default"
This solution comes with drawbacks. The inheritance graph may contain cycles and may be many levels deep, leading to unexpected behavior on the user's end. This can be solved by only allowing inheritance one level deep. I do not see the need for a profile to inherit from a profile that inherits from another profile.
Another option is to only allow a new profile to inherit from the default profile. This results in a loss in flexibility, but is a simpler solution.
The text was updated successfully, but these errors were encountered: