Skip to content

Commit

Permalink
Add language ids (Fixes #840)
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Sep 21, 2020
1 parent af35141 commit d3bcd69
Showing 1 changed file with 38 additions and 8 deletions.
46 changes: 38 additions & 8 deletions src/icons/languageIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import { LanguageIcon } from '../models';
* Defines icons for language ids
*/
export const languageIcons: LanguageIcon[] = [
{ icon: { name: 'git' }, ids: ['git', 'git-commit', 'git-rebase'] },
{ icon: { name: 'c' }, ids: ['c', 'objective-c'] },
{ icon: { name: 'git' }, ids: ['git', 'git-commit', 'git-rebase', 'ignore'] },
{ icon: { name: 'c' }, ids: ['c', 'objective-c', 'objective-cpp'] },
{ icon: { name: 'yaml' }, ids: ['yaml'] },
{ icon: { name: 'xml' }, ids: ['xml', 'xquery'] },
{ icon: { name: 'xml' }, ids: ['xml', 'xquery', 'xsl'] },
{ icon: { name: 'matlab' }, ids: ['matlab'] },
{ icon: { name: 'settings' }, ids: ['makefile'] },
{ icon: { name: 'settings' }, ids: ['makefile', 'toml', 'ini', 'properties'] },
{ icon: { name: 'shaderlab' }, ids: ['shaderlab'] },
{ icon: { name: 'diff' }, ids: ['diff'] },
{ icon: { name: 'json' }, ids: ['json', 'jsonc'] },
{ icon: { name: 'json' }, ids: ['json', 'jsonc', 'json5'] },
{ icon: { name: 'blink' }, ids: ['blink'] },
{ icon: { name: 'java' }, ids: ['java'] },
{ icon: { name: 'razor' }, ids: ['razor', 'aspnetcorerazor'] },
Expand All @@ -35,10 +35,10 @@ export const languageIcons: LanguageIcon[] = [
{ icon: { name: 'nunjucks' }, ids: ['nunjucks'] },
{ icon: { name: 'pug' }, ids: ['pug'] },
{ icon: { name: 'robot' }, ids: ['robotframework'] },
{ icon: { name: 'sass' }, ids: ['sass'] },
{ icon: { name: 'sass' }, ids: ['sass', 'scss'] },
{ icon: { name: 'less' }, ids: ['less'] },
{ icon: { name: 'css' }, ids: ['css'] },
{ icon: { name: 'visualstudio' }, ids: ['testOutput'] },
{ icon: { name: 'visualstudio' }, ids: ['testOutput', 'vb'] },
{ icon: { name: 'angular' }, ids: ['ng-template'] },
{ icon: { name: 'graphql' }, ids: ['graphql'] },
{ icon: { name: 'solidity' }, ids: ['solidity'] },
Expand Down Expand Up @@ -79,7 +79,37 @@ export const languageIcons: LanguageIcon[] = [
{ icon: { name: 'pawn' }, ids: ['pawn'] },
{ icon: { name: 'reason' }, ids: ['reason', 'reason_lisp'] },
{ icon: { name: 'sml' }, ids: ['sml'] },
{ icon: { name: 'tex' }, ids: ['tex'] },
{ 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: 'table' }, ids: ['csv', 'tsv'] },
{ icon: { name: 'csharp' }, ids: ['csharp'] },
{ icon: { name: 'console' }, ids: ['bat', 'awk', 'shellscript'] },
{ icon: { name: 'cpp' }, ids: ['cpp'] },
{ icon: { name: 'coffee' }, ids: ['coffeescript'] },
{ icon: { name: 'fsharp' }, ids: ['fsharp'] },
{ icon: { name: 'editorconfig' }, ids: ['editorconfig'] },
{ icon: { name: 'clojure' }, ids: ['clojure'] },
{ icon: { name: 'groovy' }, ids: ['groovy'] },
{ icon: { name: 'markdown' }, ids: ['markdown'] },
{ icon: { name: 'jinja' }, ids: ['jinja'] },
{ icon: { name: 'python-misc' }, ids: ['pip-requirements'] },
{ icon: { name: 'vue' }, ids: ['vue', 'vue-postcss', 'vue-html'] },
{ icon: { name: 'lua' }, ids: ['lua'] },
{ icon: { name: 'lib' }, ids: ['bibtex', 'bibtex-style'] },
{ icon: { name: 'log' }, ids: ['log'] },
{ icon: { name: 'jupyter' }, ids: ['jupyter'] },
{ icon: { name: 'document' }, ids: ['plaintext'] },
{ icon: { name: 'pdf' }, ids: ['pdf'] },
{ icon: { name: 'powershell' }, ids: ['powershell'] },
{ icon: { name: 'pug' }, ids: ['jade'] },
{ icon: { name: 'r' }, ids: ['r', 'rsweave'] },
{ icon: { name: 'rust' }, ids: ['rust'] },
{ icon: { name: 'database' }, ids: ['sql'] },
{ icon: { name: 'lock' }, ids: ['ssh_config'] },
{ icon: { name: 'svg' }, ids: ['svg'] },
{ icon: { name: 'swift' }, ids: ['swift'] },
{ icon: { name: 'react_ts' }, ids: ['typescriptreact'] },
{ icon: { name: 'magnify' }, ids: ['search-result'] },
];

0 comments on commit d3bcd69

Please sign in to comment.