mirror of https://git.tuxpa.in/a/code-server.git
33 lines
920 B
JSON
33 lines
920 B
JSON
{
|
|
"name": "groovy",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": { "vscode": "*" },
|
|
"scripts": {
|
|
"update-grammar": "node ../../build/npm/update-grammar.js textmate/groovy.tmbundle Syntaxes/Groovy.tmLanguage ./syntaxes/groovy.tmLanguage.json"
|
|
},
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "groovy",
|
|
"aliases": ["Groovy", "groovy"],
|
|
"extensions": [".groovy", ".gvy", ".gradle", ".jenkinsfile", ".nf"],
|
|
"filenames": [ "Jenkinsfile" ],
|
|
"filenamePatterns": ["Jenkinsfile.*"],
|
|
"firstLine": "^#!.*\\bgroovy\\b",
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "groovy",
|
|
"scopeName": "source.groovy",
|
|
"path": "./syntaxes/groovy.tmLanguage.json"
|
|
}],
|
|
"snippets": [{
|
|
"language": "groovy",
|
|
"path": "./snippets/groovy.code-snippets"
|
|
}]
|
|
}
|
|
}
|