소스 검색

Add hbs alias to handlebars

NullVoxPopuli 4 년 전
부모
커밋
bc9c229a64
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')
 });