feature suggestion

 From:  Michael Gibson
1022.13 In reply to 1022.10 
Hi Pilou,

> because after more 20 it's some difficult to remember what makes what :)

For keyboard shorctus that have script code in them, you can put a comment in the code with a note in it. You would put in in surrounded by /* */ , just after the script: part.

For example, if you have a shortcut that has this code in it to remove the last construction line:

code:
script:var gd = moi.geometryDatabase; var clines = gd.getObjects().getConstructionLines(); if ( clines.length > 0 ) gd.removeObject( clines.item(clines.length-1) );


You can modify it to put a comment in it like this:

code:
script:/*Remove the last construction line*/ var gd = moi.geometryDatabase; var clines = gd.getObjects().getConstructionLines(); if ( clines.length > 0 ) gd.removeObject( clines.item(clines.length-1) );


That way you will see your comment when you browse through your shortcut keys under Options.

- Michael