home *** CD-ROM | disk | FTP | other *** search
- * This is the splot editor help file
- *
- * Cursor Motion Keys
- *
- *left arrow left one space
- *right arrow right one space
- *up arrow up one line
- *down arrow down one line
- *end end of line
- *home beginning of line
- *PgDn scroll down one screen
- *PgUp scroll up one screen
- *Center Key fast motion toggle
- *CTRL left left one word
- *CTRL right right one word
- *CTRL up scroll up five lines
- *CTRL down scroll down five lines
- *CTRL end end of file
- *CTRL PgDn end of file
- *CTRL home beginning of file
- *CTRL PgUp beginning of file
- *
- * Editor Control Keys <PgDn for more>
- *
- *CTRL A set place mark
- *CTRL B bracket match {, (, [, <, or /*
- *CTRL C change case
- *CTRL D delete character
- *DEL delete character
- *CTRL E delete to end of line
- *CTRL F find next occur of search str
- *CTRL G go. Execute code
- *CTRL H destructive backspace
- *CTRL I tab
- *CTRL J join next line to current line
- *CTRL K cut current line at cursor
- *CTRL L return to prev set place mark
- *CTRL M insert new line
- *CTRL N edit next file in ring
- *CTRL O
- *CTRL P edit previous file in ring
- *CTRL Q quit without saving file
- *CTRL R redo previous undo
- *CTRL S swap current and next character
- *CTRL T toggle insert/replace
- *CTRL 0 toggle insert/replace
- *CTRL U undo changes to last line
- *CTRL V toggle view function mode
- *CTRL W write file to disk
- *CTRL X delete line
- *CTRL BCK delete line
- *CTRL Y
- *CTRL Z zap word
- *CTRL DEL zap word
- *ALT A alternate binary rep
- *ALT E execute last macro
- *ALT I insert coordinates
- *ALT J join next line to current line
- *ALT K enter next char literally
- *ALT P position curs at prev location
- *ALT Q restore a line from undo record
- *ALT R reflow paragraph
- *ALT S split line at cursor
- *ALT T teach new macro
- *ALT V view only changed lines
- *ALT W view lines containing search str
- *ALT X enter control character
- *ALT Z zero command multiplier
- *ALT 0-9 enter command multiplier
- *
- * Block Manipulation Keys
- *
- *ALT B mark column block start, end
- *ALT C copy marked block
- *ALT D delete marked block
- *ALT F fill B marked block with char
- *ALT L mark LINE(s) start, end
- *ALT M move marked block
- *ALT O overlay B marked block
- *ALT U unmark block
- *ALT Y yank back deleted block
- *CTRL_ shift B marked block right
- *CTRL^ shift B marked block left
- *
- * Command Line Operations (requires
- * text input so terminate line with a
- * return)
- *
- * esc goto or leave command line
- *
- * Change current line
- *number goto line number n
- *+number down n lines
- *-number up n lines
- *
- * Change current column offset
- *@number start at column n
- *@+number scroll left n columns
- *@-number scroll right n columns
- *
- * Search and Replace.
- * find string str (/ actually any punct)
- */str1[/-bclr] return
- * replace str1 with str2
- *c/str1/str2[/-bclr] return
- *
- * The optional search suffixes are
- */- search up (down is default)
- */b search marked block only
- */c ignore case
- */l loop through all files
- */r interpret as regular exp
- *
- *For regular exp the following symbols
- *have special meaning
- *^ start of line
- *$ end of line
- *. any character
- *\ quote next character
- ** match zero or more times
- *+ match one or more times
- *[aei0-9] match a,e,i and 0 through 9
- *[^aei0-9] match anything but a,e,i and 0 through 9
- *( ) sub expression
- *a(ab)*b matches ab aabb aababb aabababb etc.
- *
- * Add other files to ring
- *e name1,name2,...[-r]
- * The optional edit suffix
- *-r read only
- *
- * display directory and choose one to edit
- * e [*.*]
- * activate this help file
- * ?
- * insert named file at current location
- * m name
- * rename current file to name
- * r name
- * show and modify editor configuration
- * cfg
- * exit without saving changes
- * quit
- * previous command line entered
- * up arrow
- * next command line entered
- * down arrow
- * send command to operating system
- * os command
- * also any unrecognized string
- *
- *
- *
- * THIS PROGRAM WAS WRITTEN BY
- * THOMAS W. STEINER
- * COPYRIGHT 1992 -1994, ALL RIGHTS RESERVED
- * THERE IS NO WARRANTY OF ANY KIND.
- * USE AT YOUR OWN RISK.
- * THIS IS NOT FREEWARE.
- * TO REGISTER YOUR COPY SEND $50 TO
- *
- * T.W. Steiner
- * 312 - 1230 Haro St.
- * Vancouver, BC, V6E - 4J9
- * Canada
- * e-mail steiner@sfu.ca
- *
- * Registered users will receive upgrades
- * as they become available
- *
-