home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / EDITOR / TDE120.ZIP / HELP.H < prev    next >
Encoding:
Text File  |  1991-10-05  |  3.0 KB  |  54 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 the info shown in the intro and pop-up help screen when F1 is pressed.
  10.  */
  11.  
  12. char *credit_screen[] = {
  13. "╒════════════════════════════════════════════════════╕",
  14. "│                                                    │",
  15. "│            tde, the Thomson-Davis Editor           │",
  16. "│                    Version 1.2                     │",
  17. "│                                                    │",
  18. "│      This program is released into the public      │",
  19. "│   domain.  You may use and distribute it freely.   │",
  20. "│                                                    │",
  21. "╘════════════════════════════════════════════════════╛",
  22. NULL
  23. };
  24.  
  25.  
  26. char *help_screen[] = {
  27. "╒════════════════════╡ ^ = Control    # = Shift    @ = Alt  ╞══════════════════╕",
  28. "│     Cursor Movement              Block commands            File commands     │",
  29. "│Home/Home - beg line/column 1  @B - mark box block           F2 - save        │",
  30. "│    End   - end of line        @L - mark line block          F3 - quit        │",
  31. "│ #Enter - char 1 in next line  @U - unmark block             F4 - file        │",
  32. "│ ^Enter - col 1 in next line   @G - group delete block      #F2 - save as     │",
  33. "│   ^PGUP  - top of file        @M - move block              #F4 - edit file   │",
  34. "│   ^PGDN  - bottom of file     @C - copy block                                │",
  35. "│   ^Up    - scroll up          @K - kopy block            Other commands      │",
  36. "│   ^Down  - scroll down        @O - overlay box block    ESC - undo line      │",
  37. "│@Grey Up  - fixed scroll up    @P - print file/block     @=  - dup line       │",
  38. "│@Grey Down- fixed scroll down  @W - write block to file  @-  - delete to eol  │",
  39. "│@Grey Left- page left          @E - block expand tabs    ^T  - delete word    │",
  40. "│@Grey Right-page right         @F - fill box block       ^Y  - delete line    │",
  41. "│    Center - cursor to center                            @D  - delete line    │",
  42. "│   ^Center - line to center    Find/Replace commands     @Y  - undelete lines │",
  43. "│                             ^F5 - toggle search case    @A  - add line       │",
  44. "│     Window Commands         #F5 - find forward          @S  - split line     │",
  45. "│   F9  - split window        #F6 - find backward         @J  - join line      │",
  46. "│  #F9  - resize window        F5 - repeat find forward   @T  - set tabs       │",
  47. "│  ^F9  - zoom window          F6 - repeat find backward  ^]  - paren balance  │",
  48. "│   F10 - next window         #F7 - replace forward       Ins - toggle insert  │",
  49. "│  #F10 - previous window     #F8 - replace backward      @I  - toggle indent  │",
  50. "│  ^F10 - next hidden window                           ^Del - toggle stream del│",
  51. "╘══════════════════════════════════════════════════════════════════════════════╛",
  52. NULL
  53. };
  54.