-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "language-cython",
"displayName": "Language-Cython",
"description": "Syntax highlighter for Cython",
"homepage": "https://github.com/guyskk/language-cython-for-vscode",
"repository": "https://github.com/guyskk/language-cython-for-vscode",
"version": "0.0.8",
"publisher": "guyskk",
"icon": "images/cython-logo.png",
"license": "MIT",
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "cython",
"aliases": [
"Cython",
"cython"
],
"extensions": [
".pyx",
".pxi",
".pxd"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "cython",
"scopeName": "source.cython",
"path": "./syntaxes/Cython.tmLanguage"
}
]
}
}