Hi folks,
I have to found two small glitches in the RS editor and the FP editor that are really annoying:
- RS editor
Is it possible to add a function in RS editor that shows tabs and spaces like in other editors, mainly for indentation? Right now I can’t detect how indentations have been made, and later in the FP editor or production manager the indentation is not consistent, because spaces and tabs have been used in an uncoordinated manner
Best would be an icon to show/hide invisible control symbols like tabes/spaces via an icon in the small icon menu of the editor window.
- FP editor
It is not possible to select an empty line in the FP editor on the touchscreen to paste something in there. Therefore lotsa programmers simply fill empty lines with an exclamation mark, which is later selectable. The code looks like this then (in this case you can also see the indentation problem of 1.):
–
!************************************************
!
Reset O_CycleFinished;
Reset pauseAllowed;
!
CrashSensorPressureAirLow;
!
CutWire;
!
Set pauseAllowed;
!
SimCheck;
!
CheckInput I_JobComm_1,1,“Wait for I_JobComm_1=1”;
Reset pauseAllowed;
Waitsignal AllocateZoneA;
!
InitTrap;
InitWeldSourceCheck;
WeldSourceCheck Active;
!
CrashSensorPressureAirHi;
!
–
which I don’t really like and it eats more bytes than needed. Is it possible to make empty lines in FP selectable?