From e46254066ce7b893e25d3c0c16e7e017c3d78700 Mon Sep 17 00:00:00 2001 From: Philipp Kief Date: Thu, 24 Aug 2023 20:57:27 +0200 Subject: [PATCH] [Icon Request] Add icon association to dockercompose language id (#2059) --- src/icons/fileIcons.ts | 8 +------- src/icons/languageIcons.ts | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/src/icons/fileIcons.ts b/src/icons/fileIcons.ts index b4201ba8a..13bd9c3a9 100644 --- a/src/icons/fileIcons.ts +++ b/src/icons/fileIcons.ts @@ -67,13 +67,7 @@ export const fileIcons: FileIcons = { { name: 'twine', fileExtensions: ['tw', 'twee'] }, { name: 'yaml', - fileExtensions: [ - 'yml', - 'yaml', - 'yml.dist', - 'yaml.dist', - 'YAML-tmLanguage', - ], + fileExtensions: ['yml.dist', 'yaml.dist', 'YAML-tmLanguage'], }, { name: 'xml', diff --git a/src/icons/languageIcons.ts b/src/icons/languageIcons.ts index 22d360925..cc1ab1a3a 100644 --- a/src/icons/languageIcons.ts +++ b/src/icons/languageIcons.ts @@ -87,7 +87,7 @@ export const languageIcons: LanguageIcon[] = [ { icon: { name: 'tex' }, ids: ['tex', 'doctex', 'latex', 'latex-expl3'] }, { icon: { name: 'salesforce' }, ids: ['apex'] }, { icon: { name: 'sas' }, ids: ['sas'] }, - { icon: { name: 'docker' }, ids: ['dockerfile'] }, + { icon: { name: 'docker' }, ids: ['dockerfile', 'dockercompose'] }, { icon: { name: 'table' }, ids: ['csv', 'tsv', 'psv'] }, { icon: { name: 'csharp' }, ids: ['csharp'] }, { icon: { name: 'console' }, ids: ['bat', 'awk', 'shellscript'] },