-
Notifications
You must be signed in to change notification settings - Fork 30.8k
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
Ability to disable icons and details in suggestions #68557
Comments
I want this feature so badly, I can try all my best to create a PR if any of VS Code team member agrees on this. |
@joaomoreno Hi, since you're back, maybe you can give your opinion on this? I can definitely create a PR. |
@jrieken Since you're in charge now, maybe you can give your opinion on this? As I already mentioned I'm willing to create a PR if you're alright with these suggestions. |
@jrieken Maybe I can create a PR to control these two settings? const maxSuggestionsToShow = 12; // suggestWidget.ts
iconsInSuggestions: true, // editorOptions.ts Settings will look like this: "editor.suggest.maxSuggestionsToShow": number // by default 12
"editor.suggest.showIcons": boolean // by default true |
@svipas Sure! |
@jrieken OMG, thanks!!! |
Created a PR #69942 |
👏 to @svipas |
fyi - we have renamed the setting to |
@jrieken Thank you for info and the support, I really appreciate it. These settings will be released in 1.32 or 1.33? |
This is for 1.33. We plan to release 1.32 today so that tomorrow we have insider builds for 1.33 that include this change |
@jrieken I saw you missed some renaming: This should be |
Yeah, missed that. I have change ready for it |
@jrieken cool! I will definitely use them in tomorrow insiders 😄 |
Also, seems there's a typo: |
Good catch, pushed a fix |
Hi,
I'm switching between
"editor.quickSuggestions"
true and false, but mostly I miss the suggestions list. The issue is in VS Code it's too much noisy and distracting. But it can be easily fixed by adding an ability for users to decide if they want to see icons and details in suggestions list. Also,maxSuggestionsToShow = 12
in my opinion is too much, it should be an8
like it's in Sublime.In my opinion, these settings should be adjustable by the user:
Suggestion for configurations:
Before
After
I'm not touched
.monaco-editor .suggest-widget { width: 430px; }
, but I think then details are disabled this should be smaller than430px
.The text was updated successfully, but these errors were encountered: