ソースを参照

Merge pull request #134 from NullVoxPopuli/patch-1

Add hbs alias to handlebars
Alexandru Dima 4 年 前
コミット
b60c47312b
1 ファイル変更1 行追加1 行削除
  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')
 });