mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 13:43:07 +00:00
[php] folding snippets
This commit is contained in:
parent
0db75de0b2
commit
f8217340ad
2 changed files with 15 additions and 1 deletions
|
@ -53,7 +53,7 @@
|
|||
"snippets": [
|
||||
{
|
||||
"language": "php",
|
||||
"path": "./snippets/php.json"
|
||||
"path": "./snippets/php.snippets.json"
|
||||
}
|
||||
],
|
||||
"configuration": {
|
||||
|
|
|
@ -234,5 +234,19 @@
|
|||
"$0"
|
||||
],
|
||||
"description": "Throw exception"
|
||||
},
|
||||
"Region Start": {
|
||||
"prefix": "#region",
|
||||
"body": [
|
||||
"#region"
|
||||
],
|
||||
"description": "Folding Region Start"
|
||||
},
|
||||
"Region End": {
|
||||
"prefix": "#endregion",
|
||||
"body": [
|
||||
"#endregion"
|
||||
],
|
||||
"description": "Folding Region End"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue