Skip to content

Commit

Permalink
fixes #12757
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Sep 28, 2016
1 parent e7376ad commit f6d0cc1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion extensions/handlebars/language-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"brackets": [
["<!--", "-->"],
["<", ">"],
["{{", "}}"]
["{{", "}}"],
["{", "}"],
["(", ")"]
],
"autoClosingPairs": [
{ "open": "{", "close": "}"},
Expand Down
4 changes: 3 additions & 1 deletion extensions/html/language-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
},
"brackets": [
["<!--", "-->"],
["<", ">"]
["<", ">"],
["{", "}"],
["(", ")"]
],
"autoClosingPairs": [
{ "open": "{", "close": "}"},
Expand Down

0 comments on commit f6d0cc1

Please sign in to comment.