home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv7.zip / VACPP / IBMCPP / macros / CMD.LXL < prev    next >
Text File  |  1995-05-11  |  2KB  |  44 lines

  1. /***********************************************************
  2. * CMD.LXL - load macro for CMD files (OS/2 command files). *
  3. * See LX.LXL for full details.                             *
  4. ***********************************************************/
  5. trace o
  6.  
  7. /* this is a REXX file */
  8. 'SET DOCTYPE CMD'
  9.  
  10. /* REXX classes - DO NOT MODIFY!! */
  11. 'SET CLASSES CODE SPACE COMMENT OPENCOMMENT ERROR LABEL'
  12.  
  13. /* initial fonts settings */
  14. 'SET FONT.!  BLACK/WHITE                  "Default style"'
  15. 'SET FONT._  BLACK/WHITE                  "Layout blanks"'
  16. 'SET FONT.K  BRIGHT BLUE/WHITE            "REXX keyword"'
  17. 'SET FONT.L  BLACK/WHITE                  "String literal"'
  18. 'SET FONT.H  RED/WHITE                    "Hexadecimal string"'
  19. 'SET FONT.A  BLUE/WHITE                   "Alphanumerics"'
  20. 'SET FONT.C  CYAN/WHITE                   "Comment"'
  21. 'SET FONT.N  RED/WHITE                    "Number"'
  22. 'SET FONT.S  BLUE/WHITE                   "Symbol"'
  23. 'SET FONT.:  UNDERLINE BRIGHT BLUE/WHITE  "Label"'
  24. 'SET FONT.E  REVERSE BRIGHT RED/WHITE     "Error"'
  25.  
  26. /* bracket matching (uses LXMATCH.DLL) */
  27. 'SET ACTION.C-M MATCH'
  28.  
  29. /* update action bar */
  30. 'SET ACTIONBAR.~View.SEPARATOR 2 ;'
  31. 'SET ACTIONBAR.~View.~Labels 3 ;INCLUDE LABEL;SET EXCLUDE;VIEWNAME Labels'
  32. 'SET GROUP. LABEL'
  33. 'SET HELP. 16058'
  34. 'SET ACTIONBAR.~View.~Errors 4 ;INCLUDE ERROR;SET EXCLUDE;VIEWNAME Errors'
  35. 'SET GROUP. ERROR'
  36. 'SET HELP. 16058'
  37.  
  38. 'SET ACTION.C-C ;SET INCLUDE LABEL;SET EXCLUDE;VIEWNAME Labels'
  39.  
  40. /* initial full parse, set incremental & full parse commands */
  41. 'PRREXX ALL'
  42. 'SET PARSER PRREXX'
  43. 'SET FULLPARSE PRREXX REPARSE'
  44.