Skip to content

Commit

Permalink
feat(icon): support for .code-snippet and .code-workspace extensions (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
remcohaszing committed Apr 23, 2023
1 parent 0c7b8ca commit 74220b6
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/iconsManifest/supportedExtensions.ts
Expand Up @@ -4880,6 +4880,14 @@ export const extensions: IFileCollection = {
filename: true,
format: FileFormat.svg,
},
{
icon: 'vscode',
extensions: ['code-snippets', 'code-workspace'],
filenamesGlob: [],
extensionsGlob: [],
filename: false,
format: FileFormat.svg,
},
{
icon: 'vscode2',
extensions: ['.vscodeignore'],
Expand All @@ -4889,6 +4897,15 @@ export const extensions: IFileCollection = {
format: FileFormat.svg,
disabled: true,
},
{
icon: 'vscode2',
extensions: ['code-snippets', 'code-workspace'],
filenamesGlob: [],
extensionsGlob: [],
filename: false,
format: FileFormat.svg,
disabled: true,
},
{
icon: 'vscode3',
extensions: ['.vscodeignore'],
Expand All @@ -4898,6 +4915,15 @@ export const extensions: IFileCollection = {
format: FileFormat.svg,
disabled: true,
},
{
icon: 'vscode3',
extensions: ['code-snippets', 'code-workspace'],
filenamesGlob: [],
extensionsGlob: [],
filename: false,
format: FileFormat.svg,
disabled: true,
},
{
icon: 'vscode-insiders',
extensions: ['.vscodeignore'],
Expand All @@ -4907,6 +4933,15 @@ export const extensions: IFileCollection = {
format: FileFormat.svg,
disabled: true,
},
{
icon: 'vscode-insiders',
extensions: ['code-snippets', 'code-workspace'],
filenamesGlob: [],
extensionsGlob: [],
filename: false,
format: FileFormat.svg,
disabled: true,
},
{ icon: 'vsix', extensions: ['vsix'], light: true, format: FileFormat.svg },
{
icon: 'vsixmanifest',
Expand Down

0 comments on commit 74220b6

Please sign in to comment.