1 /* $NetBSD: ex_usage.c,v 1.2 2013/11/22 15:52:05 christos Exp $ */
3 * Copyright (c) 1992, 1993, 1994
4 * The Regents of the University of California. All rights reserved.
5 * Copyright (c) 1992, 1993, 1994, 1995, 1996
6 * Keith Bostic. All rights reserved.
8 * See the LICENSE file for redistribution information.
14 static const char sccsid
[] = "Id: ex_usage.c,v 10.15 2001/06/25 15:19:21 skimo Exp (Berkeley) Date: 2001/06/25 15:19:21 ";
17 #include <sys/types.h>
18 #include <sys/queue.h>
21 #include <bitstring.h>
28 #include "../common/common.h"
33 * Display help message.
35 * PUBLIC: int ex_help __P((SCR *, EXCMD *));
38 ex_help(SCR
*sp
, EXCMD
*cmdp
)
41 "To see the list of vi commands, enter \":viusage<CR>\"\n");
43 "To see the list of ex commands, enter \":exusage<CR>\"\n");
45 "For an ex command usage statement enter \":exusage [cmd]<CR>\"\n");
47 "For a vi key usage statement enter \":viusage [key]<CR>\"\n");
48 (void)ex_puts(sp
, "To exit, enter \":q!\"\n");
53 * ex_usage -- :exusage [cmd]
54 * Display ex usage strings.
56 * PUBLIC: int ex_usage __P((SCR *, EXCMD *));
59 ex_usage(SCR
*sp
, EXCMD
*cmdp
)
64 CHAR_T
*p
, nb
[MAXCMDNAMELEN
+ 5];
70 if (ISUPPER((UCHAR_T
)ap
->bp
[0])) {
72 ap
->bp
[0] = TOLOWER((UCHAR_T
)ap
->bp
[0]);
75 for (cp
= cmds
; cp
->name
!= NULL
&&
76 memcmp(ap
->bp
, cp
->name
, ap
->len
); ++cp
);
77 if (cp
->name
== NULL
||
78 (newscreen
&& !F_ISSET(cp
, E_NEWSCREEN
))) {
83 ap
->bp
[0] = TOUPPER((UCHAR_T
)ap
->bp
[0]);
85 INT2CHAR(sp
, ap
->bp
, ap
->len
+ 1, nstr
, nlen
);
86 (void)ex_printf(sp
, "The %.*s command is unknown\n",
90 "Command: %s\n Usage: %s\n", cp
->help
, cp
->usage
);
93 * The "visual" command has two modes, one from ex,
94 * one from the vi colon line. Don't ask.
96 if (cp
!= &cmds
[C_VISUAL_EX
] &&
97 cp
!= &cmds
[C_VISUAL_VI
])
99 if (cp
== &cmds
[C_VISUAL_EX
])
100 cp
= &cmds
[C_VISUAL_VI
];
102 cp
= &cmds
[C_VISUAL_EX
];
104 "Command: %s\n Usage: %s\n", cp
->help
, cp
->usage
);
108 for (cp
= cmds
; cp
->name
!= NULL
&& !INTERRUPTED(sp
); ++cp
) {
110 * The ^D command has an unprintable name.
113 * We display both capital and lower-case versions of
114 * the appropriate commands -- no need to add in extra
115 * room, they're all short names.
117 if (cp
== &cmds
[C_SCROLL
])
119 else if (F_ISSET(cp
, E_NEWSCREEN
)) {
121 nb
[1] = TOUPPER((UCHAR_T
)cp
->name
[0]);
124 for (name
= cp
->name
+ 1,
125 p
= nb
+ 4; (*p
++ = *name
++) != '\0';);
130 WVS
": %s\n", MAXCMDNAMELEN
, name
, cp
->help
);
140 * ex_viusage -- :viusage [key]
141 * Display vi usage strings.
143 * PUBLIC: int ex_viusage __P((SCR *, EXCMD *));
146 ex_viusage(SCR
*sp
, EXCMD
*cmdp
)
151 switch (cmdp
->argc
) {
153 if (cmdp
->argv
[0]->len
!= 1) {
154 ex_emsg(sp
, cmdp
->cmd
->usage
, EXM_USAGE
);
157 key
= cmdp
->argv
[0]->bp
[0];
161 /* Special case: '[' and ']' commands. */
162 if ((key
== '[' || key
== ']') && cmdp
->argv
[0]->bp
[1] != key
)
165 /* Special case: ~ command. */
166 if (key
== '~' && O_ISSET(sp
, O_TILDEOP
))
171 if (kp
->usage
== NULL
)
172 nokey
: (void)ex_printf(sp
,
173 "The %s key has no current meaning\n",
177 " Key:%s%s\nUsage: %s\n",
178 isblank((unsigned char)*kp
->help
) ? "" : " ", kp
->help
, kp
->usage
);
181 for (key
= 0; key
<= MAXVIKEY
&& !INTERRUPTED(sp
); ++key
) {
182 /* Special case: ~ command. */
183 if (key
== '~' && O_ISSET(sp
, O_TILDEOP
))
187 if (kp
->help
!= NULL
)
188 (void)ex_printf(sp
, "%s\n", kp
->help
);