Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.4 KB

README.md

File metadata and controls

26 lines (20 loc) · 1.4 KB

Processing (pde) formatter for VSCode

Version Downloads Ratings

Usage

It uses the Formatting API so use the following command for formating:

  • On Windows Shift + Alt + F
  • On Linux Ctrl + Shift + I
  • On Mac Shift + Option + F

It is recommended to use Insert Spaces for the best possible experience.

Features

  • Handles spaces between operators, brackets, and so on.
  • Handles horizontal spacing.
  • Edit formatting settings to your preferences.

Formatting examples

Before After
if( i==k){} ; if (i == k) {};
int k=i&1; int k = i & 1;
if (i == k &&
i != 0)
myFunction();
if (i == k &&
     i != 0)
     myFunction();