瀏覽代碼

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')
 });