[bat] use grammar from mmims/language-batchfile. Fixes #38206, fixes #3845

This commit is contained in:
Martin Aeschlimann
2017-11-14 14:35:13 +01:00
parent eb73e069be
commit f06a42a8eb
6 changed files with 940 additions and 72 deletions

View File

@@ -3,6 +3,9 @@
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"scripts": {
"update-grammar": "node ../../build/npm/update-grammar.js mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json"
},
"contributes": {
"languages": [{
"id": "bat",
@@ -12,8 +15,8 @@
}],
"grammars": [{
"language": "bat",
"scopeName": "source.dosbatch",
"path": "./syntaxes/Batch File.tmLanguage"
"scopeName": "source.batchfile",
"path": "./syntaxes/batchfile.tmLanguage.json"
}]
}
}