-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
159 lines (159 loc) · 3.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "run",
"version": "2.0.1",
"publisher": "AlbinBD",
"displayName": "Run++",
"description": "Run C/C++ programs with time limit and input/output redirections.",
"repository": "https://github.com/MdAlbinHossain/Run",
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Debuggers",
"Testing",
"Other"
],
"keywords": [
"Competitve",
"Contest",
"Compile",
"Run",
"C",
"C++"
],
"icon": "logo.png",
"activationEvents": [
"workspaceContains:*.c",
"workspaceContains:*.cpp",
"workspaceContains:*.java",
"workspaceContains:*.python",
"onCommand:run.stop",
"onCommand:run.start"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "run.start",
"title": "Run++",
"icon": "$(play)"
},
{
"command": "run.stop",
"title": "Stop++",
"icon": "$(debug-stop)"
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == c || resourceLangId == cpp || resourceLangId == python || resourceLangId == java",
"command": "run.start",
"group": "navigation"
}
],
"editor/context": [
{
"when": "resourceLangId == c || resourceLangId == cpp || resourceLangId == python || resourceLangId == java",
"command": "run.start",
"group": "navigation"
},
{
"when": "resourceLangId == c || resourceLangId == cpp || resourceLangId == python || resourceLangId == java",
"command": "run.stop",
"group": "navigation"
}
],
"explorer/context": [
{
"when": "resourceLangId == c || resourceLangId == cpp || resourceLangId == python || resourceLangId == java",
"command": "run.start",
"group": "navigation"
},
{
"when": "resourceLangId == c || resourceLangId == cpp || resourceLangId == python || resourceLangId == java",
"command": "run.stop",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "run.start",
"key": "alt+b",
"when": "resourceLangId == c || resourceLangId == cpp || resourceLangId == python || resourceLangId == java"
},
{
"command": "run.stop",
"key": "alt+n"
}
],
"configuration": {
"title": "Run++",
"properties": {
"run.compiler": {
"type": "string",
"default": "g++",
"description": "g++ or full path of the compiler."
},
"run.pythonPath": {
"type": "string",
"default": "python3",
"description": "python3 or full path of the python."
},
"run.compilerArgs": {
"type": "string",
"description": "e.g -O2 -std=c++20"
},
"run.timelimit": {
"type": "number",
"default": 1000,
"maximum": 300000,
"minimum": 100
},
"run.programArgs": {
"type": "string",
"default": ""
},
"run.inputFile": {
"type": "string",
"default": "",
"description": "Full path of the input file. e.g ${workspaceFolder}\\Input.txt"
},
"run.outputFile": {
"type": "string",
"default": "",
"description": "Full path of the output file. e.g ${workspaceFolder}\\Output.txt"
},
"run.outputFileNameSimilarToCodeFile": {
"type": "boolean",
"default": false
},
"run.compilerDirectory": {
"type": "string",
"default": "",
"description": "Full path of the Compiler bin Directory. e.g ${workspaceFolder}\\MinGW64\\bin. (Optional, if already added in environment varible path.)"
}
}
},
"languages": [
{
"id": "run-output",
"mimetypes": [
"text/x-code-output"
]
}
],
"grammars": [
{
"language": "run-output",
"scopeName": "run.output",
"path": "./output.tmLanguage"
}
]
},
"dependencies": {
"tree-kill": "^1.2.2"
},
"license": "MIT"
}