Hello,
The format code button is great but unfortunately it formats it in a way that I have never much liked.  Would you be willing to add in custom auto formatting rules?  Your current auto format uses:
 
if (stream.readable()) {
    stream.readNext((byte*)BigBuf, 512);     // Buffer has been read, now we can put more data in it
}
Where I much prefer:
if (stream.readable())
{
   stream.readNext((byte*)BigBuf, 512);     // Buffer has been read, now we can put more data in it
}
It might seem silly but it is the way I have always formatted my code and it is much easier for me to read with my own formatting.  It's not a complaint so much as a suggestion of something that would be really nice to have.  Thank you :)
                 
             
        
Hello,
The format code button is great but unfortunately it formats it in a way that I have never much liked. Would you be willing to add in custom auto formatting rules? Your current auto format uses:
if (stream.readable()) { stream.readNext((byte*)BigBuf, 512); // Buffer has been read, now we can put more data in it }Where I much prefer:
if (stream.readable()) { stream.readNext((byte*)BigBuf, 512); // Buffer has been read, now we can put more data in it }It might seem silly but it is the way I have always formatted my code and it is much easier for me to read with my own formatting. It's not a complaint so much as a suggestion of something that would be really nice to have. Thank you :)