Blob


1 .TH ACME 4
2 .SH NAME
3 acme \- control files for text windows
4 .SH SYNOPSIS
5 .B acme
6 [
7 .B -f
8 .I varfont
9 ] [
10 .B -F
11 .I fixfont
12 ]
13 [
14 .I file
15 \&... ]
16 .SH DESCRIPTION
17 The text window system
18 .MR acme (1)
19 serves a variety of files for reading, writing, and controlling
20 windows.
21 Some of them are virtual versions of system files for dealing
22 with the virtual console; others control operations
23 of
24 .I acme
25 itself.
26 When a command is run under
27 .IR acme ,
28 a directory holding these files is posted as the 9P service
29 .B acme
30 (using
31 .MR 9pserve (4) ).
32 .PP
33 Some of these files supply virtual versions of services available from the underlying
34 environment, in particular the character terminal files in Plan 9's
35 .IR cons (3).
36 (Unlike in Plan 9's
37 .IR rio (1),
38 each command under
39 .I acme
40 sees the same set of files; there is not a distinct
41 .B /dev/cons
42 for each window.)
43 Other files are unique to
44 .IR acme .
45 .TP
46 .B acme
47 is a subdirectory used by
48 .B win
49 (see
50 .MR acme (1) )
51 as a mount point for the
52 .I acme
53 files associated with the window in which
54 .B win
55 is running.
56 It has no specific function under
57 .I acme
58 itself.
59 .TP
60 .B cons
61 is the standard and diagnostic output file for all commands
62 run under
63 .IR acme .
64 (Input for commands is redirected to
65 .BR /dev/null .)
66 Text written to
67 .B cons
68 appears in a window labeled
69 .IB dir /+Errors\f1,
70 where
71 .I dir
72 is the directory in which the command
73 was run.
74 The window is created if necessary, but not until text is actually written.
75 .TP
76 .B consctl
77 is an empty unwritable file present only for compatibility; there is no way
78 to turn off `echo', for example, under
79 .IR acme .
80 .TP
81 .B index
82 holds a sequence of lines of text, one per window. Each line has 5 decimal numbers,
83 each formatted in 11 characters plus a blank\(emthe window ID;
84 number of characters (runes) in the tag;
85 number of characters in the body;
86 a 1 if the window is a directory, 0 otherwise;
87 and a 1 if the window is modified, 0
88 otherwise\(emfollowed by the tag up to a newline if present.
89 Thus at character position 5×12 starts the name of the window.
90 If a file has multiple zeroxed windows open,
91 only the most recently used will appear in the
92 .B index
93 file.
94 .TP
95 .B label
96 is an empty file, writable without effect, present only for compatibility with
97 .BR rio .
98 .TP
99 .B log
100 reports a log of window operations since the opening of the
101 .B log
102 file.
103 Each line describes a single operation using three fields separated by single spaces:
104 the decimal window ID, the operation, and the window name.
105 Reading from
106 .B log
107 blocks until there is an operation to report, so reading the file
108 can be used to monitor editor activity and react to changes.
109 The reported operations are
110 .L new
111 (window creation),
112 .L zerox
113 (window creation via zerox),
114 .LR get ,
115 .LR put ,
116 and
117 .LR del
118 (window deletion).
119 The window name can be the empty string; in particular it is empty in
120 .L new
121 log entries corresponding to windows created by external programs.
122 .TP
123 .B new
124 is a directory analogous to the numbered directories
125 .RI ( q.v. ).
126 Accessing any
127 file in
128 .B new
129 creates a new window. Thus to cause text to appear in a new window,
130 write it to
131 .BR /dev/new/body .
132 For more control, open
133 .BR /dev/new/ctl
134 and use the interface described below.
135 .LP
136 .PP
137 Each
138 .I acme
139 window has associated a directory numbered by its ID.
140 Window IDs are chosen sequentially and may be discovered by the
141 .B ID
142 command, by
143 reading the
144 .B ctl
145 file, or
146 indirectly through the
147 .B index
148 file. The files in the numbered directories are as follows.
149 .TP
150 .B addr
151 may be written with any textual address (line number, regular expression, etc.),
152 in the format understood by button 3 but without the initial colon, including compound addresses,
153 to set the address for text accessed through the
154 .B data
155 file.
156 When read, it returns the value of the address that would next be read
157 or written through the
158 .B data
159 file, in the format
160 .BI # m ,# n
161 where
162 .I m
163 and
164 .I n
165 are character (not byte) offsets. If
166 .I m
167 and
168 .I n
169 are identical, the format is just
170 .BI # m\f1.
171 Thus a regular expression may be evaluated by writing it to
172 .B addr
173 and reading it back.
174 The
175 .B addr
176 address has no effect on the user's selection of text.
177 .TP
178 .B body
179 holds contents of the window body. It may be read at any byte offset.
180 Text written to
181 .B body
182 is always appended; the file offset is ignored.
183 .TP
184 .B ctl
185 may be read to recover the five numbers as held in the
186 .B index
187 file, described above, plus three more fields: the width of the
188 window in pixels, the name of the font used in the window,
189 and the width of a tab character in pixels.
190 Text messages may be written to
191 .B ctl
192 to affect the window.
193 Each message is terminated by a newline and multiple
194 messages may be sent in a single write.
195 .RS .5i
196 .TF limit=addr
197 .TP
198 .B addr=dot
199 Set the
200 .B addr
201 address to that of the user's selected text in the window.
202 .TP
203 .B clean
204 Mark the window clean as though it has just been written.
205 .TP
206 .B dirty
207 Mark the window dirty, the opposite of clean.
208 .TP
209 .B cleartag
210 Remove all text in the tag after the vertical bar.
211 .TP
212 .B del
213 Equivalent to the
214 .B Del
215 interactive command.
216 .TP
217 .B delete
218 Equivalent to the
219 .B Delete
220 interactive command.
221 .TP
222 .B dot=addr
223 Set the user's selected text in the window to the text addressed by the
224 .B addr
225 address.
226 .TP
227 .BI dump " command
228 Set the command string to recreate the window from a dump file.
229 .TP
230 .BI dumpdir " directory
231 Set the directory in which to run the command to recreate the window from a dump file.
232 .TP
233 .B get
234 Equivalent to the
235 .B Get
236 interactive command with no arguments; accepts no arguments.
237 .TP
238 .BI font " path
239 Equivalent to the
240 .B Font
241 interactive command with a single (required) argument.
242 .TP
243 .B limit=addr
244 When the
245 .B ctl
246 file is first opened, regular expression context searches in
247 .B addr
248 addresses examine the whole file; this message restricts subsequent
249 searches to the current
250 .B addr
251 address.
252 .TP
253 .B mark
254 Cancel
255 .BR nomark ,
256 returning the window to the usual state wherein each modification to the
257 body must be undone individually.
258 .TP
259 .BI name " name
260 Set the name of the window to
261 .IR name .
262 .TP
263 .B nomark
264 Turn off automatic `marking' of changes, so a set of related changes
265 may be undone in a single
266 .B Undo
267 interactive command.
268 .TP
269 .B put
270 Equivalent to the
271 .B Put
272 interactive command with no arguments; accepts no arguments.
273 .TP
274 .B show
275 Guarantee at least some of the selected text is visible on the display.
276 .RE
277 .PD
278 .TP
279 .B data
280 is used in conjunction with
281 .B addr
282 for random access to the contents of the body.
283 The file offset is ignored when writing the
284 .B data
285 file; instead the location of the data to be read or written is determined by the state of the
286 .B addr
287 file.
288 Text, which must contain only whole characters (no `partial runes'),
289 written to
290 .B data
291 replaces the characters addressed by the
292 .B addr
293 file and sets the address to the null string at the end of the written text.
294 A read from
295 .B data
296 returns as many whole characters as the read count will permit starting
297 at the beginning of the
298 .B addr
299 address (the end of the address has no effect)
300 and sets the address to the null string at the end of the returned
301 characters.
302 .TP
303 .B errors
304 Writing to the
305 .B errors
306 file appends to the body of the
307 .IB dir /+Errors
308 window, where
309 .I dir
310 is the directory currently named in the tag.
311 The window is created if necessary,
312 but not until text is actually written.
313 .TP
314 .B event
315 When a window's
316 .B event
317 file is open, changes to the window occur as always but the
318 actions are also reported as
319 messages to the reader of the file. Also, user actions with buttons 2 and 3
320 (other than chorded
321 .B Cut
322 and
323 .BR Paste ,
324 which behave normally) have no immediate effect on the window;
325 it is expected that the program reading the
326 .B event
327 file will interpret them.
328 The messages have a fixed format:
329 a character indicating the origin or cause of the action,
330 a character indicating the type of the action,
331 four free-format blank-terminated decimal numbers,
332 optional text, and a newline.
333 The first and second numbers are the character addresses of the action,
334 the third is a flag,
335 and the final is a count of the characters in the optional text, which
336 may itself contain newlines.
337 The origin characters are
338 .B E
339 for writes to the
340 .B body
341 or
342 .B tag
343 file,
344 .B F
345 for actions through the window's other files,
346 .B K
347 for the keyboard, and
348 .B M
349 for the mouse.
350 The type characters are
351 .B D
352 for text deleted from the body,
353 .B d
354 for text deleted from the tag,
355 .B I
356 for text inserted to the body,
357 .B i
358 for text inserted to the tag,
359 .B L
360 for a button 3 action in the body,
361 .B l
362 for a button 3 action in the tag,
363 .B X
364 for a button 2 action in the body, and
365 .B x
366 for a button 2 action in the tag.
367 .IP
368 If the relevant text has less than 256 characters, it is included in the message;
369 otherwise it is elided, the fourth number is 0, and the program must read
370 it from the
371 .B data
372 file if needed. No text is sent on a
373 .B D
374 or
375 .B d
376 message.
377 .IP
378 For
379 .BR D ,
380 .BR d ,
381 .BR I ,
382 and
383 .BR i
384 the flag is always zero.
385 For
386 .BR X
387 and
388 .BR x ,
389 the flag is a bitwise OR (reported decimally) of the following:
390 1 if the text indicated is recognized as an
391 .I acme
392 built-in command;
393 2 if the text indicated is a null string that has a non-null expansion;
394 if so, another complete message will follow describing the expansion
395 exactly as if it had been indicated explicitly (its flag will always be 0);
396 8 if the command has an extra (chorded) argument; if so,
397 two more complete messages will follow reporting the argument (with
398 all numbers 0 except the character count) and where it originated, in the form of
399 a fully-qualified button 3 style address.
400 .IP
401 For
402 .B L
403 and
404 .BR l ,
405 the flag is the bitwise OR of the following:
406 1 if
407 .I acme
408 can interpret the action without loading a new file;
409 2 if a second (post-expansion) message follows, analogous to that with
410 .B X
411 messages;
412 4 if the text is a file or window name (perhaps with address) rather than
413 plain literal text.
414 .IP
415 For messages with the 1 bit on in the flag,
416 writing the message back to the
417 .B event
418 file, but with the flag, count, and text omitted,
419 will cause the action to be applied to the file exactly as it would
420 have been if the
421 .B event
422 file had not been open.
423 .TP
424 .B tag
425 holds contents of the window tag. It may be read at any byte offset.
426 Text written to
427 .B tag
428 is always appended; the file offset is ignored.
429 .TP
430 .B xdata
431 The
432 .B xdata
433 file like
434 .B data
435 except that reads stop at the end address.
436 .SH SOURCE
437 .B \*9/src/cmd/acme
438 .SH SEE ALSO
439 .MR rio (1) ,
440 .MR acme (1)