Render setting descriptions as markdown #53911
Labels
feature-request
Request for new features or functionality
on-testplan
settings-editor
VS Code settings editor issues
ux
User experience issues
Milestone
In the new settings editor, setting descriptions should be rendered as markdown. We should decide when to use quotes, backticks, and links, then make a pass through all settings to make them consistent.
Links
documentation
field to the settings schema which would be a URL to some docs. Then we can show a "See also" link in a standard location to settings that have this in the settings editor.Enum descriptions
enumDescriptions
anywhere. These have useful info but settings are inconsistent. Some settings duplicate this info in their description, some don't. Example of setting with duplicated info: https://github.com/Microsoft/vscode/blob/master/src/vs/editor/common/config/commonEditorConfig.ts#L678files.encoding
. We can't show all of them because the description will be very long. The enumDescriptions forfiles.encoding
are very short, just human-readable names for the encodings. For cases like this, I propose a new setting schema property,inlineEnumDescriptions
, which will cause us to, in the GUI editor, display the enumDescriptions in the dropdown along with the enum values. Example:We have to just handle these case-by-case
Quotes/backticks
The text was updated successfully, but these errors were encountered: