Auto Format similar to Arduino IDE..

I downloaded Arduino IDE 1.6.6 then I used Tool > Auto Format.. Auto Format looked well than in Processing.. I hope that Processing next release version include this feature..
Arduino: int a = 6;
Processing: int a=6;

Tagged:

Answers

  • edited December 2015 Answer ✓

    It's just that in Processing's IDE (PDE), it tries to please many styles of writing code.
    In case of int a=6;, it simply respects that style decision.
    And if we type int a = 6;, it's gonna respect that the same way, leaving both styles in peace.

Sign In or Register to comment.