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

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 622b8ac was a768220, checked in by Thierry Delisle <tdelisle@…>, 6 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.