home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / editors / tde150.arj / HELP.H < prev    next >
Text File  |  1992-04-01  |  3KB  |  55 lines

  1. /*
  2.  * New editor name:  tde, the Thomson-Davis Editor.
  3.  * Author:           Frank Davis
  4.  * Date:             June 5, 1991
  5.  *
  6.  * This modification of Douglas Thomson's code is released into the
  7.  * public domain, Frank Davis.  You may distribute it freely.
  8.  *
  9.  * This is info shown in the intro screen and the pop-up help screen
  10.  * when F1 is pressed.
  11.  */
  12.  
  13. char *credit_screen[] = {
  14. "┌────────────────────────────────────────────────────┐",
  15. "│                                                    │",
  16. "│            tde, the Thomson-Davis Editor           │",
  17. "│                    Version 1.5                     │",
  18. "│                                                    │",
  19. "│      This program is released into the public      │",
  20. "│   domain.  You may use and distribute it freely.   │",
  21. "│                                                    │",
  22. "└────────────────────────────────────────────────────┘",
  23. NULL
  24. };
  25.  
  26.  
  27. char *help_screen[] = {
  28. "┌──── Word Processing ───────┬───── Block commands ─────┬──── File commands ───┐",
  29. "│ ^F6 - set left margin      │ @B - mark box block      │ @F1 - dir list       │",
  30. "│ ^F7 - set right margin     │ @L - mark line block     │  F2 - save           │",
  31. "│ ^F8 - set paragraph margin │ @X - mark stream block   │  F3 - quit           │",
  32. "│ @F7 - format paragraph     │ @U - unmark block        │  F4 - file           │",
  33. "│ ^B  - format from cursor   │ @G - group delete block  │ #F2 - save as        │",
  34. "│ @F8 - left justify line    │ @M - move block          │ @F2 - file attributes│",
  35. "│ @F9 - right justify line   │ @C - copy block          │ #F4 - edit new file  │",
  36. "│@F10 - center justify line  │ @K - kopy block          ├──────── Macro ───────┤",
  37. "├──── Window Commands ───────┤ @O - overlay box block   │ @F3 - record on/off  │",
  38. "│  F8  - split vertical      │ @F - fill box block      │ #F1 - save to file   │",
  39. "│  F9  - split horizontal    │ @N - number box block    │ #F3 - load macro file│",
  40. "│ #F9  - resize window       │ @E - block expand tabs   │^ESC - clear macros   │",
  41. "│ ^F9  - zoom window         │ @T - trim trailing space ├─── Misc commands ────┤",
  42. "│  F10 - next window         │ @P - print file/block    │ @A  - add line       │",
  43. "│ ^F10 - next hidden window  │ @W - write block to file │ @S  - split line     │",
  44. "│ #F10 - previous window     │ @< - block to upper case │ @J  - join line      │",
  45. "├────── Find/Replace ────────┤ @> - block to lower case │ @=  - dup line       │",
  46. "│ #F5 - find forward         │ @? - block strip hi bit  │ ESC - undo line      │",
  47. "│ #F6 - find backward        ├─────────── Toggles ──────│ ^U  - undelete lines │",
  48. "│  F5 - repeat find forward  │ ^F1 - toggle cursor sync └──────────────────────┤",
  49. "│  F6 - repeat find backward │ ^F2 - toggle eol         @V - toggle word wrap  │",
  50. "│ #F7 - replace forward      │ ^F3 - toggle CRLF        @I - toggle indent mode│",
  51. "│ #F8 - replace backward     │ ^F4 - toggle trim        @Z - toggle ^Z at eof  │",
  52. "└────────────────────────────┘ ^F5 - toggle search case  @R - toggle ruler    ─┘",
  53. NULL
  54. };
  55.