We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caad30b commit 393186eCopy full SHA for 393186e
src/vs/workbench/services/language/common/languageService.ts
@@ -182,11 +182,10 @@ class LanguageTableRenderer extends Disposable implements IExtensionFeatureTable
182
localize('grammar', "Grammar"),
183
localize('snippets', "Snippets")
184
];
185
- const rows: IRowData[][] = languages.sort((a, b) => (a.id || '').localeCompare(b.id || ''))
+ const rows: IRowData[][] = languages.sort((a, b) => a.id.localeCompare(b.id))
186
.map(l => {
187
return [
188
- l.id,
189
- l.name,
+ l.id, l.name,
190
new MarkdownString().appendMarkdown(`${l.extensions.map(e => `\`${e}\``).join(' ')}`),
191
l.hasGrammar ? '✔︎' : '\u2014',
192
l.hasSnippets ? '✔︎' : '\u2014'
0 commit comments