Skip to content

Instantly share code, notes, and snippets.

@kickbase
Created February 10, 2021 03:48
Show Gist options
  • Save kickbase/ae9404a978e24c9433b48bd2209e1ac1 to your computer and use it in GitHub Desktop.
Save kickbase/ae9404a978e24c9433b48bd2209e1ac1 to your computer and use it in GitHub Desktop.
[Proccessing] VSCode setting file for M1 Mac.
{
"version": "2.0.0",
"tasks": [
{
"label": "Run",
"command": "/usr/local/bin/processing-java",
"type": "process",
"args": [
"--force",
"--sketch=${workspaceFolder}/${relativeFileDirname}",
"--run"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}