[coffeescript] snippets for regions

This commit is contained in:
Martin Aeschlimann 2017-11-30 11:28:28 +01:00
parent af2965c44d
commit 2711d3f9ba
2 changed files with 21 additions and 1 deletions

View file

@ -22,6 +22,10 @@
{
"language": "coffeescript"
}
]
],
"snippets": [{
"language": "coffeescript",
"path": "./snippets/coffeescript.snippets.json"
}]
}
}

View file

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