-
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
[css] disable autocomplete of property value #68495
Comments
How does that work? Can't you use arrow keys to select prev/next item? |
No, only |
@aeschli The problem is:
Do you think we should add the setting? |
Sure, a PR that adds a new setting is welcome. |
@aeschli So this is related to |
Sure, thanks! Here are some pointers:
|
@octref Thank you! |
I can't find how to disable CSS property value autocomplete, I'm using these settings:
it works perfectly in JavaScript, TypeScript, etc. But in CSS if I press tab I will get full autocomplete of property and then value. How I can disable autocomplete of value and keep only autocomplete of property? Gif below shows the issue.
As you can see it autocompleted almost perfectly except it automatically opened suggestion for value which I don't need since I want to go through all
w
based suggestions withtab
and I even added in settings"editor.quickSuggestions": false
which CSS should respect.In my opinion, if
quickSuggestions
isfalse
it should autocomplete only withwhite-space
and then you can go through properties by pressingtab
and then you add:
which results towhite-space:
you can write a single letter and go through suggestions again withtab
.So to summarize it should autocomplete with only
white-space
and do not show suggestion list of values for that prop.The text was updated successfully, but these errors were encountered: