I would like to propose the ability to have scriptable control for code folding markers. This in my opinion would enable easier management of code. For e.g.
SelectableMatrix =
Expr(
ResMat = {};
// loop through each row
For( i = 1, i <= nR, i++,
ResMat[i] = {};
// loop through each column getting values
For( r = 1, r <= nC, r++,
ResMat[i][r] = TB1[CheckBoxBox( r )] << get( i )
);
);
ResMat = Matrix( ResMat );
);
The ability to then use actions like the following to contract and expand the code will make it easier to manage the code.
SelectableMatrix << expand;
SelectableMatrix << contract;