Mohawk70 wrote:
Anybody else have this issue or a fix ?
1st of all, I think you use the ";>" and ";<" the wrong way, because ";>" usualy increases the indent and ";<" decrease the indent.
Further I did not get the same result as you, because ";{", ";[" and ";(" are not defined as standard PB-Indentations (as far as I know) and so they are not defined in my BP-IDE to generate an indentation.
But I detected a very annoying behavior as well, since the IDE auto-aligns semicolon.
Foldable code like this does not generate the result you would expect from it:
Code:
;> Section Name / Description
For i = 1 To 100
j = j + 1
Next
;<
;> Sub-Section Name / Description
For i = 1 To 100
j = j + 1
Next ;<
;> Sub-Sub-Section Name / Description
For i = 1 To 100
j = j + 1
Next
;<
I already asked on the german forum for a way to disable this really obstructive 'feature', but no one seems to have a solution to deactivate it any more.
Maybe this new 'miss'-feature is also responsible for the Problems you've mentioned.