mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
e8dbea338b
--This line, and those below, will be igored-- A utils/vscode A utils/vscode/README A utils/vscode/tablegen A utils/vscode/tablegen/.vscode A utils/vscode/tablegen/.vscode/launch.json A utils/vscode/tablegen/CHANGELOG.md A utils/vscode/tablegen/README.md A utils/vscode/tablegen/language-configuration.json A utils/vscode/tablegen/package.json A utils/vscode/tablegen/syntaxes A utils/vscode/tablegen/syntaxes/TableGen.tmLanguage A utils/vscode/tablegen/vsc-extension-quickstart.md llvm-svn: 302553
26 lines
689 B
JSON
26 lines
689 B
JSON
{
|
|
"name": "tablegen",
|
|
"displayName": "TableGen",
|
|
"description": "VSCode Language Colorizer for LLVM's TableGen language.",
|
|
"version": "0.0.1",
|
|
"publisher": "llvm",
|
|
"engines": {
|
|
"vscode": "^1.12.0"
|
|
},
|
|
"categories": [
|
|
"Languages"
|
|
],
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "tablegen",
|
|
"aliases": ["TableGen", "tablegen"],
|
|
"extensions": [".td"],
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "tablegen",
|
|
"scopeName": "source.tablegen",
|
|
"path": "./syntaxes/TableGen.tmLanguage"
|
|
}]
|
|
}
|
|
} |