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

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since ae47a23 was 9452a2c, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Added to source the vscode tools

  • Property mode set to 100644
File size: 698 bytes
Line 
1{
2        "name": "cforall",
3        "version": "0.1.0",
4        "displayName": "Cforall 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.svg",
12        "categories": [
13                "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                                        ".cf"
29                                ],
30                                "configuration": "./cforall.configuration.json"
31                        }
32                ],
33                "grammars": [
34                        {
35                                "language": "cforall",
36                                "scopeName": "source.cf",
37                                "path": "./syntaxes/cfa.tmLanguage"
38                        }
39                ]
40        }
41}
Note: See TracBrowser for help on using the repository browser.