Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/latex/package.json
5242 views
1
{
2
"name": "latex",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "*"
10
},
11
"scripts": {
12
"update-grammar": "node ./build/update-grammars.js"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"languages": [
17
{
18
"id": "tex",
19
"aliases": [
20
"TeX",
21
"tex"
22
],
23
"extensions": [
24
".sty",
25
".cls",
26
".bbx",
27
".cbx"
28
],
29
"configuration": "latex-language-configuration.json"
30
},
31
{
32
"id": "latex",
33
"aliases": [
34
"LaTeX",
35
"latex"
36
],
37
"extensions": [
38
".tex",
39
".ltx",
40
".ctx"
41
],
42
"configuration": "latex-language-configuration.json"
43
},
44
{
45
"id": "bibtex",
46
"aliases": [
47
"BibTeX",
48
"bibtex"
49
],
50
"extensions": [
51
".bib"
52
]
53
},
54
{
55
"id": "cpp_embedded_latex",
56
"configuration": "latex-cpp-embedded-language-configuration.json",
57
"aliases": []
58
},
59
{
60
"id": "markdown_latex_combined",
61
"configuration": "markdown-latex-combined-language-configuration.json",
62
"aliases": []
63
}
64
],
65
"grammars": [
66
{
67
"language": "tex",
68
"scopeName": "text.tex",
69
"path": "./syntaxes/TeX.tmLanguage.json",
70
"unbalancedBracketScopes": [
71
"keyword.control.ifnextchar.tex",
72
"punctuation.math.operator.tex"
73
]
74
},
75
{
76
"language": "latex",
77
"scopeName": "text.tex.latex",
78
"path": "./syntaxes/LaTeX.tmLanguage.json",
79
"unbalancedBracketScopes": [
80
"keyword.control.ifnextchar.tex",
81
"punctuation.math.operator.tex"
82
],
83
"embeddedLanguages": {
84
"source.cpp": "cpp_embedded_latex",
85
"source.css": "css",
86
"text.html": "html",
87
"source.java": "java",
88
"source.js": "javascript",
89
"source.julia": "julia",
90
"source.lua": "lua",
91
"source.python": "python",
92
"source.ruby": "ruby",
93
"source.ts": "typescript",
94
"text.xml": "xml",
95
"source.yaml": "yaml",
96
"meta.embedded.markdown_latex_combined": "markdown_latex_combined"
97
}
98
},
99
{
100
"language": "bibtex",
101
"scopeName": "text.bibtex",
102
"path": "./syntaxes/Bibtex.tmLanguage.json"
103
},
104
{
105
"language": "markdown_latex_combined",
106
"scopeName": "text.tex.markdown_latex_combined",
107
"path": "./syntaxes/markdown-latex-combined.tmLanguage.json"
108
},
109
{
110
"language": "cpp_embedded_latex",
111
"scopeName": "source.cpp.embedded.latex",
112
"path": "./syntaxes/cpp-grammar-bailout.tmLanguage.json"
113
}
114
]
115
},
116
"repository": {
117
"type": "git",
118
"url": "https://github.com/microsoft/vscode.git"
119
}
120
}
121
122