-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparam.c
More file actions
154 lines (136 loc) · 4.01 KB
/
Copy pathparam.c
File metadata and controls
154 lines (136 loc) · 4.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
* STEVIE - Simply Try this Editor for VI Enthusiasts
*
* Code Contributions By : Tim Thompson twitch!tjt
* Tony Andrews onecom!wldrdg!tony
* G. R. (Fred) Walter watmath!grwalter
*/
/*
* Code to handle user-settable parameters. This is all pretty much table-
* driven. To add a new parameter, put it in the params array, and add a
* macro for it in param.h. If it's a numeric parameter, add any necessary
* bounds checks to doset(). String parameters aren't currently supported.
*/
#include "stevie.h"
struct param params[] = {
{"tabstop", "ts", 8, P_NUM},
{"scroll", "scroll", 12, P_NUM},
{"report", "report", 5, P_NUM},
{"lines", "lines", 25, P_NUM},
{"vbell", "vb", TRUE, P_BOOL},
{"showmatch", "sm", FALSE, P_BOOL},
{"wrapscan", "ws", TRUE, P_BOOL},
{"errorbells", "eb", FALSE, P_BOOL},
{"showmode", "mo", FALSE, P_BOOL},
{"backup", "bk", FALSE, P_BOOL},
{"return", "cr", TRUE, P_BOOL},
{"list", "list", FALSE, P_BOOL},
{"ignorecase", "ic", FALSE, P_BOOL},
{"autoindent", "ai", FALSE, P_BOOL},
{"number", "nu", FALSE, P_BOOL},
{"", "", 0, 0} /* end marker */
};
static void showparms(bool_t);
void doset(char *arg, bool_t inter) {
int i;
char *s;
bool_t did_lines = FALSE;
bool_t state = TRUE; /* new state of boolean parms. */
if (arg == NULL) {
showparms(FALSE);
return;
}
if (strncmp(arg, "all", 3) == 0) {
showparms(TRUE);
return;
}
if (strncmp(arg, "no", 2) == 0) {
state = FALSE;
arg += 2;
}
for (i = 0; params[i].fullname[0] != NUL; i++) {
s = params[i].fullname;
if (strncmp(arg, s, strlen(s)) == 0) /* matched full name */
break;
s = params[i].shortname;
if (strncmp(arg, s, strlen(s)) == 0) /* matched short name */
break;
}
if (params[i].fullname[0] != NUL) { /* found a match */
if (params[i].flags & P_NUM) {
did_lines = (i == P_LI);
if (inter && (arg[strlen(s)] != '=' || state == FALSE))
emsg("Invalid set of numeric parameter");
else {
params[i].value = atoi(arg + strlen(s) + 1);
params[i].flags |= P_CHANGED;
}
} else { /* boolean */
if (inter && (arg[strlen(s)] == '='))
emsg("Invalid set of boolean parameter");
else {
params[i].value = state;
params[i].flags |= P_CHANGED;
}
}
} else {
if (inter)
emsg("Unrecognized 'set' option");
}
if (did_lines) {
Rows = P(P_LI);
screenalloc(); /* allocate new screen buffers */
s_clear();
}
/*
* Mark the screen contents as not valid in case we changed something
* like "tabstop" or "list" that will change its appearance.
*/
if (inter)
S_NOT_VALID;
/*
* Check the bounds for numeric parameters here
*/
if (P(P_TS) <= 0 || P(P_TS) > 32) {
if (inter)
emsg("Invalid tab size specified");
P(P_TS) = 8;
return;
}
if (P(P_SS) <= 0 || P(P_SS) > Rows) {
if (inter)
emsg("Invalid scroll size specified");
P(P_SS) = 12;
return;
}
/*
* Check for another argument, and call doset() recursively, if found. If
* any argument results in an error, no further parameters are processed.
*/
while (*arg != ' ' && *arg != '\t') { /* skip to next white space */
if (*arg == NUL)
return; /* end of parameter list */
arg++;
}
while (*arg == ' ' || *arg == '\t') /* skip to next non-white */
arg++;
if (*arg)
doset(arg, TRUE); /* recurse on next parameter, if present */
}
static void showparms(bool_t all) {
struct param *p;
char buf[64];
gotocmdline(YES, NUL);
outstr("Parameters:\r\n");
for (p = ¶ms[0]; p->fullname[0] != NUL; p++) {
if (!all && ((p->flags & P_CHANGED) == 0))
continue;
if (p->flags & P_BOOL)
sprintf(buf, "\t%s%s\r\n",
(p->value ? "" : "no"), p->fullname);
else
sprintf(buf, "\t%s=%d\r\n", p->fullname, p->value);
outstr(buf);
}
wait_return();
}