Add underscores and asterisks to surrounding pairs (#55054)

Same reasons as [here](https://github.com/silvenon/vscode-mdx/pull/6#issue-203819440)
This commit is contained in:
Nikolas 2018-07-26 02:31:04 +02:00 committed by Matt Bierner
parent edc6b2acdd
commit 700ee37a24

View file

@ -36,7 +36,9 @@
"surroundingPairs": [
["(", ")"],
["[", "]"],
["`", "`"]
["`", "`"],
["_", "_"],
["*", "*"]
],
"folding": {
"offSide": true,