editor.quickSuggestions doesn't render in the Settings editor #148163
Labels
bug
Issue identified by VS Code Team member as probable bug
insiders-released
Patch has been released in VS Code Insiders
settings-editor
VS Code settings editor issues
verified
Verification succeeded
Milestone
Currently, the
editor.quickSuggestions
setting doesn't render in the Settings editor, because the Settings editor cannot handle settings withanyOf
types.The current accepted values are of the form
Questions:
true
and"on"
orfalse
and"off"
for each field?editor.quickSuggestions: true
just a shorthand for setting each field totrue
?If we can change the setting configuration so that it is just an object with fields "strings", "comments", and "other", and the value for each field is an enum of options
["inline", "on", "off"]
, then the setting can render in the Settings editor UI. Along with changing the type over, we'll have to migrate the setting value for users still using the old setting value. I believe Emmet has example code for this process for the settingemmet.extensionsPath
.The text was updated successfully, but these errors were encountered: