Have you tried Code Assit available in Magik Devel...

Have you tried Code Assit available in Magik Development Tools?The Code Assist in MDT uses three different sources for getting proposals from. The first is Method Finder, as in Igor customization. It proposes code (exemplars, methods, global variables etc.) already transmitted into the session. The second is currently edited Magik file. In contrary to Igor implementation it major goal is to compute and propose local variables. The last one is internal index of all Magik files in the workspace. It proposes code (again: exemplars, methods, global variables etc.) which has not been already transmitted. Code Assist presents also detail information for each proposal: its public comment and pragma classification.Additionally Code Assist in MDT recognizes invocation context. If you invoke it in empty line it displays list of exemplars, global variables and local variables (if the line is located within a method body) and skips unnecessary method proposals. If you invoke it after a dot character it rather displays list of methods.These features really speed up the code implementation. The detail information about Code Assist and other is available in MDT help.

0