From 0448cc76b1623833869fd6eb81efb184dc3fafc5 Mon Sep 17 00:00:00 2001 From: Kazuhito Yokoi Date: Sat, 13 Jan 2024 16:28:36 +0900 Subject: [PATCH] Support triple mustache as brackets --- src/basic-languages/handlebars/handlebars.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/basic-languages/handlebars/handlebars.ts b/src/basic-languages/handlebars/handlebars.ts index 76488c123f..5a2d27daa7 100644 --- a/src/basic-languages/handlebars/handlebars.ts +++ b/src/basic-languages/handlebars/handlebars.ts @@ -34,6 +34,7 @@ export const conf: languages.LanguageConfiguration = { brackets: [ [''], ['<', '>'], + ['{{{', '}}}'], ['{{', '}}'], ['{', '}'], ['(', ')']