Sfoglia il codice sorgente

Merge pull request #134 from NullVoxPopuli/patch-1

Add hbs alias to handlebars
Alexandru Dima 4 anni fa
parent
commit
b60c47312b
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/handlebars/handlebars.contribution.ts

+ 1 - 1
src/handlebars/handlebars.contribution.ts

@@ -8,7 +8,7 @@ import { registerLanguage } from '../_.contribution';
 registerLanguage({
 	id: 'handlebars',
 	extensions: ['.handlebars', '.hbs'],
-	aliases: ['Handlebars', 'handlebars'],
+	aliases: ['Handlebars', 'handlebars', 'hbs'],
 	mimetypes: ['text/x-handlebars-template'],
 	loader: () => import('./handlebars')
 });