From bc9c229a6437e385a8a33220d430b2b879311767 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli Date: Mon, 10 May 2021 21:54:48 -0400 Subject: [PATCH] Add hbs alias to handlebars --- src/handlebars/handlebars.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlebars/handlebars.contribution.ts b/src/handlebars/handlebars.contribution.ts index 65f265f8..68481549 100644 --- a/src/handlebars/handlebars.contribution.ts +++ b/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') });