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

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since a16764a6 was 9452a2c, checked in by Thierry Delisle <tdelisle@…>, 8 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.