Improve the process for GNU tools
[minix3.git] / external / bsd / nvi / docs / internals / openmode
blobc64b76774b3e89a3b795ab61d6775bfc91da0bef
1         @(#)openmode    8.1 (Berkeley) 10/29/94
3 Open mode has the following special behaviors:
5 z, ^F, ^B:
6         If count is not specified, it shall default to the window
7         edit option - 2.
9         Write lines from the edit buffer starting at:
11                 (the current line) - ((count - 2) / 2)
13         until:
15                 (((count + 1) / 2) * 2) - 1
16         
17         lines, or the last line in the edit buffer has been written.  A
18         line consisting of the smaller of the number of columns in the
19         display divided by two or 40 ``-'' characters shall be written
20         immediately before and after the specified is written.  These two
21         lines shall count against the total number of lines to be written.
22         A blank line shall be written after the last line is written.
24         z, ^F and ^B all behave identically.
26 ^D:     Display the next scroll value lines, change the current line.
28 ^U:     Change the current line, do nothing else.
30 ^E, ^Y: Do nothing.
32 ^L:     Clear the screen and redisplay the current line.
34 H, L, M:
35         Move to the first nonblank of the current line and do nothing
36         else.