mirror of https://github.com/microsoft/vscode.git
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:
parent
86c90e6f67
commit
e1533409f1
|
@ -35,12 +35,6 @@
|
|||
"scopeName": "source.powershell",
|
||||
"path": "./syntaxes/powershell.tmLanguage.json"
|
||||
}
|
||||
],
|
||||
"snippets": [
|
||||
{
|
||||
"language": "powershell",
|
||||
"path": "./snippets/powershell.code-snippets"
|
||||
}
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue