-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "cfxlanguage",
"displayName": "ANSYS CFX Command Language (CCL)",
"description": "Language Support for ANSYS CFX based scripts (CFX Command Language, CFX Expression Language, etc.). Applies for pre- and post-processing of CFX simulations.",
"version": "1.1.1",
"publisher": "u2berggeist",
"engines": {
"vscode": "^0.19.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/u2berggeist/ANSYS_CFX"
},
"author": {
"name": "u2berggeist"
},
"contributes": {
"languages": [
{
"id": "ccl",
"aliases": [
"CCL",
"CEL",
"CFX Command Language"
],
"extensions": [
".ccl",
".cst"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ccl",
"scopeName": "source.ccl",
"path": "./syntaxes/ccl.tmLanguage.json"
}
]
}
}