-
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 UI is overwhelming for extensions with lots of settings #70589
Comments
Sorry that you are having these issues. Gitlens is probably a special case here, I don't really want to introduce a general purpose way to link to a different settings UI for extensions or encourage them to go off and do their own thing, because the vscode settings GUI should be the best thing for 99% of cases. And we will probably never do everything that gitlens' settings editor does, but help me make a list of the things that are missing from vscode's GUI that are necessary to have a better experience for extension settings.
|
@roblourens Thanks. Here are some of my thoughts:
|
Personally, I'd prefer just having the setting not show up in the UI, but still get intellisense support when editing the JSON file in this case. |
@roblourens What do you think about allowing an extension to opt-out of having their settings show up in the Settings UI and instead show a message with a link (similar to |
Having images embedded in Settings GUI (hidden by default) would be be perfect. |
You could expose a new type of webview for settings. With this new type, developers can choose to override the standard settings window with their own. It could be called WebviewSettingsProvider. |
hi! the following issue/proposal llikely can help with that |
Shame to see little has been done here recently. For my part, all I'd like is a way to use camelCase in the name of my settings. Here's what I have now: "ahk++.intellisense.enableIntellisense": {
"type": "boolean",
"default": true,
"description": "..."
}, But it shows up to users as "Ahk++ > Intellisense > Enable Intellisense" There is no way to make my title "AHK++ > IntelliSense > Enable IntelliSense", and it make my settings look a bit unprofessional. I opened #110163 back in 2020, but it was closed as part of this one. However, I think my request is much smaller and can be handled on its own*. Thanks :) |
@mark-wiemer You may try this:
If the string contains blanks it is handled differently: parts between dots are left as is |
Thanks @manwithafox, that helps some problems, but it seems I still can't write |
Specifically for GitLens, I find the settings ui practically unusable -- mainly because GitLens has LOTS of settings, but also because there is no extension controlled order (alphabetic imo doesn't work well), no extension controlled grouping (other than alphabetic proximity), and more. And since the new settings ui became the default, I've seen an uptick in users running into many issues trying to find settings.
To combat this (and really this was long before there was even a settings ui), GitLens provides its own built-in settings editor which is highly tailored and interactive to help guide users. But users have a very hard time discovering it. And again since the settings ui became the default users think that the vscode settings ui is the same as GitLens' settings editor, even when I explicitly provide the command to be run from the palette.
Given the above, I would really love a way from the vscode settings ui, extension page, etc, to at least advertise (or better yet replace/block the built-in ui) and direct people to GitLens' settings editor. Maybe something like a mini-banner with a link or something to guide a user to a much better experience.
/cc @roblourens
The text was updated successfully, but these errors were encountered: