Skip to content

Commit

Permalink
fix: avoid "`" auto close break markdown code block input
Browse files Browse the repository at this point in the history
close #1428
  • Loading branch information
johnsoncodehk committed Jun 10, 2022
1 parent c58e5dd commit a1b0682
Showing 1 changed file with 10 additions and 0 deletions.
@@ -1,5 +1,15 @@
{
"autoClosingPairs": [
// markdown
// fix https://github.com/johnsoncodehk/volar/issues/1428
{
"open": "```",
"close": "\n\n```",
"notIn": [
"string",
"comment"
]
},
// html
{
"open": "{",
Expand Down

0 comments on commit a1b0682

Please sign in to comment.