home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Languages / MS Cobol4.5 / INIT / TOOLS.PRE < prev   
Encoding:
INI File  |  1990-08-06  |  3.9 KB  |  139 lines

  1. [pwb]
  2. ;
  3. ; Predefined and example Programmer's Work Bench Macros
  4. ;
  5. ; assignments
  6. ; Displays the current assignments pseudo-file. (Formerly called "help").
  7. ;
  8. assignments:=arg "?" assign <
  9. assignments:f10
  10. ;
  11. ; rawoutput
  12. ; Switches the current window to the compile log to view the raw compile
  13. ; output.
  14. ;
  15. rawoutput:=arg "<compile>" setfile
  16. rawoutput:alt+F3
  17. ;
  18. ; spell
  19. ; Invokes the Microsoft Word 4.0 spelling checker on the current file. (Only
  20. ; available under DOS).
  21. ;
  22. spell:=arg "spell-am " curfile shell
  23. spell:ctrl+f7
  24. ;
  25. ; undotoggle
  26. ; Toggling undo. Repeatedly executing this macro undoes and redoes the most
  27. ; recent editing change.
  28. ;
  29. undotoggle:=meta undo +> undo
  30. undotoggle:ctrl+bksp
  31. ;
  32. ;
  33. ; build switch examples
  34. ;
  35. ; The following are examples of error strings.  If messages output to the
  36. ; compile window match these strings they will be counted and found by
  37. ; nextmsg (Search.Next Error, etc.).  The compiler and utility messages 
  38. ; will be added by the extensions.  If you do not load the extensions,
  39. ; but want to match these messages in the compile window, add these to 
  40. ; your tools.ini.
  41. ;
  42. ;
  43. ;    pwbrmake
  44. build: message "^pwbrmake: [^U]+U[124]"
  45. ;    bind
  46. build: message "^BIND : [^U]+U[124]"
  47. ;    C
  48. build: message "^\\(\\:p\\)(\\(\\:z\\)) : [^C]+C[124]" file line
  49. build: message "^[^C]+C[124][0-9]+: "
  50. ;    C or FORTRAN
  51. build: message "^[^D]+D[124][0-9]+ : "
  52. ;    FORTRAN
  53. build: message "^\\(\\:p\\)(\\(\\:z\\)) : [^F]+F[124]" file line
  54. build: message "^[^F]+F[1234][0-9]+: "
  55. ;    COBOL
  56. build: message "^\\(\\:p\\)\\:b\\([0-9]+\\) \\([0-9]+\\): \\*[ 0-9][ 0-9][ 0-9]" file line col
  57. ;    BASIC
  58. build: message "^\\(\\:p\\)([ \t]*\\(\\:z\\),[ \t]*\\(\\:z\\)) : " file line col
  59. ;    MASM
  60. build: message "^\\(\\:p\\)(\\([0-9]+\\))[ \t]*:[ \t]*[^A]+A[12456]" file line
  61. ;    H2INC
  62. build: message "^\\(\\:p\\)(\\(\\:z\\)) : [^H]+HI[124]" file line
  63. build: message "^[^H]+HI[124][0-9]+: "
  64. ;    general
  65. build: message "^fatal error"
  66. ;    generic OS/2 system messages (SYS and NET are already in defaults)
  67. build: message "^[A-Z][A-Z][A-Z]\\:d\\:d\\:d\\:d:\\:b"
  68. ;
  69. ;
  70. ;   Default colors.
  71. ;
  72. ; The following are the color settings that the PWB uses by default.  On
  73. ; some hardware configurations, the PWB may incorrectly identify your
  74. ; monochrome video as color (or vice-versa).  If the PWB screen looks
  75. ; wrong, try using the color set appropriate for your hardware
  76. ;
  77. ; Colors for a Color system
  78. ;
  79. ;    color:        background 07
  80. ;    color:        hilitectrl 07
  81. ;    color:            greyed 78
  82. ;    color:           enabled 70
  83. ;    color:          disabled 78
  84. ;    color:             alert 70
  85. ;    color:         dialogbox 70
  86. ;    color:        pushbutton 70
  87. ;    color:        buttondown 07
  88. ;    color:           listbox 70
  89. ;    color:         scrollbar 70
  90. ;    color:          elevator 07
  91. ;    color:           menubox 70
  92. ;    color:              menu 70
  93. ;    color:          menuselected 07
  94. ;    color:        menuhilite 7f
  95. ;    color:         menuhilitesel 0f
  96. ;    color:         itemhilitesel 0f
  97. ;    color:           dialogaccel 7f
  98. ;    color:        dialogaccelbor 7f
  99. ;    color:            shadow 08
  100. ;    color:              text 17
  101. ;    color:         highlight 1f
  102. ;    color:              info 3f
  103. ;    color:         selection 71
  104. ;    color:            border 07
  105. ;    color:            status 70
  106. ;    color:           scratch 07
  107. ;
  108. ;
  109. ; Colors for a Monochrome system
  110. ;
  111. ;    color:        background 07
  112. ;    color:        hilitectrl 07
  113. ;    color:            greyed 70
  114. ;    color:           enabled 70
  115. ;    color:          disabled 70
  116. ;    color:             alert 70
  117. ;    color:         dialogbox 70
  118. ;    color:        pushbutton 70
  119. ;    color:        buttondown 07
  120. ;    color:           listbox 70
  121. ;    color:         scrollbar 70
  122. ;    color:          elevator 07
  123. ;    color:           menubox 70
  124. ;    color:              menu 70
  125. ;    color:          menuselected 07
  126. ;    color:        menuhilite 7f
  127. ;    color:         menuhilitesel 0f
  128. ;    color:         itemhilitesel 0f
  129. ;    color:           dialogaccel 7f
  130. ;    color:        dialogaccelbor 7f
  131. ;    color:            shadow 07
  132. ;    color:              text 07
  133. ;    color:         highlight 0f
  134. ;    color:              info 70
  135. ;    color:         selection 70
  136. ;    color:            border 07
  137. ;    color:            status 70
  138. ;    color:           scratch 07
  139.