Add PowerShell herestring autoclosing pairs

This commit is contained in:
Tyler Leonhardt 2020-04-14 09:06:40 -07:00
parent 951164ae96
commit b6d8d6ef14

View file

@ -12,6 +12,8 @@
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "@'", "close": "\n'@", "notIn": ["string", "comment"]},
{ "open": "@\"", "close": "\n\"@", "notIn": ["string", "comment"]},
{ "open": "\"", "close": "\"", "notIn": ["string"]},
{ "open": "'", "close": "'", "notIn": ["string", "comment"]},
["<#", "#>"]
@ -29,4 +31,4 @@
"end": "^\\s*#[eE]nd[rR]egion\\b"
}
}
}
}