mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
29 lines
No EOL
723 B
JSON
29 lines
No EOL
723 B
JSON
{
|
|
"name": "make",
|
|
"version": "0.1.0",
|
|
"publisher": "vscode",
|
|
"engines": { "vscode": "*" },
|
|
"scripts": {
|
|
"update-grammar": "node ../../build/npm/update-grammar.js fadeevab/make.tmbundle Syntaxes/Makefile.plist ./syntaxes/Makefile.json"
|
|
},
|
|
"contributes": {
|
|
|
|
"languages": [{
|
|
"id": "makefile",
|
|
"aliases": ["Makefile", "makefile"],
|
|
"extensions": [ ".mk" ],
|
|
"filenames": [ "Makefile", "makefile", "GNUmakefile", "OCamlMakefile" ],
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "makefile",
|
|
"scopeName": "source.makefile",
|
|
"path": "./syntaxes/Makefile.json"
|
|
}],
|
|
"configurationDefaults": {
|
|
"[makefile]": {
|
|
"editor.insertSpaces": false
|
|
}
|
|
}
|
|
}
|
|
} |