flintriver1973 - 2008-09-02

Is is possible to put two words separated by a space for keywords under folder open/close?  See the example code below..  FOR as a keyword messes it up because of the WAIT FOR, but if I could set END, FOR as my close "keyword" it would fold correctly on the FOR statement...

       FOR, 'I' = 1 THRU 'FAULT_COUNT', THEN $
        PERFORM, 'DISPLAY_FAIL_MESSAGE' $   
        INPUT, GO-NOGO $
        IF, NOGO, THEN $
           CALCULATE, 'TEST_NUMBER' =
                              'FAIL_USER_ID'('I') $
                   OUTPUT, FAULT ID L('TEST_NUMBER') $  
  
           WAIT FOR, MANUAL INTERVENTION $
        END, IF $
            END, FOR $