Editor: Put ; left to the code, not left of the line
Posted: Fri Jul 08, 2022 3:30 am
I don't know if I'm the only one, but I would prefer if the editor would put the ; left of the code instead the left of the line when pressing [Ctrl]+B.
Behaviour now:
New behaviour:
I know I can edit the code of the editor myself, but I would also like to know if I'm the only one who thinks this or not. Maybe it's worth a change. Also the the indentation feature ([Ctrl]+I) moves the outcommented lines far to the right now, which is very unreadable imo.
Behaviour now:
Code: Select all
For a=1 To 10
If a>5
; If a=7
; Debug "a=7"
; EndIf
Debug "a>5"
EndIf
Next
Code: Select all
For a=1 To 10
If a>5
;If a=7
;Debug "a=7"
;EndIf
Debug "a>5"
EndIf
Next