forked from samwillis/python-inline-source
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.48 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.48 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "python-inline-source-2",
"displayName": "Python Inline Source Syntax Highlighting 2",
"description": "Inline syntax highlighting for Python using type hints.",
"version": "0.0.4",
"publisher": "jurooravec",
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/jurooravec/python-inline-source-2.git",
"directory": "vscode-python-inline-source"
},
"contributes": {
"languages": [
{
"id": "python",
"aliases": [
"python"
],
"extensions": [
".py",
".py3"
]
}
],
"grammars": [
{
"injectTo": [
"source.python"
],
"scopeName": "inline.python-inline-source",
"path": "./syntaxes/python-inline-source.json",
"embeddedLanguages": {
"meta.embedded.inline.markdown": "markdown",
"meta.embedded.inline.html": "html",
"meta.embedded.inline.django_html": "django_html",
"meta.embedded.inline.django_txt": "django_txt",
"meta.embedded.inline.jinja": "jinja",
"meta.embedded.inline.jinja_html": "jinja_html",
"meta.embedded.inline.css": "css",
"meta.embedded.inline.scss": "scss",
"meta.embedded.inline.less": "less",
"meta.embedded.inline.sass": "sass",
"meta.embedded.inline.stylus": "stylus",
"meta.embedded.inline.js": "javascript",
"meta.embedded.inline.jsx": "jsx",
"meta.embedded.inline.ts": "typescript",
"meta.embedded.inline.tsx": "tsx",
"meta.embedded.inline.coffeescript": "coffeescript",
"meta.embedded.inline.sql": "sql",
"meta.embedded.inline.json": "json",
"meta.embedded.inline.yaml": "yaml",
"meta.embedded.inline.graphql": "graphql",
"meta.embedded.inline.xml": "xml",
"meta.embedded.inline.python": "python",
"meta.embedded.inline.glsl": "glsl"
}
}
]
}
}