Skip to content

Commit

Permalink
Fix django file extension association (Fixes #693)
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Apr 13, 2020
1 parent 26c4dbf commit f338121
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/icons/fileIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { FileIcons, IconPack } from '../models/index';
export const fileIcons: FileIcons = {
defaultIcon: { name: 'file' },
icons: [
{ name: 'html', fileExtensions: ['html', 'htm', 'xhtml', 'html_vm', 'asp'] },
{ name: 'html', fileExtensions: ['htm', 'xhtml', 'html_vm', 'asp'] },
{
name: 'pug',
fileExtensions: ['jade', 'pug'],
Expand Down
1 change: 1 addition & 0 deletions src/icons/languageIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export const languageIcons: LanguageIcon[] = [
{ icon: { name: 'go_gopher' }, ids: [] },
{ icon: { name: 'nodejs_alt' }, ids: [] },
{ icon: { name: 'django' }, ids: ['django-html', 'django-txt'] },
{ icon: { name: 'html' }, ids: ['html'] },
{ icon: { name: 'godot' }, ids: ['gdscript'] },
{ icon: { name: 'vim' }, ids: ['viml'] },
{ icon: { name: 'silverstripe' }, ids: [] },
Expand Down

0 comments on commit f338121

Please sign in to comment.