[bat] region snippets

This commit is contained in:
Martin Aeschlimann 2017-11-30 11:43:11 +01:00
parent 76f53ad88d
commit 4ccce4f92d
2 changed files with 20 additions and 0 deletions

View file

@ -17,6 +17,10 @@
"language": "bat",
"scopeName": "source.batchfile",
"path": "./syntaxes/batchfile.tmLanguage.json"
}],
"snippets": [{
"language": "bat",
"path": "./snippets/batchfile.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"
}
}