Add a 'Minimal manifest' snippet

This commit is contained in:
Kris De Volder
2017-01-19 15:31:18 -08:00
parent 258ac089b7
commit 99b28a2885
2 changed files with 15 additions and 0 deletions

View File

@@ -43,6 +43,10 @@
"language": "manifest-yaml",
"scopeName": "source.yaml",
"path": "./yaml-support/yaml.tmLanguage"
}],
"snippets": [{
"language": "manifest-yaml",
"path": "./snippets.json"
}]
},
"main": "./out/lib/Main",

View File

@@ -0,0 +1,11 @@
{
"Minimal CF Manifest": {
"prefix": "applications",
"body": [
"applications:",
"- name: ${1:name}",
" $0"
],
"description": "Minimal CF Manifest"
}
}