source: tools/vscode/uwaterloo.cforall-0.1.0/package.json @ a768220

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since a768220 was a768220, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

First draft at custom language, currently working : comments, preprocessor and extern C

  • Property mode set to 100644
File size: 752 bytes
Line 
1{
2        "name": "cforall",
3        "version": "0.1.0",
4        "displayName": "C∀ (C-for-all) Language Support",
5        "description": "Cforall - colorizer, grammar and snippets.",
6        "publisher": "uwaterloo",
7        "license": "MIT",
8        "engines": {
9                "vscode": "^1.5.0"
10        },
11        "icon": "images/icon.png",
12        "categories": [
13                "Programming Languages",
14                "Linters",
15                "Other"
16        ],
17        "contributes": {
18                "languages": [
19                        {
20                                "id": "cforall",
21                                "aliases": [
22                                        "C∀",
23                                        "CForAll",
24                                        "Cforall",
25                                        "cforall"
26                                ],
27                                "extensions": [
28                                        ".cfa",
29                                        ".hfa",
30                                        ".ifa"
31                                ],
32                                "configuration": "./cforall.configuration.json"
33                        }
34                ],
35                "grammars": [
36                        {
37                                "language": "cforall",
38                                "scopeName": "source.cfa",
39                                "path": "./syntaxes/cfa.tmLanguage.json"
40                        }
41                ]
42        }
43}
Note: See TracBrowser for help on using the repository browser.