We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab39f4 commit 4f319cbCopy full SHA for 4f319cb
1 file changed
src/vs/workbench/contrib/format/browser/formatActionsMultiple.ts
@@ -127,7 +127,8 @@ class DefaultFormatter extends Disposable implements IWorkbenchContribution {
127
const picks = formatter.map((formatter, index) => {
128
return <IIndexedPick>{
129
index,
130
- label: formatter.displayName || formatter.extensionId || '?'
+ label: formatter.displayName || formatter.extensionId || '?',
131
+ description: formatter.extensionId || undefined
132
};
133
});
134
const langName = this._modeService.getLanguageName(document.getModeId()) || document.getModeId();
0 commit comments