Skip to content

Instantly share code, notes, and snippets.

@icq4ever
Last active February 22, 2017 09:08
Show Gist options
  • Select an option

  • Save icq4ever/31247ddef94ce83d8331adde46e21d7b to your computer and use it in GitHub Desktop.

Select an option

Save icq4ever/31247ddef94ce83d8331adde46e21d7b to your computer and use it in GitHub Desktop.
VisualStudioCode Processing extension setup
  1. download visualStudioCode from here
  2. open PDE file
  3. [Ctrl + Shift + P] and type task
  4. select Tasks : Configure Task Runner
  5. replace with below
{
    "version": "0.1.0",
    "command": "processing-java",
    "isShellCommand": true,
    "showOutput": "never",
    "args": [
        "--force",
        "--sketch=${fileDirname}",      // replaced from `workspaceRoot`. due to works when working directory is root of git repository only
        "--output=${fileDirname}\\out", // replace `workspaceRoot` repeatly
        "--run"
    ]
}
  1. [Ctrl + Shift + B] : build processing.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment