jung6717 / arduino

Automatically exported from code.google.com/p/arduino
0 stars 0 forks source link

Be able to set a region in a defined piece of code #126

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Hello Devs,

I am used to do some programming in VB .NET. In VB .NET there is the
possibility to place a piece of code into a region. This region of code can
be fold up (minimized). The advantage of this is you can make your arduino
look more clear. I know There is also the possibility to use tabs but I
really like the idea!

It would also be great if every void, function, if, for..next ect.... would
have the fold function without setting a region.

Region example:

#Region "Serial Communication"

void setup() {
 Serial.begin(9600);
}

void loop() {
 Serial.println("Hello World!");
}

#End Region

http://www.vbdotnetheaven.com/UploadFile/vbdev123/region08082009093337AM/region.
...

Here is the discussion on the forum:
http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1254495358

Cheers

Original issue reported on code.google.com by ArduinoE...@gmail.com on 8 Oct 2009 at 5:46