Skip to content

Commit

Permalink
Add quotes to autoClosingPairs for make
Browse files Browse the repository at this point in the history
Fixes #89191
  • Loading branch information
alexr00 committed Nov 5, 2020
1 parent d43e45b commit 520a050
Showing 1 changed file with 31 additions and 4 deletions.
35 changes: 31 additions & 4 deletions extensions/make/language-configuration.json
Expand Up @@ -3,8 +3,35 @@
"lineComment": "#"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
],
"autoClosingPairs": [
{
"open": "'",
"close": "'",
"notIn": [
"string",
"comment"
]
},
{
"open": "\"",
"close": "\"",
"notIn": [
"string",
"comment"
]
}
]
}
}

0 comments on commit 520a050

Please sign in to comment.