]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/window/cmd2.c
This commit was generated by cvs2svn to compensate for changes in r72571,
[FreeBSD/FreeBSD.git] / usr.bin / window / cmd2.c
1 /*
2  * Copyright (c) 1983, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Edward Wang at The University of California, Berkeley.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  */
36
37 #ifndef lint
38 static char sccsid[] = "@(#)cmd2.c      8.1 (Berkeley) 6/6/93";
39 static char rcsid[] = "@(#)$FreeBSD$";
40 #endif /* not lint */
41
42 #include "defs.h"
43
44 char *help_shortcmd[] = {
45         "#       Select window # and return to conversation mode",
46         "%#      Select window # but stay in command mode",
47         "escape  Return to conversation mode without changing window",
48         "^^      Return to conversation mode and change to previous window",
49         "c#      Close window #",
50         "w       Open a new window",
51         "m#      Move window #",
52         "M#      Move window # to its previous position",
53         "s#      Change the size of window #",
54         "S#      Change window # to its previous size",
55         "^Y      Scroll up one line",
56         "^E      Scroll down one line",
57         "^U      Scroll up half a window",
58         "^D      Scroll down half a window",
59         "^B      Scroll up a full window",
60         "^F      Scroll down a full window",
61         "h       Move cursor left",
62         "j       Move cursor down",
63         "k       Move cursor up",
64         "l       Move cursor right",
65         "y       Yank",
66         "p       Put",
67         "^S      Stop output in current window",
68         "^Q      Restart output in current window",
69         "^L      Redraw screen",
70         "^Z      Suspend",
71         "q       Quit",
72         ":       Enter a long command",
73         0
74 };
75 char *help_longcmd[] = {
76         ":alias name string ...  Make `name' an alias for `string ...'",
77         ":alias                  Show all aliases",
78         ":close # ...            Close windows",
79         ":close all              Close all windows",
80         ":cursor modes           Set the cursor modes",
81         ":echo # string ...      Print `string ...' in window #",
82         ":escape c               Set escape character to `c'",
83         ":foreground # flag      Make # a foreground window, if `flag' is true",
84         ":label # string         Set label of window # to `string'",
85         ":list                   List all open windows",
86         ":default_nline lines    Set default window buffer size to `lines'",
87         ":default_shell string ...",
88         "                        Set default shell to `string ...'",
89         ":default_smooth flag    Set default smooth scroll flag",
90         ":select #               Select window #",
91         ":smooth # flag          Set window # to smooth scroll mode",
92         ":source filename        Execute commands in `filename'",
93         ":terse flag             Set terse mode",
94         ":unalias name           Undefine `name' as an alias",
95         ":unset variable         Deallocate `variable'",
96         ":variable               List all variables",
97         ":window [row col nrow ncol nline label pty frame mapnl keepopen smooth shell]",
98         "                        Open a window at `row', `col' of size `nrow', `ncol',",
99         "                        with `nline' lines in the buffer, and `label'",
100         ":write # string ...     Write `string ...' to window # as input",
101         0
102 };
103
104 c_help()
105 {
106         register struct ww *w;
107
108         if ((w = openiwin(wwnrow - 3, "Help")) == 0) {
109                 error("Can't open help window: %s.", wwerror());
110                 return;
111         }
112         wwprintf(w, "The escape character is %c.\n", escapec);
113         wwprintf(w, "(# represents one of the digits from 1 to 9.)\n\n");
114         if (help_print(w, "Short commands", help_shortcmd) >= 0)
115                 (void) help_print(w, "Long commands", help_longcmd);
116         closeiwin(w);
117 }
118
119 help_print(w, name, list)
120 register struct ww *w;
121 char *name;
122 register char **list;
123 {
124         wwprintf(w, "%s:\n\n", name);
125         while (*list)
126                 switch (more(w, 0)) {
127                 case 0:
128                         wwputs(*list++, w);
129                         wwputc('\n', w);
130                         break;
131                 case 1:
132                         wwprintf(w, "%s: (continued)\n\n", name);
133                         break;
134                 case 2:
135                         return -1;
136                 }
137         return more(w, 1) == 2 ? -1 : 0;
138 }
139
140 c_quit()
141 {
142         char oldterse = terse;
143
144         setterse(0);
145         wwputs("Really quit [yn]? ", cmdwin);
146         wwcurtowin(cmdwin);
147         while (wwpeekc() < 0)
148                 wwiomux();
149         if (wwgetc() == 'y') {
150                 wwputs("Yes", cmdwin);
151                 quit++;
152         } else
153                 wwputc('\n', cmdwin);
154         setterse(!quit && oldterse);
155 }