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 e46e2ab commit 22d8353Copy full SHA for 22d8353
src/vs/workbench/contrib/terminal/browser/terminalIconPicker.ts
@@ -18,6 +18,9 @@ const icons = new Lazy<IconContribution[]>(() => {
18
const iconDefinitions = getIconRegistry().getIcons();
19
const includedChars = new Set<string>();
20
const dedupedIcons = iconDefinitions.filter(e => {
21
+ if (e.id === 'blank') {
22
+ return false;
23
+ }
24
if (!('fontCharacter' in e.defaults)) {
25
return false;
26
}
0 commit comments