home *** CD-ROM | disk | FTP | other *** search
- /*
- * New editor name: TDE, the Thomson-Davis Editor.
- * Author: Frank Davis
- * Date: June 5, 1991
- *
- * This modification of Douglas Thomson's code is released into the
- * public domain, Frank Davis. You may distribute it freely.
- *
- * This info is displayed in the intro screen and the pop-up help screen
- * when F1 is pressed.
- */
-
-
- #if defined( __UNIX__ )
-
-
- char *credit_screen[] = {
- "+----------------------------------------------------+",
- "| |",
- "| TDE, the Thomson-Davis Editor |",
- "| Version 3.2 |",
- "| November 13, 1993 |",
- "| |",
- "| |",
- "| This program is released into the public |",
- "| domain. You may use and distribute it freely. |",
- "| |",
- "+----------------------------------------------------+",
- NULL
- };
-
- char *help_screen[] = {
- "$ help",
- "-- #-Shift @-Alt ^-Ctrl -|---- Control \\ for menu - +---- File commands ----",
- "----- Word Processing -------+----- Block commands -----+ - dir list - attr",
- " - toggle word wrap | ^B mark box block | F2 save - save as",
- " - left/right margin | ^L mark line block | F3 quit F4 file ",
- " - set paragraph margin | ^X mark stream block | - edit F - next F ",
- " - WordStar format pargr | ^^ unmark block (ctrl 6)| -/- define Grep ",
- " - left justify line | ^M move ^C copy | F12 Repeat Grep ",
- " - right justify line | ^K kopy ^G group del+------- Toggles -------",
- " - center justify line | ^F fill ^O overlay | ^W tog cursor sync ",
- "----- Window Commands -------+ ^S sort ^N number | ^Q eol/tab display ",
- " F8 vertical - resize | - swap BOX w/cursor | - CRLF | LF at eol ",
- " F9 horizontal - zoom | - up case - lo case | ^Z tog trim trailing",
- "F10 next - previous| - hi bit - e-mail | - IGNORE/MATCH case",
- " - next hidden window | - rot13 - fix uue | ^R ruler - indent",
- "------- Misc commands -------+ - trim trailing space | - tog ^Z at eof ",
- " ^A add L ^2 Date stamp| - print file/block | ^T tog inflate tabs ",
- " - join L ^] paren bal | - write block to file | - set ltabs/ptabs ",
- " - dup L - kill eol | ^E block expand tabs | - tog smart tabs ",
- " ^D delete L - 1-3 mark| - block compress tabs +-- Find/Replace/Diff --",
- " ^_ split L - 1-3 goto| - block indent tabs | -/- define find ",
- "ESC undo L - redraw +--------- Macros -------+-+ F5/F6 next/prev find ",
- " ^U undelete L - word del| - record on/off | - define reg exp ",
- " Enter Emacs L | - save - load | F7/- next/prev reg exp",
- " ",
- "F1=Help 2=Save 3=Quit 4=File 5=Find > 6=Find < 7=Regx 8=Vert 9=Horz 10=Next",
- NULL
- };
-
- #else
-
-
- char *credit_screen[] = {
- "┌────────────────────────────────────────────────────┐",
- "│ │",
- "│ TDE, the Thomson-Davis Editor │",
- "│ Version 3.2 │",
- "│ November 13, 1993 │",
- "│ │",
- "│ │",
- "│ This program is released into the public │",
- "│ domain. You may use and distribute it freely. │",
- "│ │",
- "└────────────────────────────────────────────────────┘",
- NULL
- };
-
-
- char *help_screen[] = {
- "$ help",
- "── #-Shift @-Alt ^-Ctrl ─┬── Control \\ for menu ──┬──── File commands ────",
- "───── Word Processing ───────┼───── Block commands ─────┤@F1 dir list @F2 attr",
- " @V toggle word wrap │ @B mark box block │ F2 save #F2 save as",
- "^F6/^F7 left/right margin │ @L mark line block │ F3 quit F4 file ",
- " ^F8 set paragraph margin │ @X mark stream block │#F4 edit F @F4 next F ",
- " ^B WordStar format pargr │ @U unmark block │#F12/^F12 define Grep ",
- " @F8 left justify line │ @M move @C copy │ F12 Repeat Grep ",
- " @F9 right justify line │ @K kopy @G group del├─────── Toggles ───────",
- " @F10 center justify line │ @F fill @O overlay │ ^F1 tog cursor sync ",
- "───── Window Commands ───────┤ @S sort @N number │ ^F2 eol/tab display ",
- " F8 vertical #F9 resize │#@S swap BOX w/cursor │ ^F3 CRLF | LF at eol ",
- " F9 horizontal ^F9 zoom │ @< up case @> lo case │ ^F4 tog trim trailing",
- "F10 next #F10 previous│ @? hi bit #@? e-mail │ ^F5 IGNORE/MATCH case",
- " ^F10 next hidden window │#@< rot13 #@> fix uue │ @R ruler @I indent",
- "─────── Misc commands ───────┤ @T trim trailing space │ @Z tog ^Z at eof ",
- " @A add L ^2 Date stamp│ @P print file/block │ #@T tog inflate tabs ",
- " @J join L ^] paren bal │ @W write block to file │^tab set ltabs/ptabs ",
- " @= dup L @- kill eol │ @E block expand tabs │@tab tog smart tabs ",
- " @D delete L @1-@3 mark│#@C block compress tabs ├── Find/Replace/Diff ──",
- " ^_ split L #@1-#@3 goto│#@I block indent tabs │ #F5/#F6 define find ",
- "ESC undo L ^\\ redraw ├───────── Macros ───────┬─┘ F5/F6 next/prev find ",
- " ^U undelete L ^T word del│ @F3 record on/off │ #F7 define reg exp ",
- " Enter Emacs L │ #F1 save #F3 load │ F7/@F7 next/prev reg exp",
- "#Enter next L @Q Quit│ ^P pause │ #F11/F11 def/rep diff ",
- "^Enter beg next L @H Help│ ^ESC clear macros │ #F8 replace string ",
- NULL
- };
- #endif
-