Delete built-in PowerShell snippets

These two snippets conflict with the PowerShell comment syntax (`<#`),
and since snippet suggestions are enabled by default,
it means it's not possible to type `<#` followed by an enter,
which is very often desired.
The enter unfortunately chooses to insert an entirely unhelpful `#endregion` snippet.
This commit is contained in:
Andy Schwartzmeyer 2022-03-31 11:21:56 -07:00 committed by Andrew Schwartzmeyer
parent 86c90e6f67
commit e1533409f1
2 changed files with 0 additions and 22 deletions

View File

@ -35,12 +35,6 @@
"scopeName": "source.powershell",
"path": "./syntaxes/powershell.tmLanguage.json"
}
],
"snippets": [
{
"language": "powershell",
"path": "./snippets/powershell.code-snippets"
}
]
},
"scripts": {

View File

@ -1,16 +0,0 @@
{
"Region Start": {
"prefix": "#region",
"body": [
"#region $0"
],
"description": "Folding Region Start"
},
"Region End": {
"prefix": "#endregion",
"body": [
"#endregion"
],
"description": "Folding Region End"
}
}