You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@
24
24
"keywords": [
25
25
"processing",
26
26
"pde",
27
-
"procesing.py",
27
+
"processing.py",
28
28
"processing-python",
29
29
"language",
30
30
"snippets",
@@ -205,7 +205,12 @@
205
205
"processing.shouldGiveDiagnostics": {
206
206
"type": "boolean",
207
207
"default": false,
208
-
"description": "If the extension should provide diagnostics (via processing-java)"
208
+
"description": "If the extension should provide diagnostics (via processing-java). Note that this feature is quite slow."
209
+
},
210
+
"processing.shouldSendSigint": {
211
+
"type": "boolean",
212
+
"default": false,
213
+
"description": "If the extension should send sigint to the terminal stop the current running processing program before running the new one by sending \"\\x03\" (^C). If true, it essentially presses ctrl+c for you."
209
214
},
210
215
"processing.runPathQuotes": {
211
216
"type": "string",
@@ -224,7 +229,7 @@
224
229
"processing.py.javaPath": {
225
230
"type": "string",
226
231
"default": "java",
227
-
"description": "Path to Java. Leave default if you've added java to your path, otherwise enter the path to `java` here. Example: `/usr/bin/java` for Unix, or `C:\\Program Files\\Java\\jdk1.8.0_202\\bin\\javac.exe` for Windows."
232
+
"description": "Path to Java. Leave default if you've added java to your path, otherwise enter the path to `java` here. Example: `/usr/bin/java` for Unix, or potentially `C:\\Program Files\\Java\\jdk1.8.0_202\\bin\\javac.exe` for Windows."
0 commit comments