I have a problem where my 2nd or 3rd nested tab will be too long. ex:
for(x=0; x<y; x++)
{
for(y=0; y<x; y++)
{
//line of code starts here
//next line starts here
}
}
it seems that the comments are tabbed over twice (from left bracket) even though i pressed tab only once. my 3rd nested tab will be tabbed over three times (from first line of code). is there a way to fix this, or do I just have to deal w/ it?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have a problem where my 2nd or 3rd nested tab will be too long. ex:
for(x=0; x<y; x++)
{
for(y=0; y<x; y++)
{
//line of code starts here
//next line starts here
}
}
it seems that the comments are tabbed over twice (from left bracket) even though i pressed tab only once. my 3rd nested tab will be tabbed over three times (from first line of code). is there a way to fix this, or do I just have to deal w/ it?
code formatting totally botched the point. just ignore the example i gave.