25829
|
1 @c This is part of the Emacs manual.
|
|
2 @c Copyright (C) 1985, 86, 87, 93, 94, 95, 1997 Free Software Foundation, Inc.
|
|
3 @c See file emacs.texi for copying conditions.
|
|
4 @iftex
|
|
5 @chapter Miscellaneous Commands
|
|
6
|
|
7 This chapter contains several brief topics that do not fit anywhere
|
|
8 else: reading netnews, running shell commands and shell subprocesses,
|
|
9 using a single shared Emacs for utilities that expect to run an editor
|
|
10 as a subprocess, printing hardcopy, sorting text, narrowing display to
|
|
11 part of the buffer, editing double-column files and binary files, saving
|
|
12 an Emacs session for later resumption, emulating other editors, and
|
|
13 various diversions and amusements.
|
|
14
|
|
15 @end iftex
|
|
16 @node Gnus, Shell, Calendar/Diary, Top
|
|
17 @section Gnus
|
|
18 @cindex Gnus
|
|
19 @cindex reading netnews
|
|
20
|
|
21 Gnus is an Emacs package primarily designed for reading and posting
|
|
22 Usenet news. It can also be used to read and respond to messages from a
|
|
23 number of other sources---mail, remote directories, digests, and so on.
|
|
24
|
|
25 Here we introduce Gnus and describe several basic features.
|
|
26 @ifinfo
|
|
27 For full details, see @ref{Top, Gnus,, gnus, The Gnus Manual}.
|
|
28 @end ifinfo
|
|
29 @iftex
|
|
30 For full details on Gnus, type @kbd{M-x info} and then select the Gnus
|
|
31 manual.
|
|
32 @end iftex
|
|
33
|
|
34 @findex gnus
|
|
35 To start Gnus, type @kbd{M-x gnus @key{RET}}.
|
|
36
|
|
37 @menu
|
|
38 * Buffers of Gnus:: The group, summary, and article buffers.
|
|
39 * Gnus Startup:: What you should know about starting Gnus.
|
|
40 * Summary of Gnus:: A short description of the basic Gnus commands.
|
|
41 @end menu
|
|
42
|
|
43 @node Buffers of Gnus
|
|
44 @subsection Gnus Buffers
|
|
45
|
|
46 As opposed to most normal Emacs packages, Gnus uses a number of
|
|
47 different buffers to display information and to receive commands. The
|
|
48 three buffers users spend most of their time in are the @dfn{group
|
|
49 buffer}, the @dfn{summary buffer} and the @dfn{article buffer}.
|
|
50
|
|
51 The @dfn{group buffer} contains a list of groups. This is the first
|
|
52 buffer Gnus displays when it starts up. It normally displays only the
|
|
53 groups to which you subscribe and that contain unread articles. Use
|
|
54 this buffer to select a specific group.
|
|
55
|
|
56 The @dfn{summary buffer} lists one line for each article in a single
|
|
57 group. By default, the author, the subject and the line number are
|
|
58 displayed for each article, but this is customizable, like most aspects
|
|
59 of Gnus display. The summary buffer is created when you select a group
|
|
60 in the group buffer, and is killed when you exit the group. Use this
|
|
61 buffer to select an article.
|
|
62
|
|
63 The @dfn{article buffer} displays the article. In normal Gnus usage,
|
|
64 you don't select this buffer---all useful article-oriented commands work
|
|
65 in the summary buffer. But you can select the article buffer, and
|
|
66 execute all Gnus commands from that buffer, if you want to.
|
|
67
|
|
68 @node Gnus Startup
|
|
69 @subsection When Gnus Starts Up
|
|
70
|
|
71 At startup, Gnus reads your @file{.newsrc} news initialization file
|
|
72 and attempts to communicate with the local news server, which is a
|
|
73 repository of news articles. The news server need not be the same
|
|
74 computer you are logged in on.
|
|
75
|
|
76 If you start Gnus and connect to the server, but do not see any
|
|
77 newsgroups listed in the group buffer, type @kbd{L} or @kbd{A k} to get
|
|
78 a listing of all the groups. Then type @kbd{u} to toggle
|
|
79 subscription to groups.
|
|
80
|
|
81 The first time you start Gnus, Gnus subscribes you to a few selected
|
|
82 groups. All other groups start out as @dfn{killed groups} for you; you
|
|
83 can list them with @kbd{A k}. All new groups that subsequently come to
|
|
84 exist at the news server become @dfn{zombie groups} for you; type @kbd{A
|
|
85 z} to list them. You can subscribe to a group shown in these lists
|
|
86 using the @kbd{u} command.
|
|
87
|
|
88 When you quit Gnus with @kbd{q}, it automatically records in your
|
|
89 @file{.newsrc} and @file{.newsrc.eld} initialization files the
|
|
90 subscribed or unsubscribed status of all groups. You should normally
|
|
91 not edit these files manually, but you may if you know how.
|
|
92
|
|
93 @node Summary of Gnus
|
|
94 @subsection Summary of Gnus Commands
|
|
95
|
|
96 Reading news is a two step process:
|
|
97
|
|
98 @enumerate
|
|
99 @item
|
|
100 Choose a group in the group buffer.
|
|
101
|
|
102 @item
|
|
103 Select articles from the summary buffer. Each article selected is
|
|
104 displayed in the article buffer in a large window, below the summary
|
|
105 buffer in its small window.
|
|
106 @end enumerate
|
|
107
|
|
108 Each Gnus buffer has its own special commands; however, the meanings
|
|
109 of any given key in the various Gnus buffers are usually analogous, even
|
|
110 if not identical. Here are commands for the group and summary buffers:
|
|
111
|
|
112 @table @kbd
|
|
113 @kindex q @r{(Gnus Group mode)}
|
|
114 @findex gnus-group-exit
|
|
115 @item q
|
|
116 In the group buffer, update your @file{.newsrc} initialization file
|
|
117 and quit Gnus.
|
|
118
|
|
119 In the summary buffer, exit the current group and return to the
|
|
120 group buffer. Thus, typing @kbd{q} twice quits Gnus.
|
|
121
|
|
122 @kindex L @r{(Gnus Group mode)}
|
|
123 @findex gnus-group-list-all-groups
|
|
124 @item L
|
|
125 In the group buffer, list all the groups available on your news
|
|
126 server (except those you have killed). This may be a long list!
|
|
127
|
|
128 @kindex l @r{(Gnus Group mode)}
|
|
129 @findex gnus-group-list-groups
|
|
130 @item l
|
|
131 In the group buffer, list only the groups to which you subscribe and
|
|
132 which contain unread articles.
|
|
133
|
|
134 @kindex u @r{(Gnus Group mode)}
|
|
135 @findex gnus-group-unsubscribe-current-group
|
|
136 @cindex subscribe groups
|
|
137 @cindex unsubscribe groups
|
|
138 @item u
|
|
139 In the group buffer, unsubscribe from (or subscribe to) the group listed
|
|
140 in the line that point is on. When you quit Gnus by typing @kbd{q},
|
|
141 Gnus lists in your @file{.newsrc} file which groups you have subscribed
|
|
142 to. The next time you start Gnus, you won't see this group,
|
|
143 because Gnus normally displays only subscribed-to groups.
|
|
144
|
|
145 @kindex C-k @r{(Gnus)}
|
|
146 @findex gnus-group-kill-group
|
|
147 @item C-k
|
|
148 In the group buffer, ``kill'' the current line's group---don't
|
|
149 even list it in @file{.newsrc} from now on. This affects future
|
|
150 Gnus sessions as well as the present session.
|
|
151
|
|
152 When you quit Gnus by typing @kbd{q}, Gnus writes information
|
|
153 in the file @file{.newsrc} describing all newsgroups except those you
|
|
154 have ``killed.''
|
|
155
|
|
156 @kindex SPC @r{(Gnus)}
|
|
157 @findex gnus-group-read-group
|
|
158 @item @key{SPC}
|
|
159 In the group buffer, select the group on the line under the cursor
|
|
160 and display the first unread article in that group.
|
|
161
|
|
162 @need 1000
|
|
163 In the summary buffer,
|
|
164
|
|
165 @itemize @bullet
|
|
166 @item
|
|
167 Select the article on the line under the cursor if none is selected.
|
|
168
|
|
169 @item
|
|
170 Scroll the text of the selected article (if there is one).
|
|
171
|
|
172 @item
|
|
173 Select the next unread article if at the end of the current article.
|
|
174 @end itemize
|
|
175
|
|
176 Thus, you can move through all the articles by repeatedly typing @key{SPC}.
|
|
177
|
|
178 @kindex DEL @r{(Gnus)}
|
|
179 @item @key{DEL}
|
|
180 In the group buffer, move point to the previous group containing
|
|
181 unread articles.
|
|
182
|
|
183 @findex gnus-summary-prev-page
|
|
184 In the summary buffer, scroll the text of the article backwards.
|
|
185
|
|
186 @kindex n @r{(Gnus)}
|
|
187 @findex gnus-group-next-unread-group
|
|
188 @findex gnus-summary-next-unread-article
|
|
189 @item n
|
|
190 Move point to the next unread group, or select the next unread article.
|
|
191
|
|
192 @kindex p @r{(Gnus)}
|
|
193 @findex gnus-group-prev-unread-group
|
|
194 @findex gnus-summary-prev-unread-article
|
|
195 @item p
|
|
196 Move point to the previous unread group, or select the previous
|
|
197 unread article.
|
|
198
|
|
199 @kindex C-n @r{(Gnus Group mode)}
|
|
200 @findex gnus-group-next-group
|
|
201 @kindex C-p @r{(Gnus Group mode)}
|
|
202 @findex gnus-group-prev-group
|
|
203 @kindex C-n @r{(Gnus Summary mode)}
|
|
204 @findex gnus-summary-next-subject
|
|
205 @kindex C-p @r{(Gnus Summary mode)}
|
|
206 @findex gnus-summary-prev-subject
|
|
207 @item C-n
|
|
208 @itemx C-p
|
|
209 Move point to the next or previous item, even if it is marked as read.
|
|
210 This does not select the article or group on that line.
|
|
211
|
|
212 @kindex s @r{(Gnus Summary mode)}
|
|
213 @findex gnus-summary-isearch-article
|
|
214 @item s
|
|
215 In the summary buffer, do an incremental search of the current text in
|
|
216 the article buffer, just as if you switched to the article buffer and
|
|
217 typed @kbd{C-s}.
|
|
218
|
|
219 @kindex M-s @r{(Gnus Summary mode)}
|
|
220 @findex gnus-summary-search-article-forward
|
|
221 @item M-s @var{regexp} @key{RET}
|
|
222 In the summary buffer, search forward for articles containing a match
|
|
223 for @var{regexp}.
|
|
224
|
|
225 @end table
|
|
226
|
|
227 @ignore
|
|
228 @node Where to Look
|
|
229 @subsection Where to Look Further
|
|
230
|
|
231 @c Too many references to the name of the manual if done with xref in TeX!
|
|
232 Gnus is powerful and customizable. Here are references to a few
|
|
233 @ifinfo
|
|
234 additional topics:
|
|
235
|
|
236 @end ifinfo
|
|
237 @iftex
|
|
238 additional topics in @cite{The Gnus Manual}:
|
|
239
|
|
240 @itemize @bullet
|
|
241 @item
|
|
242 Follow discussions on specific topics.@*
|
|
243 See section ``Threading.''
|
|
244
|
|
245 @item
|
|
246 Read digests. See section ``Document Groups.''
|
|
247
|
|
248 @item
|
|
249 Refer to and jump to the parent of the current article.@*
|
|
250 See section ``Finding the Parent.''
|
|
251
|
|
252 @item
|
|
253 Refer to articles by using Message-IDs included in the messages.@*
|
|
254 See section ``Article Keymap.''
|
|
255
|
|
256 @item
|
|
257 Save articles. See section ``Saving Articles.''
|
|
258
|
|
259 @item
|
|
260 Have Gnus score articles according to various criteria, like author
|
|
261 name, subject, or string in the body of the articles.@*
|
|
262 See section ``Scoring.''
|
|
263
|
|
264 @item
|
|
265 Send an article to a newsgroup.@*
|
|
266 See section ``Composing Messages.''
|
|
267 @end itemize
|
|
268 @end iftex
|
|
269 @ifinfo
|
|
270 @itemize @bullet
|
|
271 @item
|
|
272 Follow discussions on specific topics.@*
|
|
273 @xref{Threading, , Reading Based on Conversation Threads,
|
|
274 gnus, The Gnus Manual}.
|
|
275
|
|
276 @item
|
|
277 Read digests. @xref{Document Groups, , , gnus, The Gnus Manual}.
|
|
278
|
|
279 @item
|
|
280 Refer to and jump to the parent of the current article.@*
|
|
281 @xref{Finding the Parent, , , gnus, The Gnus Manual}.
|
|
282
|
|
283 @item
|
|
284 Refer to articles by using Message-IDs included in the messages.@*
|
|
285 @xref{Article Keymap, , , gnus, The Gnus Manual}.
|
|
286
|
|
287 @item
|
|
288 Save articles. @xref{Saving Articles, , , gnus, The Gnus Manual}.
|
|
289
|
|
290 @item
|
|
291 Have Gnus score articles according to various criteria, like author
|
|
292 name, subject, or string in the body of the articles.@*
|
|
293 @xref{Scoring, , , gnus, The Gnus Manual}.
|
|
294
|
|
295 @item
|
|
296 Send an article to a newsgroup.@*
|
|
297 @xref{Composing Messages, , , gnus, The Gnus Manual}.
|
|
298 @end itemize
|
|
299 @end ifinfo
|
|
300 @end ignore
|
|
301
|
|
302 @node Shell, Emacs Server, Gnus, Top
|
|
303 @section Running Shell Commands from Emacs
|
|
304 @cindex subshell
|
|
305 @cindex shell commands
|
|
306
|
|
307 Emacs has commands for passing single command lines to inferior shell
|
|
308 processes; it can also run a shell interactively with input and output to
|
|
309 an Emacs buffer named @samp{*shell*}.
|
|
310
|
|
311 @table @kbd
|
|
312 @item M-! @var{cmd} @key{RET}
|
|
313 Run the shell command line @var{cmd} and display the output
|
|
314 (@code{shell-command}).
|
|
315 @item M-| @var{cmd} @key{RET}
|
|
316 Run the shell command line @var{cmd} with region contents as input;
|
|
317 optionally replace the region with the output
|
|
318 (@code{shell-command-on-region}).
|
|
319 @item M-x shell
|
|
320 Run a subshell with input and output through an Emacs buffer.
|
|
321 You can then give commands interactively.
|
|
322 @end table
|
|
323
|
|
324 @menu
|
|
325 * Single Shell:: How to run one shell command and return.
|
|
326 * Interactive Shell:: Permanent shell taking input via Emacs.
|
|
327 * Shell Mode:: Special Emacs commands used with permanent shell.
|
|
328 * History: Shell History. Repeating previous commands in a shell buffer.
|
|
329 * Options: Shell Options. Options for customizing Shell mode.
|
|
330 * Remote Host:: Connecting to another computer.
|
|
331 @end menu
|
|
332
|
|
333 @node Single Shell
|
|
334 @subsection Single Shell Commands
|
|
335
|
|
336 @kindex M-!
|
|
337 @findex shell-command
|
|
338 @kbd{M-!} (@code{shell-command}) reads a line of text using the
|
|
339 minibuffer and executes it as a shell command in a subshell made just
|
|
340 for that command. Standard input for the command comes from the null
|
|
341 device. If the shell command produces any output, the output goes into
|
|
342 an Emacs buffer named @samp{*Shell Command Output*}, which is displayed
|
|
343 in another window but not selected. A numeric argument, as in @kbd{M-1
|
|
344 M-!}, directs this command to insert any output into the current buffer.
|
|
345 In that case, point is left before the output and the mark is set after
|
|
346 the output.
|
|
347
|
|
348 If the shell command line ends in @samp{&}, it runs asynchronously.
|
|
349 For a synchronous shell command, @code{shell-command} returns the
|
|
350 command's exit status (0 means success), when it is called from a Lisp
|
|
351 program.
|
|
352
|
|
353 @kindex M-|
|
|
354 @findex shell-command-on-region
|
|
355 @kbd{M-|} (@code{shell-command-on-region}) is like @kbd{M-!} but
|
|
356 passes the contents of the region as the standard input to the shell
|
|
357 command, instead of no input. If a numeric argument is used, meaning
|
|
358 insert the output in the current buffer, then the old region is deleted
|
|
359 first and the output replaces it as the contents of the region. It
|
|
360 returns the command's exit status when it is called from a Lisp program.
|
|
361
|
|
362 @vindex shell-file-name
|
|
363 @cindex environment
|
|
364 Both @kbd{M-!} and @kbd{M-|} use @code{shell-file-name} to specify the
|
|
365 shell to use. This variable is initialized based on your @code{SHELL}
|
|
366 environment variable when Emacs is started. If the file name does not
|
|
367 specify a directory, the directories in the list @code{exec-path} are
|
|
368 searched; this list is initialized based on the environment variable
|
|
369 @code{PATH} when Emacs is started. Your @file{.emacs} file can override
|
|
370 either or both of these default initializations.@refill
|
|
371
|
|
372 Both @kbd{M-!} and @kbd{M-|} wait for the shell command to complete.
|
|
373 To stop waiting, type @kbd{C-g} to quit; that terminates the shell
|
|
374 command with the signal @code{SIGINT}---the same signal that @kbd{C-c}
|
|
375 normally generates in the shell. Emacs waits until the command actually
|
|
376 terminates. If the shell command doesn't stop (because it ignores the
|
|
377 @code{SIGINT} signal), type @kbd{C-g} again; this sends the command a
|
|
378 @code{SIGKILL} signal which is impossible to ignore.
|
|
379
|
|
380 To specify a coding system for @kbd{M-!} or @kbd{M-|}, use the command
|
|
381 @kbd{C-x @key{RET} c} immediately beforehand. @xref{Specify Coding}.
|
|
382
|
|
383 @vindex shell-command-default-error-buffer
|
|
384 Error output from the command is normally intermixed with the regular
|
|
385 output. If you set the variable
|
|
386 @code{shell-command-default-error-buffer} to a string, which is a buffer
|
|
387 name, error output is inserted before point in the buffer of that name.
|
|
388
|
|
389 @node Interactive Shell
|
|
390 @subsection Interactive Inferior Shell
|
|
391
|
|
392 @findex shell
|
|
393 To run a subshell interactively, putting its typescript in an Emacs
|
|
394 buffer, use @kbd{M-x shell}. This creates (or reuses) a buffer named
|
|
395 @samp{*shell*} and runs a subshell with input coming from and output going
|
|
396 to that buffer. That is to say, any ``terminal output'' from the subshell
|
|
397 goes into the buffer, advancing point, and any ``terminal input'' for
|
|
398 the subshell comes from text in the buffer. To give input to the subshell,
|
|
399 go to the end of the buffer and type the input, terminated by @key{RET}.
|
|
400
|
|
401 Emacs does not wait for the subshell to do anything. You can switch
|
|
402 windows or buffers and edit them while the shell is waiting, or while it is
|
|
403 running a command. Output from the subshell waits until Emacs has time to
|
|
404 process it; this happens whenever Emacs is waiting for keyboard input or
|
|
405 for time to elapse.
|
|
406
|
|
407 To make multiple subshells, rename the buffer @samp{*shell*} to
|
|
408 something different using @kbd{M-x rename-uniquely}. Then type @kbd{M-x
|
|
409 shell} again to create a new buffer @samp{*shell*} with its own
|
|
410 subshell. If you rename this buffer as well, you can create a third
|
|
411 one, and so on. All the subshells run independently and in parallel.
|
|
412
|
|
413 @vindex explicit-shell-file-name
|
|
414 @cindex @code{ESHELL} environment variable
|
|
415 @cindex @code{SHELL} environment variable
|
|
416 The file name used to load the subshell is the value of the variable
|
|
417 @code{explicit-shell-file-name}, if that is non-@code{nil}. Otherwise,
|
|
418 the environment variable @code{ESHELL} is used, or the environment
|
|
419 variable @code{SHELL} if there is no @code{ESHELL}. If the file name
|
|
420 specified is relative, the directories in the list @code{exec-path} are
|
|
421 searched; this list is initialized based on the environment variable
|
|
422 @code{PATH} when Emacs is started. Your @file{.emacs} file can override
|
|
423 either or both of these default initializations.
|
|
424
|
|
425 To specify a coding system for the shell, you can use the command
|
|
426 @kbd{C-x @key{RET} c} immediately before @kbd{M-x shell}. You can also
|
|
427 specify a coding system after starting the shell by using @kbd{C-x
|
|
428 @key{RET} p} in the shell buffer. @xref{Specify Coding}.
|
|
429
|
|
430 As soon as the subshell is started, it is sent as input the contents
|
|
431 of the file @file{~/.emacs_@var{shellname}}, if that file exists, where
|
|
432 @var{shellname} is the name of the file that the shell was loaded from.
|
|
433 For example, if you use bash, the file sent to it is
|
|
434 @file{~/.emacs_bash}.
|
|
435
|
|
436 @vindex shell-pushd-regexp
|
|
437 @vindex shell-popd-regexp
|
|
438 @vindex shell-cd-regexp
|
|
439 @code{cd}, @code{pushd} and @code{popd} commands given to the inferior
|
|
440 shell are watched by Emacs so it can keep the @samp{*shell*} buffer's
|
|
441 default directory the same as the shell's working directory. These
|
|
442 commands are recognized syntactically by examining lines of input that are
|
|
443 sent. If you use aliases for these commands, you can tell Emacs to
|
|
444 recognize them also. For example, if the value of the variable
|
|
445 @code{shell-pushd-regexp} matches the beginning of a shell command line,
|
|
446 that line is regarded as a @code{pushd} command. Change this variable when
|
|
447 you add aliases for @samp{pushd}. Likewise, @code{shell-popd-regexp} and
|
|
448 @code{shell-cd-regexp} are used to recognize commands with the meaning of
|
|
449 @samp{popd} and @samp{cd}. These commands are recognized only at the
|
|
450 beginning of a shell command line.@refill
|
|
451
|
|
452 @vindex shell-set-directory-error-hook
|
|
453 If Emacs gets an error while trying to handle what it believes is a
|
|
454 @samp{cd}, @samp{pushd} or @samp{popd} command, it runs the hook
|
|
455 @code{shell-set-directory-error-hook} (@pxref{Hooks}).
|
|
456
|
|
457 @findex dirs
|
|
458 If Emacs does not properly track changes in the current directory of
|
|
459 the subshell, use the command @kbd{M-x dirs} to ask the shell what its
|
|
460 current directory is. This command works for shells that support the
|
|
461 most common command syntax; it may not work for unusual shells.
|
|
462
|
|
463 @findex dirtrack-mode
|
|
464 You can also use @kbd{M-x dirtrack-mode} to enable (or disable) an
|
|
465 alternative and more aggressive method of tracking changes in the
|
|
466 current directory.
|
|
467
|
|
468 Emacs defines the environment variable @code{EMACS} in the subshell,
|
|
469 with value @code{t}. A shell script can check this variable to
|
|
470 determine whether it has been run from an Emacs subshell.
|
|
471
|
|
472 @node Shell Mode
|
|
473 @subsection Shell Mode
|
|
474 @cindex Shell mode
|
|
475 @cindex mode, Shell
|
|
476
|
|
477 Shell buffers use Shell mode, which defines several special keys
|
|
478 attached to the @kbd{C-c} prefix. They are chosen to resemble the usual
|
|
479 editing and job control characters present in shells that are not under
|
|
480 Emacs, except that you must type @kbd{C-c} first. Here is a complete list
|
|
481 of the special key bindings of Shell mode:
|
|
482
|
|
483 @table @kbd
|
|
484 @item @key{RET}
|
|
485 @kindex RET @r{(Shell mode)}
|
|
486 @findex comint-send-input
|
|
487 At end of buffer send line as input; otherwise, copy current line to end
|
|
488 of buffer and send it (@code{comint-send-input}). When a line is
|
|
489 copied, any text at the beginning of the line that matches the variable
|
|
490 @code{shell-prompt-pattern} is left out; this variable's value should be
|
|
491 a regexp string that matches the prompts that your shell uses.
|
|
492
|
|
493 @item @key{TAB}
|
|
494 @kindex TAB @r{(Shell mode)}
|
|
495 @findex comint-dynamic-complete
|
|
496 Complete the command name or file name before point in the shell buffer
|
|
497 (@code{comint-dynamic-complete}). @key{TAB} also completes history
|
|
498 references (@pxref{History References}) and environment variable names.
|
|
499
|
|
500 @vindex shell-completion-fignore
|
|
501 @vindex comint-completion-fignore
|
|
502 The variable @code{shell-completion-fignore} specifies a list of file
|
|
503 name extensions to ignore in Shell mode completion. The default setting
|
|
504 ignores file names ending in @samp{~}, @samp{#} or @samp{%}. Other
|
|
505 related Comint modes use the variable @code{comint-completion-fignore}
|
|
506 instead.
|
|
507
|
|
508 @item M-?
|
|
509 @kindex M-? @r{(Shell mode)}
|
|
510 @findex comint-dynamic-list-filename@dots{}
|
|
511 Display temporarily a list of the possible completions of the file name
|
|
512 before point in the shell buffer
|
|
513 (@code{comint-dynamic-list-filename-completions}).
|
|
514
|
|
515 @item C-d
|
|
516 @kindex C-d @r{(Shell mode)}
|
|
517 @findex comint-delchar-or-maybe-eof
|
26290
|
518 Either delete a character or send @sc{eof}
|
25829
|
519 (@code{comint-delchar-or-maybe-eof}). Typed at the end of the shell
|
26290
|
520 buffer, @kbd{C-d} sends @sc{eof} to the subshell. Typed at any other
|
25829
|
521 position in the buffer, @kbd{C-d} deletes a character as usual.
|
|
522
|
|
523 @item C-c C-a
|
|
524 @kindex C-c C-a @r{(Shell mode)}
|
|
525 @findex comint-bol
|
|
526 Move to the beginning of the line, but after the prompt if any
|
|
527 (@code{comint-bol}). If you repeat this command twice in a row, the
|
|
528 second time it moves back to the process mark, which is the beginning of
|
|
529 the input that you have not yet sent to the subshell. (Normally that is
|
|
530 the same place---the end of the prompt on this line---but after @kbd{C-c
|
|
531 @key{SPC}} the process mark may be in a previous line.)
|
|
532
|
|
533 @item C-c @key{SPC}
|
|
534 Accumulate multiple lines of input, then send them together. This
|
|
535 command inserts a newline before point, but does not send the preceding
|
|
536 text as input to the subshell---at least, not yet. Both lines, the one
|
|
537 before this newline and the one after, will be sent together (along with
|
|
538 the newline that separates them), when you type @key{RET}.
|
|
539
|
|
540 @item C-c C-u
|
|
541 @kindex C-c C-u @r{(Shell mode)}
|
|
542 @findex comint-kill-input
|
|
543 Kill all text pending at end of buffer to be sent as input
|
|
544 (@code{comint-kill-input}).
|
|
545
|
|
546 @item C-c C-w
|
|
547 @kindex C-c C-w @r{(Shell mode)}
|
|
548 Kill a word before point (@code{backward-kill-word}).
|
|
549
|
|
550 @item C-c C-c
|
|
551 @kindex C-c C-c @r{(Shell mode)}
|
|
552 @findex comint-interrupt-subjob
|
|
553 Interrupt the shell or its current subjob if any
|
|
554 (@code{comint-interrupt-subjob}). This command also kills
|
|
555 any shell input pending in the shell buffer and not yet sent.
|
|
556
|
|
557 @item C-c C-z
|
|
558 @kindex C-c C-z @r{(Shell mode)}
|
|
559 @findex comint-stop-subjob
|
|
560 Stop the shell or its current subjob if any (@code{comint-stop-subjob}).
|
|
561 This command also kills any shell input pending in the shell buffer and
|
|
562 not yet sent.
|
|
563
|
|
564 @item C-c C-\
|
|
565 @findex comint-quit-subjob
|
|
566 @kindex C-c C-\ @r{(Shell mode)}
|
|
567 Send quit signal to the shell or its current subjob if any
|
|
568 (@code{comint-quit-subjob}). This command also kills any shell input
|
|
569 pending in the shell buffer and not yet sent.
|
|
570
|
|
571 @item C-c C-o
|
|
572 @kindex C-c C-o @r{(Shell mode)}
|
|
573 @findex comint-kill-output
|
|
574 Kill the last batch of output from a shell command
|
|
575 (@code{comint-kill-output}). This is useful if a shell command spews
|
|
576 out lots of output that just gets in the way.
|
|
577
|
|
578 @item C-c C-r
|
|
579 @itemx C-M-l
|
|
580 @kindex C-c C-r @r{(Shell mode)}
|
|
581 @kindex C-M-l @r{(Shell mode)}
|
|
582 @findex comint-show-output
|
|
583 Scroll to display the beginning of the last batch of output at the top
|
|
584 of the window; also move the cursor there (@code{comint-show-output}).
|
|
585
|
|
586 @item C-c C-e
|
|
587 @kindex C-c C-e @r{(Shell mode)}
|
|
588 @findex comint-show-maximum-output
|
|
589 Scroll to put the end of the buffer at the bottom of the window
|
|
590 (@code{comint-show-maximum-output}).
|
|
591
|
|
592 @item C-c C-f
|
|
593 @kindex C-c C-f @r{(Shell mode)}
|
|
594 @findex shell-forward-command
|
|
595 @vindex shell-command-regexp
|
|
596 Move forward across one shell command, but not beyond the current line
|
|
597 (@code{shell-forward-command}). The variable @code{shell-command-regexp}
|
|
598 specifies how to recognize the end of a command.
|
|
599
|
|
600 @item C-c C-b
|
|
601 @kindex C-c C-b @r{(Shell mode)}
|
|
602 @findex shell-backward-command
|
|
603 Move backward across one shell command, but not beyond the current line
|
|
604 (@code{shell-backward-command}).
|
|
605
|
|
606 @item C-c C-l
|
|
607 @kindex C-c C-l @r{(Shell mode)}
|
|
608 @findex comint-dynamic-list-input-ring
|
|
609 Display the buffer's history of shell commands in another window
|
|
610 (@code{comint-dynamic-list-input-ring}).
|
|
611
|
|
612 @item M-x dirs
|
|
613 Ask the shell what its current directory is, so that Emacs can agree
|
|
614 with the shell.
|
|
615
|
|
616 @item M-x send-invisible @key{RET} @var{text} @key{RET}
|
|
617 @findex send-invisible
|
|
618 Send @var{text} as input to the shell, after reading it without
|
|
619 echoing. This is useful when a shell command runs a program that asks
|
|
620 for a password.
|
|
621
|
|
622 Alternatively, you can arrange for Emacs to notice password prompts
|
|
623 and turn off echoing for them, as follows:
|
|
624
|
|
625 @example
|
|
626 (add-hook 'comint-output-filter-functions
|
|
627 'comint-watch-for-password-prompt)
|
|
628 @end example
|
|
629
|
|
630 @item M-x comint-continue-subjob
|
|
631 @findex comint-continue-subjob
|
|
632 Continue the shell process. This is useful if you accidentally suspend
|
|
633 the shell process.@footnote{You should not suspend the shell process.
|
|
634 Suspending a subjob of the shell is a completely different matter---that
|
|
635 is normal practice, but you must use the shell to continue the subjob;
|
|
636 this command won't do it.}
|
|
637
|
|
638 @item M-x comint-strip-ctrl-m
|
|
639 @findex comint-strip-ctrl-m
|
|
640 Discard all control-M characters from the current group of shell output.
|
|
641 The most convenient way to use this command is to make it run
|
|
642 automatically when you get output from the subshell. To do that,
|
|
643 evaluate this Lisp expression:
|
|
644
|
|
645 @example
|
|
646 (add-hook 'comint-output-filter-functions
|
|
647 'comint-strip-ctrl-m)
|
|
648 @end example
|
|
649
|
|
650 @item M-x comint-truncate-buffer
|
|
651 @findex comint-truncate-buffer
|
|
652 This command truncates the shell buffer to a certain maximum number of
|
|
653 lines, specified by the variable @code{comint-buffer-maximum-size}.
|
|
654 Here's how to do this automatically each time you get output from the
|
|
655 subshell:
|
|
656
|
|
657 @example
|
|
658 (add-hook 'comint-output-filter-functions
|
|
659 'comint-truncate-buffer)
|
|
660 @end example
|
|
661 @end table
|
|
662
|
|
663 Shell mode also customizes the paragraph commands so that only shell
|
|
664 prompts start new paragraphs. Thus, a paragraph consists of an input
|
|
665 command plus the output that follows it in the buffer.
|
|
666
|
|
667 @cindex Comint mode
|
|
668 @cindex mode, Comint
|
|
669 Shell mode is a derivative of Comint mode, a general-purpose mode for
|
|
670 communicating with interactive subprocesses. Most of the features of
|
|
671 Shell mode actually come from Comint mode, as you can see from the
|
|
672 command names listed above. The special features of Shell mode in
|
|
673 particular include the choice of regular expression for detecting
|
|
674 prompts, the directory tracking feature, and a few user commands.
|
|
675
|
|
676 Other Emacs features that use variants of Comint mode include GUD
|
|
677 (@pxref{Debuggers}) and @kbd{M-x run-lisp} (@pxref{External Lisp}).
|
|
678
|
|
679 @findex comint-run
|
|
680 You can use @kbd{M-x comint-run} to execute any program of your choice
|
|
681 in a subprocess using unmodified Comint mode---without the
|
|
682 specializations of Shell mode.
|
|
683
|
|
684 @node Shell History
|
|
685 @subsection Shell Command History
|
|
686
|
|
687 Shell buffers support three ways of repeating earlier commands. You
|
|
688 can use the same keys used in the minibuffer; these work much as they do
|
|
689 in the minibuffer, inserting text from prior commands while point
|
|
690 remains always at the end of the buffer. You can move through the
|
|
691 buffer to previous inputs in their original place, then resubmit them or
|
|
692 copy them to the end. Or you can use a @samp{!}-style history
|
|
693 reference.
|
|
694
|
|
695 @menu
|
|
696 * Ring: Shell Ring. Fetching commands from the history list.
|
|
697 * Copy: Shell History Copying. Moving to a command and then copying it.
|
|
698 * History References:: Expanding @samp{!}-style history references.
|
|
699 @end menu
|
|
700
|
|
701 @node Shell Ring
|
|
702 @subsubsection Shell History Ring
|
|
703
|
|
704 @table @kbd
|
|
705 @findex comint-previous-input
|
|
706 @kindex M-p @r{(Shell mode)}
|
|
707 @item M-p
|
|
708 Fetch the next earlier old shell command.
|
|
709
|
|
710 @kindex M-n @r{(Shell mode)}
|
|
711 @findex comint-next-input
|
|
712 @item M-n
|
|
713 Fetch the next later old shell command.
|
|
714
|
|
715 @kindex M-r @r{(Shell mode)}
|
|
716 @kindex M-s @r{(Shell mode)}
|
|
717 @findex comint-previous-matching-input
|
|
718 @findex comint-next-matching-input
|
|
719 @item M-r @var{regexp} @key{RET}
|
|
720 @itemx M-s @var{regexp} @key{RET}
|
|
721 Search backwards or forwards for old shell commands that match @var{regexp}.
|
|
722
|
|
723 @item C-c C-x @r{(Shell mode)}
|
|
724 @findex comint-get-next-from-history
|
|
725 Fetch the next subsequent command from the history.
|
|
726 @end table
|
|
727
|
|
728 Shell buffers provide a history of previously entered shell commands. To
|
|
729 reuse shell commands from the history, use the editing commands @kbd{M-p},
|
|
730 @kbd{M-n}, @kbd{M-r} and @kbd{M-s}. These work just like the minibuffer
|
|
731 history commands except that they operate on the text at the end of the
|
|
732 shell buffer, where you would normally insert text to send to the shell.
|
|
733
|
|
734 @kbd{M-p} fetches an earlier shell command to the end of the shell buffer.
|
|
735 Successive use of @kbd{M-p} fetches successively earlier shell commands,
|
|
736 each replacing any text that was already present as potential shell input.
|
|
737 @kbd{M-n} does likewise except that it finds successively more recent shell
|
|
738 commands from the buffer.
|
|
739
|
|
740 The history search commands @kbd{M-r} and @kbd{M-s} read a regular
|
|
741 expression and search through the history for a matching command. Aside
|
|
742 from the choice of which command to fetch, they work just like @kbd{M-p}
|
|
743 and @kbd{M-r}. If you enter an empty regexp, these commands reuse the
|
|
744 same regexp used last time.
|
|
745
|
|
746 When you find the previous input you want, you can resubmit it by
|
|
747 typing @key{RET}, or you can edit it first and then resubmit it if you
|
|
748 wish.
|
|
749
|
|
750 Often it is useful to reexecute several successive shell commands that
|
|
751 were previously executed in sequence. To do this, first find and
|
|
752 reexecute the first command of the sequence. Then type @kbd{C-c C-x};
|
|
753 that will fetch the following command---the one that follows the command
|
|
754 you just repeated. Then type @key{RET} to reexecute this command. You
|
|
755 can reexecute several successive commands by typing @kbd{C-c C-x
|
|
756 @key{RET}} over and over.
|
|
757
|
|
758 These commands get the text of previous shell commands from a special
|
|
759 history list, not from the shell buffer itself. Thus, editing the shell
|
|
760 buffer, or even killing large parts of it, does not affect the history
|
|
761 that these commands access.
|
|
762
|
|
763 @vindex shell-input-ring-file-name
|
|
764 Some shells store their command histories in files so that you can
|
|
765 refer to previous commands from previous shell sessions. Emacs reads
|
|
766 the command history file for your chosen shell, to initialize its own
|
|
767 command history. The file name is @file{~/.bash_history} for bash,
|
|
768 @file{~/.sh_history} for ksh, and @file{~/.history} for other shells.
|
|
769
|
|
770 @node Shell History Copying
|
|
771 @subsubsection Shell History Copying
|
|
772
|
|
773 @table @kbd
|
|
774 @kindex C-c C-p @r{(Shell mode)}
|
|
775 @findex comint-previous-prompt
|
|
776 @item C-c C-p
|
|
777 Move point to the previous prompt (@code{comint-previous-prompt}).
|
|
778
|
|
779 @kindex C-c C-n @r{(Shell mode)}
|
|
780 @findex comint-next-prompt
|
|
781 @item C-c C-n
|
|
782 Move point to the following prompt (@code{comint-next-prompt}).
|
|
783
|
|
784 @kindex C-c RET @r{(Shell mode)}
|
|
785 @findex comint-copy-old-input
|
|
786 @item C-c @key{RET}
|
|
787 Copy the input command which point is in, inserting the copy at the end
|
|
788 of the buffer (@code{comint-copy-old-input}). This is useful if you
|
|
789 move point back to a previous command. After you copy the command, you
|
|
790 can submit the copy as input with @key{RET}. If you wish, you can
|
|
791 edit the copy before resubmitting it.
|
|
792 @end table
|
|
793
|
|
794 Moving to a previous input and then copying it with @kbd{C-c
|
|
795 @key{RET}} produces the same results---the same buffer contents---that
|
|
796 you would get by using @kbd{M-p} enough times to fetch that previous
|
|
797 input from the history list. However, @kbd{C-c @key{RET}} copies the
|
|
798 text from the buffer, which can be different from what is in the history
|
|
799 list if you edit the input text in the buffer after it has been sent.
|
|
800
|
|
801 @node History References
|
|
802 @subsubsection Shell History References
|
|
803 @cindex history reference
|
|
804
|
|
805 Various shells including csh and bash support @dfn{history references}
|
|
806 that begin with @samp{!} and @samp{^}. Shell mode can understand these
|
|
807 constructs and perform the history substitution for you. If you insert
|
|
808 a history reference and type @key{TAB}, this searches the input history
|
|
809 for a matching command, performs substitution if necessary, and places
|
|
810 the result in the buffer in place of the history reference. For
|
|
811 example, you can fetch the most recent command beginning with @samp{mv}
|
|
812 with @kbd{! m v @key{TAB}}. You can edit the command if you wish, and
|
|
813 then resubmit the command to the shell by typing @key{RET}.
|
|
814
|
|
815 @vindex shell-prompt-pattern
|
|
816 @vindex comint-prompt-regexp
|
|
817 History references take effect only following a shell prompt. The
|
|
818 variable @code{shell-prompt-pattern} specifies how to recognize a shell
|
|
819 prompt. Comint modes in general use the variable
|
|
820 @code{comint-prompt-regexp} to specify how to find a prompt; Shell mode
|
|
821 uses @code{shell-prompt-pattern} to set up the local value of
|
|
822 @code{comint-prompt-regexp}.
|
|
823
|
|
824 @vindex comint-input-autoexpand
|
|
825 Shell mode can optionally expand history references in the buffer when
|
|
826 you send them to the shell. To request this, set the variable
|
|
827 @code{comint-input-autoexpand} to @code{input}.
|
|
828
|
|
829 @findex comint-magic-space
|
|
830 You can make @key{SPC} perform history expansion by binding @key{SPC} to
|
|
831 the command @code{comint-magic-space}.
|
|
832
|
|
833 @node Shell Options
|
|
834 @subsection Shell Mode Options
|
|
835
|
|
836 @vindex comint-scroll-to-bottom-on-input
|
|
837 If the variable @code{comint-scroll-to-bottom-on-input} is
|
|
838 non-@code{nil}, insertion and yank commands scroll the selected window
|
|
839 to the bottom before inserting.
|
|
840
|
|
841 @vindex comint-scroll-show-maximum-output
|
|
842 If @code{comint-scroll-show-maximum-output} is non-@code{nil}, then
|
|
843 scrolling due to arrival of output tries to place the last line of text
|
|
844 at the bottom line of the window, so as to show as much useful text as
|
|
845 possible. (This mimics the scrolling behavior of many terminals.)
|
|
846 The default is @code{nil}.
|
|
847
|
|
848 @vindex comint-scroll-to-bottom-on-output
|
|
849 By setting @code{comint-scroll-to-bottom-on-output}, you can opt for
|
|
850 having point jump to the end of the buffer whenever output arrives---no
|
|
851 matter where in the buffer point was before. If the value is
|
|
852 @code{this}, point jumps in the selected window. If the value is
|
|
853 @code{all}, point jumps in each window that shows the comint buffer. If
|
|
854 the value is @code{other}, point jumps in all nonselected windows that
|
|
855 show the current buffer. The default value is @code{nil}, which means
|
|
856 point does not jump to the end.
|
|
857
|
|
858 @vindex comint-input-ignoredups
|
|
859 The variable @code{comint-input-ignoredups} controls whether successive
|
|
860 identical inputs are stored in the input history. A non-@code{nil}
|
|
861 value means to omit an input that is the same as the previous input.
|
|
862 The default is @code{nil}, which means to store each input even if it is
|
|
863 equal to the previous input.
|
|
864
|
|
865 @vindex comint-completion-addsuffix
|
|
866 @vindex comint-completion-recexact
|
|
867 @vindex comint-completion-autolist
|
|
868 Three variables customize file name completion. The variable
|
|
869 @code{comint-completion-addsuffix} controls whether completion inserts a
|
|
870 space or a slash to indicate a fully completed file or directory name
|
|
871 (non-@code{nil} means do insert a space or slash).
|
|
872 @code{comint-completion-recexact}, if non-@code{nil}, directs @key{TAB}
|
|
873 to choose the shortest possible completion if the usual Emacs completion
|
|
874 algorithm cannot add even a single character.
|
|
875 @code{comint-completion-autolist}, if non-@code{nil}, says to list all
|
|
876 the possible completions whenever completion is not exact.
|
|
877
|
|
878 @findex comint-dynamic-complete-variable
|
|
879 The command @code{comint-dynamic-complete-variable} does variable-name
|
|
880 completion using the environment variables as set within Emacs. The
|
|
881 variables controlling file name completion apply to variable-name
|
|
882 completion too. This command is normally available through the menu
|
|
883 bar.
|
|
884
|
|
885 @vindex shell-command-execonly
|
|
886 Command completion normally considers only executable files.
|
|
887 If you set @code{shell-command-execonly} to @code{nil},
|
|
888 it considers nonexecutable files as well.
|
|
889
|
|
890 @findex shell-pushd-tohome
|
|
891 @findex shell-pushd-dextract
|
|
892 @findex shell-pushd-dunique
|
|
893 You can configure the behavior of @samp{pushd}. Variables control
|
|
894 whether @samp{pushd} behaves like @samp{cd} if no argument is given
|
|
895 (@code{shell-pushd-tohome}), pop rather than rotate with a numeric
|
|
896 argument (@code{shell-pushd-dextract}), and only add directories to the
|
|
897 directory stack if they are not already on it
|
|
898 (@code{shell-pushd-dunique}). The values you choose should match the
|
|
899 underlying shell, of course.
|
|
900
|
|
901 @node Remote Host
|
|
902 @subsection Remote Host Shell
|
|
903 @cindex remote host
|
|
904 @cindex connecting to remote host
|
|
905 @cindex Telnet
|
|
906 @cindex Rlogin
|
|
907
|
|
908 Emacs provides two commands for logging in to another computer
|
|
909 and communicating with it through an Emacs buffer.
|
|
910
|
|
911 @table @kbd
|
|
912 @item M-x telnet @key{RET} @var{hostname} @key{RET}
|
|
913 Set up a Telnet connection to the computer named @var{hostname}.
|
|
914 @item M-x rlogin @key{RET} @var{hostname} @key{RET}
|
|
915 Set up an Rlogin connection to the computer named @var{hostname}.
|
|
916 @end table
|
|
917
|
|
918 @findex telnet
|
|
919 Use @kbd{M-x telnet} to set up a Telnet connection to another
|
|
920 computer. (Telnet is the standard Internet protocol for remote login.)
|
|
921 It reads the host name of the other computer as an argument with the
|
|
922 minibuffer. Once the connection is established, talking to the other
|
|
923 computer works like talking to a subshell: you can edit input with the
|
|
924 usual Emacs commands, and send it a line at a time by typing @key{RET}.
|
|
925 The output is inserted in the Telnet buffer interspersed with the input.
|
|
926
|
|
927 @findex rlogin
|
|
928 @vindex rlogin-explicit-args
|
|
929 Use @kbd{M-x rlogin} to set up an Rlogin connection. Rlogin is
|
|
930 another remote login communication protocol, essentially much like the
|
|
931 Telnet protocol but incompatible with it, and supported only by certain
|
|
932 systems. Rlogin's advantages are that you can arrange not to have to
|
|
933 give your user name and password when communicating between two machines
|
|
934 you frequently use, and that you can make an 8-bit-clean connection.
|
|
935 (To do that in Emacs, set @code{rlogin-explicit-args} to @code{("-8")}
|
|
936 before you run Rlogin.)
|
|
937
|
|
938 @kbd{M-x rlogin} sets up the default file directory of the Emacs
|
|
939 buffer to access the remote host via FTP (@pxref{File Names}), and it
|
|
940 tracks the shell commands that change the current directory, just like
|
|
941 Shell mode.
|
|
942
|
|
943 @findex rlogin-directory-tracking-mode
|
|
944 There are two ways of doing directory tracking in an Rlogin
|
|
945 buffer---either with remote directory names
|
|
946 @file{/@var{host}:@var{dir}/} or with local names (that works if the
|
|
947 ``remote'' machine shares file systems with your machine of origin).
|
|
948 You can use the command @code{rlogin-directory-tracking-mode} to switch
|
|
949 modes. No argument means use remote directory names, a positive
|
|
950 argument means use local names, and a negative argument means turn
|
|
951 off directory tracking.
|
|
952
|
|
953 @node Emacs Server, Hardcopy, Shell, Top
|
|
954 @section Using Emacs as a Server
|
|
955 @pindex emacsclient
|
|
956 @cindex Emacs as a server
|
|
957 @cindex server, using Emacs as
|
|
958 @cindex @code{EDITOR} environment variable
|
|
959
|
|
960 Various programs such as @code{mail} can invoke your choice of editor
|
|
961 to edit a particular piece of text, such as a message that you are
|
|
962 sending. By convention, most of these programs use the environment
|
|
963 variable @code{EDITOR} to specify which editor to run. If you set
|
|
964 @code{EDITOR} to @samp{emacs}, they invoke Emacs---but in an
|
|
965 inconvenient fashion, by starting a new, separate Emacs process. This
|
|
966 is inconvenient because it takes time and because the new Emacs process
|
|
967 doesn't share the buffers in the existing Emacs process.
|
|
968
|
|
969 You can arrange to use your existing Emacs process as the editor for
|
|
970 programs like @code{mail} by using the Emacs client and Emacs server
|
|
971 programs. Here is how.
|
|
972
|
|
973 @cindex @code{TEXEDIT} environment variable
|
|
974 First, the preparation. Within Emacs, call the function
|
|
975 @code{server-start}. (Your @file{.emacs} file can do this automatically
|
|
976 if you add the expression @code{(server-start)} to it.) Then, outside
|
|
977 Emacs, set the @code{EDITOR} environment variable to @samp{emacsclient}.
|
|
978 (Note that some programs use a different environment variable; for
|
|
979 example, to make @TeX{} use @samp{emacsclient}, you should set the
|
|
980 @code{TEXEDIT} environment variable to @samp{emacsclient +%d %s}.)
|
|
981
|
|
982 @kindex C-x #
|
|
983 @findex server-edit
|
|
984 Then, whenever any program invokes your specified @code{EDITOR}
|
|
985 program, the effect is to send a message to your principal Emacs telling
|
|
986 it to visit a file. (That's what the program @code{emacsclient} does.)
|
|
987 Emacs displays the buffer immediately and you can immediately begin
|
|
988 editing it.
|
|
989
|
|
990 When you've finished editing that buffer, type @kbd{C-x #}
|
|
991 (@code{server-edit}). This saves the file and sends a message back to
|
|
992 the @code{emacsclient} program telling it to exit. The programs that
|
|
993 use @code{EDITOR} wait for the ``editor'' (actually, @code{emacsclient})
|
|
994 to exit. @kbd{C-x #} also checks for other pending external requests
|
|
995 to edit various files, and selects the next such file.
|
|
996
|
|
997 You can switch to a server buffer manually if you wish; you don't have
|
|
998 to arrive at it with @kbd{C-x #}. But @kbd{C-x #} is the only way to
|
|
999 say that you are ``finished'' with one.
|
|
1000
|
|
1001 @vindex server-window
|
|
1002 If you set the variable @code{server-window} to a window or a frame,
|
|
1003 @kbd{C-x #} displays the server buffer in that window or in that frame.
|
|
1004
|
|
1005 While @code{mail} or another application is waiting for
|
|
1006 @code{emacsclient} to finish, @code{emacsclient} does not read terminal
|
|
1007 input. So the terminal that @code{mail} was using is effectively
|
|
1008 blocked for the duration. In order to edit with your principal Emacs,
|
|
1009 you need to be able to use it without using that terminal. There are
|
|
1010 two ways to do this:
|
|
1011
|
|
1012 @itemize @bullet
|
|
1013 @item
|
|
1014 Using a window system, run @code{mail} and the principal Emacs in two
|
|
1015 separate windows. While @code{mail} is waiting for @code{emacsclient},
|
|
1016 the window where it was running is blocked, but you can use Emacs by
|
|
1017 switching windows.
|
|
1018
|
|
1019 @item
|
|
1020 Use Shell mode in Emacs to run the other program such as @code{mail};
|
|
1021 then, @code{emacsclient} blocks only the subshell under Emacs, and you
|
|
1022 can still use Emacs to edit the file.
|
|
1023 @end itemize
|
|
1024
|
|
1025 @vindex server-temp-file-regexp
|
|
1026 Some programs write temporary files for you to edit. After you edit
|
|
1027 the temporary file, the program reads it back and deletes it. If the
|
|
1028 Emacs server is later asked to edit the same file name, it should assume
|
|
1029 this has nothing to do with the previous occasion for that file name.
|
|
1030 The server accomplishes this by killing the temporary file's buffer when
|
|
1031 you finish with the file. Use the variable
|
|
1032 @code{server-temp-file-regexp} to specify which files are temporary in
|
|
1033 this sense; its value should be a regular expression that matches file
|
|
1034 names that are temporary.
|
|
1035
|
|
1036 If you run @code{emacsclient} with the option @samp{--no-wait}, it
|
|
1037 returns immediately without waiting for you to ``finish'' the buffer in
|
|
1038 Emacs.
|
|
1039
|
|
1040 @menu
|
|
1041 * Invoking emacsclient::
|
|
1042 @end menu
|
|
1043
|
|
1044 @node Invoking emacsclient,, Emacs Server, Emacs Server
|
|
1045 @section Invoking @code{emacsclient}
|
|
1046
|
|
1047 To run the @code{emacsclient} program, specify file names as arguments,
|
|
1048 and optionally line numbers as well. Do it like this:
|
|
1049
|
|
1050 @example
|
|
1051 emacsclient @r{@{}@r{[}+@var{line}@r{]} @var{filename}@r{@}}@dots{}
|
|
1052 @end example
|
|
1053
|
|
1054 This tells Emacs to visit each of the specified files; if you specify a
|
|
1055 line number for a certain file, Emacs moves to that line in the file.
|
|
1056
|
|
1057 Ordinarily, @code{emacsclient} does not return until you use the
|
|
1058 @kbd{C-x #} command on each of these buffers. When that happens, Emacs
|
|
1059 sends a message to the @code{emacsclient} program telling it to return.
|
|
1060
|
|
1061 But if you use the option @samp{-n} or @samp{--no-wait} when running
|
|
1062 @code{emacsclient}, then it returns immediately. (You can take as long
|
|
1063 as you like to edit the files in Emacs.)
|
|
1064
|
|
1065
|
|
1066 @node Hardcopy, Postscript, Emacs Server, Top
|
|
1067 @section Hardcopy Output
|
|
1068 @cindex hardcopy
|
|
1069
|
|
1070 The Emacs commands for making hardcopy let you print either an entire
|
|
1071 buffer or just part of one, either with or without page headers.
|
|
1072 See also the hardcopy commands of Dired (@pxref{Misc File Ops})
|
|
1073 and the diary (@pxref{Diary Commands}).
|
|
1074
|
|
1075 @table @kbd
|
|
1076 @item M-x print-buffer
|
|
1077 Print hardcopy of current buffer with page headings containing the file
|
|
1078 name and page number.
|
|
1079 @item M-x lpr-buffer
|
|
1080 Print hardcopy of current buffer without page headings.
|
|
1081 @item M-x print-region
|
|
1082 Like @code{print-buffer} but print only the current region.
|
|
1083 @item M-x lpr-region
|
|
1084 Like @code{lpr-buffer} but print only the current region.
|
|
1085 @end table
|
|
1086
|
|
1087 @findex print-buffer
|
|
1088 @findex print-region
|
|
1089 @findex lpr-buffer
|
|
1090 @findex lpr-region
|
|
1091 @vindex lpr-switches
|
|
1092 The hardcopy commands (aside from the Postscript commands) pass extra
|
|
1093 switches to the @code{lpr} program based on the value of the variable
|
|
1094 @code{lpr-switches}. Its value should be a list of strings, each string
|
|
1095 an option starting with @samp{-}. For example, to specify a line width
|
|
1096 of 80 columns for all the printing you do in Emacs, set
|
|
1097 @code{lpr-switches} like this:
|
|
1098
|
|
1099 @example
|
|
1100 (setq lpr-switches '("-w80"))
|
|
1101 @end example
|
|
1102
|
|
1103 @vindex printer-name
|
|
1104 You can specify the printer to use by setting the variable
|
|
1105 @code{printer-name}.
|
|
1106
|
|
1107 @vindex lpr-headers-switches
|
|
1108 @vindex lpr-commands
|
|
1109 @vindex lpr-add-switches
|
|
1110 The variable @code{lpr-command} specifies the name of the printer
|
|
1111 program to run; the default value depends on your operating system type.
|
|
1112 On most systems, the default is @code{"lpr"}. The variable
|
|
1113 @code{lpr-headers-switches} similarly specifies the extra switches to
|
|
1114 use to make page headers. The variable @code{lpr-add-switches} controls
|
|
1115 whether to supply @samp{-T} and @samp{-J} options (suitable for
|
|
1116 @code{lpr}) to the printer program: @code{nil} means don't add them.
|
|
1117 @code{lpr-add-switches} should be @code{nil} if your printer program is
|
|
1118 not compatible with @code{lpr}.
|
|
1119
|
|
1120 @node Postscript, Postscript Variables, Hardcopy, Top
|
|
1121 @section Postscript Hardcopy
|
|
1122
|
|
1123 These commands convert buffer contents to Postscript,
|
|
1124 either printing it or leaving it in another Emacs buffer.
|
|
1125
|
|
1126 @table @kbd
|
|
1127 @item M-x ps-print-buffer
|
|
1128 Print hardcopy of the current buffer in Postscript form.
|
|
1129 @item M-x ps-print-region
|
|
1130 Print hardcopy of the current region in Postscript form.
|
|
1131 @item M-x ps-print-buffer-with-faces
|
|
1132 Print hardcopy of the current buffer in Postscript form, showing the
|
|
1133 faces used in the text by means of Postscript features.
|
|
1134 @item M-x ps-print-region-with-faces
|
|
1135 Print hardcopy of the current region in Postscript form, showing the
|
|
1136 faces used in the text.
|
|
1137 @item M-x ps-spool-buffer
|
|
1138 Generate Postscript for the current buffer text.
|
|
1139 @item M-x ps-spool-region
|
|
1140 Generate Postscript for the current region.
|
|
1141 @item M-x ps-spool-buffer-with-faces
|
|
1142 Generate Postscript for the current buffer, showing the faces used.
|
|
1143 @item M-x ps-spool-region-with-faces
|
|
1144 Generate Postscript for the current region, showing the faces used.
|
|
1145 @end table
|
|
1146
|
|
1147 @findex ps-print-region
|
|
1148 @findex ps-print-buffer
|
|
1149 @findex ps-print-region-with-faces
|
|
1150 @findex ps-print-buffer-with-faces
|
|
1151 The Postscript commands, @code{ps-print-buffer} and
|
|
1152 @code{ps-print-region}, print buffer contents in Postscript form. One
|
|
1153 command prints the entire buffer; the other, just the region. The
|
|
1154 corresponding @samp{-with-faces} commands,
|
|
1155 @code{ps-print-buffer-with-faces} and @code{ps-print-region-with-faces},
|
|
1156 use Postscript features to show the faces (fonts and colors) in the text
|
|
1157 properties of the text being printed.
|
|
1158
|
|
1159 If you are using a color display, you can print a buffer of program
|
|
1160 code with color highlighting by turning on Font-Lock mode in that
|
|
1161 buffer, and using @code{ps-print-buffer-with-faces}.
|
|
1162
|
|
1163 @findex ps-spool-region
|
|
1164 @findex ps-spool-buffer
|
|
1165 @findex ps-spool-region-with-faces
|
|
1166 @findex ps-spool-buffer-with-faces
|
|
1167 The commands whose names have @samp{spool} instead of @samp{print}
|
|
1168 generate the Postscript output in an Emacs buffer instead of sending
|
|
1169 it to the printer.
|
|
1170
|
|
1171 @ifinfo
|
|
1172 The following section describes variables for customizing these commands.
|
|
1173 @end ifinfo
|
|
1174
|
|
1175 @node Postscript Variables, Sorting, Postscript, Top
|
|
1176 @section Variables for Postscript Hardcopy
|
|
1177
|
|
1178 @vindex ps-lpr-command
|
|
1179 @vindex ps-lpr-switches
|
|
1180 @vindex ps-printer-name
|
|
1181 All the Postscript hardcopy commands use the variables
|
|
1182 @code{ps-lpr-command} and @code{ps-lpr-switches} to specify how to print
|
|
1183 the output. @code{ps-lpr-command} specifies the command name to run,
|
|
1184 @code{ps-lpr-switches} specifies command line options to use, and
|
|
1185 @code{ps-printer-name} specifies the printer. If you don't set the
|
|
1186 first two variables yourself, they take their initial values from
|
|
1187 @code{lpr-command} and @code{lpr-switches}. If @code{ps-printer-name}
|
|
1188 is @code{nil}, @code{printer-name} is used.
|
|
1189
|
|
1190 @vindex ps-print-header
|
|
1191 @vindex ps-print-color-p
|
|
1192 The variable @code{ps-print-header} controls whether these commands
|
|
1193 add header lines to each page---set it to @code{nil} to turn headers
|
|
1194 off. You can turn off color processing by setting
|
|
1195 @code{ps-print-color-p} to @code{nil}.
|
|
1196
|
|
1197 @vindex ps-paper-type
|
|
1198 @vindex ps-page-dimensions-database
|
|
1199 The variable @code{ps-paper-type} specifies which size of paper to
|
|
1200 format for; legitimate values include @code{a4}, @code{a3},
|
|
1201 @code{a4small}, @code{b4}, @code{b5}, @code{executive}, @code{ledger},
|
|
1202 @code{legal}, @code{letter}, @code{letter-small}, @code{statement},
|
|
1203 @code{tabloid}. The default is @code{letter}. You can define
|
|
1204 additional paper sizes by changing the variable
|
|
1205 @code{ps-page-dimensions-database}.
|
|
1206
|
|
1207 @vindex ps-landscape-mode
|
|
1208 The variable @code{ps-landscape-mode} specifies the orientation of
|
|
1209 printing on the page. The default is @code{nil}, which stands for
|
|
1210 ``portrait'' mode. Any non-@code{nil} value specifies ``landscape''
|
|
1211 mode.
|
|
1212
|
|
1213 @vindex ps-number-of-columns
|
|
1214 The variable @code{ps-number-of-columns} specifies the number of
|
|
1215 columns; it takes effect in both landscape and portrait mode. The
|
|
1216 default is 1.
|
|
1217
|
|
1218 @vindex ps-font-family
|
|
1219 @vindex ps-font-size
|
|
1220 @vindex ps-font-info-database
|
|
1221 The variable @code{ps-font-family} specifies which font family to use
|
|
1222 for printing ordinary text. Legitimate values include @code{Courier},
|
|
1223 @code{Helvetica}, @code{NewCenturySchlbk}, @code{Palatino} and
|
|
1224 @code{Times}. The variable @code{ps-font-size} specifies the size of
|
|
1225 the font for ordinary text. It defaults to 8.5 points.
|
|
1226
|
|
1227 Many other customization variables for these commands are defined and
|
|
1228 described in the Lisp file @file{ps-print.el}.
|
|
1229
|
|
1230 @node Sorting, Narrowing, Postscript Variables, Top
|
|
1231 @section Sorting Text
|
|
1232 @cindex sorting
|
|
1233
|
|
1234 Emacs provides several commands for sorting text in the buffer. All
|
|
1235 operate on the contents of the region (the text between point and the
|
|
1236 mark). They divide the text of the region into many @dfn{sort records},
|
|
1237 identify a @dfn{sort key} for each record, and then reorder the records
|
|
1238 into the order determined by the sort keys. The records are ordered so
|
|
1239 that their keys are in alphabetical order, or, for numeric sorting, in
|
|
1240 numeric order. In alphabetic sorting, all upper-case letters `A' through
|
|
1241 `Z' come before lower-case `a', in accord with the ASCII character
|
|
1242 sequence.
|
|
1243
|
|
1244 The various sort commands differ in how they divide the text into sort
|
|
1245 records and in which part of each record is used as the sort key. Most of
|
|
1246 the commands make each line a separate sort record, but some commands use
|
|
1247 paragraphs or pages as sort records. Most of the sort commands use each
|
|
1248 entire sort record as its own sort key, but some use only a portion of the
|
|
1249 record as the sort key.
|
|
1250
|
|
1251 @findex sort-lines
|
|
1252 @findex sort-paragraphs
|
|
1253 @findex sort-pages
|
|
1254 @findex sort-fields
|
|
1255 @findex sort-numeric-fields
|
|
1256 @table @kbd
|
|
1257 @item M-x sort-lines
|
|
1258 Divide the region into lines, and sort by comparing the entire
|
|
1259 text of a line. A numeric argument means sort into descending order.
|
|
1260
|
|
1261 @item M-x sort-paragraphs
|
|
1262 Divide the region into paragraphs, and sort by comparing the entire
|
|
1263 text of a paragraph (except for leading blank lines). A numeric
|
|
1264 argument means sort into descending order.
|
|
1265
|
|
1266 @item M-x sort-pages
|
|
1267 Divide the region into pages, and sort by comparing the entire
|
|
1268 text of a page (except for leading blank lines). A numeric
|
|
1269 argument means sort into descending order.
|
|
1270
|
|
1271 @item M-x sort-fields
|
|
1272 Divide the region into lines, and sort by comparing the contents of
|
|
1273 one field in each line. Fields are defined as separated by
|
|
1274 whitespace, so the first run of consecutive non-whitespace characters
|
|
1275 in a line constitutes field 1, the second such run constitutes field
|
|
1276 2, etc.
|
|
1277
|
|
1278 Specify which field to sort by with a numeric argument: 1 to sort by
|
|
1279 field 1, etc. A negative argument means count fields from the right
|
|
1280 instead of from the left; thus, minus 1 means sort by the last field.
|
|
1281 If several lines have identical contents in the field being sorted, they
|
|
1282 keep same relative order that they had in the original buffer.
|
|
1283
|
|
1284 @item M-x sort-numeric-fields
|
|
1285 Like @kbd{M-x sort-fields} except the specified field is converted
|
|
1286 to an integer for each line, and the numbers are compared. @samp{10}
|
|
1287 comes before @samp{2} when considered as text, but after it when
|
|
1288 considered as a number.
|
|
1289
|
|
1290 @item M-x sort-columns
|
|
1291 Like @kbd{M-x sort-fields} except that the text within each line
|
|
1292 used for comparison comes from a fixed range of columns. See below
|
|
1293 for an explanation.
|
|
1294
|
|
1295 @item M-x reverse-region
|
|
1296 Reverse the order of the lines in the region. This is useful for
|
|
1297 sorting into descending order by fields or columns, since those sort
|
|
1298 commands do not have a feature for doing that.
|
|
1299 @end table
|
|
1300
|
|
1301 For example, if the buffer contains this:
|
|
1302
|
|
1303 @smallexample
|
|
1304 On systems where clash detection (locking of files being edited) is
|
|
1305 implemented, Emacs also checks the first time you modify a buffer
|
|
1306 whether the file has changed on disk since it was last visited or
|
|
1307 saved. If it has, you are asked to confirm that you want to change
|
|
1308 the buffer.
|
|
1309 @end smallexample
|
|
1310
|
|
1311 @noindent
|
|
1312 applying @kbd{M-x sort-lines} to the entire buffer produces this:
|
|
1313
|
|
1314 @smallexample
|
|
1315 On systems where clash detection (locking of files being edited) is
|
|
1316 implemented, Emacs also checks the first time you modify a buffer
|
|
1317 saved. If it has, you are asked to confirm that you want to change
|
|
1318 the buffer.
|
|
1319 whether the file has changed on disk since it was last visited or
|
|
1320 @end smallexample
|
|
1321
|
|
1322 @noindent
|
|
1323 where the upper-case @samp{O} sorts before all lower-case letters. If
|
|
1324 you use @kbd{C-u 2 M-x sort-fields} instead, you get this:
|
|
1325
|
|
1326 @smallexample
|
|
1327 implemented, Emacs also checks the first time you modify a buffer
|
|
1328 saved. If it has, you are asked to confirm that you want to change
|
|
1329 the buffer.
|
|
1330 On systems where clash detection (locking of files being edited) is
|
|
1331 whether the file has changed on disk since it was last visited or
|
|
1332 @end smallexample
|
|
1333
|
|
1334 @noindent
|
|
1335 where the sort keys were @samp{Emacs}, @samp{If}, @samp{buffer},
|
|
1336 @samp{systems} and @samp{the}.
|
|
1337
|
|
1338 @findex sort-columns
|
|
1339 @kbd{M-x sort-columns} requires more explanation. You specify the
|
|
1340 columns by putting point at one of the columns and the mark at the other
|
|
1341 column. Because this means you cannot put point or the mark at the
|
|
1342 beginning of the first line of the text you want to sort, this command
|
|
1343 uses an unusual definition of `region': all of the line point is in is
|
|
1344 considered part of the region, and so is all of the line the mark is in,
|
|
1345 as well as all the lines in between.
|
|
1346
|
|
1347 For example, to sort a table by information found in columns 10 to 15,
|
|
1348 you could put the mark on column 10 in the first line of the table, and
|
|
1349 point on column 15 in the last line of the table, and then run
|
|
1350 @code{sort-columns}. Equivalently, you could run it with the mark on
|
|
1351 column 15 in the first line and point on column 10 in the last line.
|
|
1352
|
|
1353 This can be thought of as sorting the rectangle specified by point and
|
|
1354 the mark, except that the text on each line to the left or right of the
|
|
1355 rectangle moves along with the text inside the rectangle.
|
|
1356 @xref{Rectangles}.
|
|
1357
|
|
1358 @vindex sort-fold-case
|
|
1359 Many of the sort commands ignore case differences when comparing, if
|
|
1360 @code{sort-fold-case} is non-@code{nil}.
|
|
1361
|
|
1362 @node Narrowing, Two-Column, Sorting, Top
|
|
1363 @section Narrowing
|
|
1364 @cindex widening
|
|
1365 @cindex restriction
|
|
1366 @cindex narrowing
|
|
1367 @cindex accessible portion
|
|
1368
|
|
1369 @dfn{Narrowing} means focusing in on some portion of the buffer,
|
|
1370 making the rest temporarily inaccessible. The portion which you can
|
|
1371 still get to is called the @dfn{accessible portion}. Canceling the
|
|
1372 narrowing, which makes the entire buffer once again accessible, is
|
|
1373 called @dfn{widening}. The amount of narrowing in effect in a buffer at
|
|
1374 any time is called the buffer's @dfn{restriction}.
|
|
1375
|
|
1376 Narrowing can make it easier to concentrate on a single subroutine or
|
|
1377 paragraph by eliminating clutter. It can also be used to restrict the
|
|
1378 range of operation of a replace command or repeating keyboard macro.
|
|
1379
|
|
1380 @c WideCommands
|
|
1381 @table @kbd
|
|
1382 @item C-x n n
|
|
1383 Narrow down to between point and mark (@code{narrow-to-region}).
|
|
1384 @item C-x n w
|
|
1385 Widen to make the entire buffer accessible again (@code{widen}).
|
|
1386 @item C-x n p
|
|
1387 Narrow down to the current page (@code{narrow-to-page}).
|
|
1388 @item C-x n d
|
|
1389 Narrow down to the current defun (@code{narrow-to-defun}).
|
|
1390 @end table
|
|
1391
|
|
1392 When you have narrowed down to a part of the buffer, that part appears
|
|
1393 to be all there is. You can't see the rest, you can't move into it
|
|
1394 (motion commands won't go outside the accessible part), you can't change
|
|
1395 it in any way. However, it is not gone, and if you save the file all
|
|
1396 the inaccessible text will be saved. The word @samp{Narrow} appears in
|
|
1397 the mode line whenever narrowing is in effect.
|
|
1398
|
|
1399 @kindex C-x n n
|
|
1400 @findex narrow-to-region
|
|
1401 The primary narrowing command is @kbd{C-x n n} (@code{narrow-to-region}).
|
|
1402 It sets the current buffer's restrictions so that the text in the current
|
|
1403 region remains accessible but all text before the region or after the region
|
|
1404 is inaccessible. Point and mark do not change.
|
|
1405
|
|
1406 @kindex C-x n p
|
|
1407 @findex narrow-to-page
|
|
1408 @kindex C-x n d
|
|
1409 @findex narrow-to-defun
|
|
1410 Alternatively, use @kbd{C-x n p} (@code{narrow-to-page}) to narrow
|
|
1411 down to the current page. @xref{Pages}, for the definition of a page.
|
|
1412 @kbd{C-x n d} (@code{narrow-to-defun}) narrows down to the defun
|
|
1413 containing point (@pxref{Defuns}).
|
|
1414
|
|
1415 @kindex C-x n w
|
|
1416 @findex widen
|
|
1417 The way to cancel narrowing is to widen with @kbd{C-x n w}
|
|
1418 (@code{widen}). This makes all text in the buffer accessible again.
|
|
1419
|
|
1420 You can get information on what part of the buffer you are narrowed down
|
|
1421 to using the @kbd{C-x =} command. @xref{Position Info}.
|
|
1422
|
|
1423 Because narrowing can easily confuse users who do not understand it,
|
|
1424 @code{narrow-to-region} is normally a disabled command. Attempting to use
|
|
1425 this command asks for confirmation and gives you the option of enabling it;
|
|
1426 if you enable the command, confirmation will no longer be required for
|
|
1427 it. @xref{Disabling}.
|
|
1428
|
|
1429 @node Two-Column, Editing Binary Files, Narrowing, Top
|
|
1430 @section Two-Column Editing
|
|
1431 @cindex two-column editing
|
|
1432 @cindex splitting columns
|
|
1433 @cindex columns, splitting
|
|
1434
|
|
1435 Two-column mode lets you conveniently edit two side-by-side columns of
|
|
1436 text. It uses two side-by-side windows, each showing its own
|
|
1437 buffer.
|
|
1438
|
|
1439 There are three ways to enter two-column mode:
|
|
1440
|
|
1441 @table @asis
|
|
1442 @item @kbd{@key{F2} 2} or @kbd{C-x 6 2}
|
|
1443 @kindex F2 2
|
|
1444 @kindex C-x 6 2
|
|
1445 @findex 2C-two-columns
|
|
1446 Enter two-column mode with the current buffer on the left, and on the
|
|
1447 right, a buffer whose name is based on the current buffer's name
|
|
1448 (@code{2C-two-columns}). If the right-hand buffer doesn't already
|
|
1449 exist, it starts out empty; the current buffer's contents are not
|
|
1450 changed.
|
|
1451
|
|
1452 This command is appropriate when the current buffer is empty or contains
|
|
1453 just one column and you want to add another column.
|
|
1454
|
|
1455 @item @kbd{@key{F2} s} or @kbd{C-x 6 s}
|
|
1456 @kindex F2 s
|
|
1457 @kindex C-x 6 s
|
|
1458 @findex 2C-split
|
|
1459 Split the current buffer, which contains two-column text, into two
|
|
1460 buffers, and display them side by side (@code{2C-split}). The current
|
|
1461 buffer becomes the left-hand buffer, but the text in the right-hand
|
|
1462 column is moved into the right-hand buffer. The current column
|
|
1463 specifies the split point. Splitting starts with the current line and
|
|
1464 continues to the end of the buffer.
|
|
1465
|
|
1466 This command is appropriate when you have a buffer that already contains
|
|
1467 two-column text, and you wish to separate the columns temporarily.
|
|
1468
|
|
1469 @item @kbd{@key{F2} b @var{buffer} @key{RET}}
|
|
1470 @itemx @kbd{C-x 6 b @var{buffer} @key{RET}}
|
|
1471 @kindex F2 b
|
|
1472 @kindex C-x 6 b
|
|
1473 @findex 2C-associate-buffer
|
|
1474 Enter two-column mode using the current buffer as the left-hand buffer,
|
|
1475 and using buffer @var{buffer} as the right-hand buffer
|
|
1476 (@code{2C-associate-buffer}).
|
|
1477 @end table
|
|
1478
|
|
1479 @kbd{@key{F2} s} or @kbd{C-x 6 s} looks for a column separator, which
|
|
1480 is a string that appears on each line between the two columns. You can
|
|
1481 specify the width of the separator with a numeric argument to
|
|
1482 @kbd{@key{F2} s}; that many characters, before point, constitute the
|
|
1483 separator string. By default, the width is 1, so the column separator
|
|
1484 is the character before point.
|
|
1485
|
|
1486 When a line has the separator at the proper place, @kbd{@key{F2} s}
|
|
1487 puts the text after the separator into the right-hand buffer, and
|
|
1488 deletes the separator. Lines that don't have the column separator at
|
|
1489 the proper place remain unsplit; they stay in the left-hand buffer, and
|
|
1490 the right-hand buffer gets an empty line to correspond. (This is the
|
|
1491 way to write a line that ``spans both columns while in two-column
|
|
1492 mode'': write it in the left-hand buffer, and put an empty line in the
|
|
1493 right-hand buffer.)
|
|
1494
|
|
1495 @kindex F2 RET
|
|
1496 @kindex C-x 6 RET
|
|
1497 @findex 2C-newline
|
|
1498 The command @kbd{C-x 6 @key{RET}} or @kbd{@key{F2} @key{RET}}
|
|
1499 (@code{2C-newline}) inserts a newline in each of the two buffers at
|
|
1500 corresponding positions. This is the easiest way to add a new line to
|
|
1501 the two-column text while editing it in split buffers.
|
|
1502
|
|
1503 @kindex F2 1
|
|
1504 @kindex C-x 6 1
|
|
1505 @findex 2C-merge
|
|
1506 When you have edited both buffers as you wish, merge them with
|
|
1507 @kbd{@key{F2} 1} or @kbd{C-x 6 1} (@code{2C-merge}). This copies the
|
|
1508 text from the right-hand buffer as a second column in the other buffer.
|
|
1509 To go back to two-column editing, use @kbd{@key{F2} s}.
|
|
1510
|
|
1511 @kindex F2 d
|
|
1512 @kindex C-x 6 d
|
|
1513 @findex 2C-dissociate
|
|
1514 Use @kbd{@key{F2} d} or @kbd{C-x 6 d} to dissociate the two buffers,
|
|
1515 leaving each as it stands (@code{2C-dissociate}). If the other buffer,
|
|
1516 the one not current when you type @kbd{@key{F2} d}, is empty,
|
|
1517 @kbd{@key{F2} d} kills it.
|
|
1518
|
|
1519 @node Editing Binary Files, Saving Emacs Sessions, Two-Column, Top
|
|
1520 @section Editing Binary Files
|
|
1521
|
|
1522 @cindex Hexl mode
|
|
1523 @cindex mode, Hexl
|
|
1524 @cindex editing binary files
|
|
1525 There is a special major mode for editing binary files: Hexl mode. To
|
|
1526 use it, use @kbd{M-x hexl-find-file} instead of @kbd{C-x C-f} to visit
|
|
1527 the file. This command converts the file's contents to hexadecimal and
|
|
1528 lets you edit the translation. When you save the file, it is converted
|
|
1529 automatically back to binary.
|
|
1530
|
|
1531 You can also use @kbd{M-x hexl-mode} to translate an existing buffer
|
|
1532 into hex. This is useful if you visit a file normally and then discover
|
|
1533 it is a binary file.
|
|
1534
|
|
1535 Ordinary text characters overwrite in Hexl mode. This is to reduce
|
|
1536 the risk of accidentally spoiling the alignment of data in the file.
|
|
1537 There are special commands for insertion. Here is a list of the
|
|
1538 commands of Hexl mode:
|
|
1539
|
|
1540 @c I don't think individual index entries for these commands are useful--RMS.
|
|
1541 @table @kbd
|
|
1542 @item C-M-d
|
|
1543 Insert a byte with a code typed in decimal.
|
|
1544
|
|
1545 @item C-M-o
|
|
1546 Insert a byte with a code typed in octal.
|
|
1547
|
|
1548 @item C-M-x
|
|
1549 Insert a byte with a code typed in hex.
|
|
1550
|
|
1551 @item C-x [
|
|
1552 Move to the beginning of a 1k-byte ``page.''
|
|
1553
|
|
1554 @item C-x ]
|
|
1555 Move to the end of a 1k-byte ``page.''
|
|
1556
|
|
1557 @item M-g
|
|
1558 Move to an address specified in hex.
|
|
1559
|
|
1560 @item M-j
|
|
1561 Move to an address specified in decimal.
|
|
1562
|
|
1563 @item C-c C-c
|
|
1564 Leave Hexl mode, going back to the major mode this buffer had before you
|
|
1565 invoked @code{hexl-mode}.
|
|
1566 @end table
|
|
1567
|
|
1568 @node Saving Emacs Sessions, Recursive Edit, Editing Binary Files, Top
|
|
1569 @section Saving Emacs Sessions
|
|
1570 @cindex saving sessions
|
|
1571 @cindex desktop
|
|
1572
|
|
1573 You can use the Desktop library to save the state of Emacs from one
|
|
1574 session to another. Saving the state means that Emacs starts up with
|
|
1575 the same set of buffers, major modes, buffer positions, and so on that
|
|
1576 the previous Emacs session had.
|
|
1577
|
|
1578 @vindex desktop-enable
|
|
1579 To use Desktop, you should use the Customization buffer (@pxref{Easy
|
|
1580 Customization}) to set @code{desktop-enable} to a non-@code{nil} value,
|
|
1581 or add these lines at the end of your @file{.emacs} file:
|
|
1582
|
|
1583 @example
|
|
1584 (desktop-load-default)
|
|
1585 (desktop-read)
|
|
1586 @end example
|
|
1587
|
|
1588 @noindent
|
|
1589 @findex desktop-save
|
|
1590 The first time you save the state of the Emacs session, you must do it
|
|
1591 manually, with the command @kbd{M-x desktop-save}. Once you have done
|
|
1592 that, exiting Emacs will save the state again---not only the present
|
|
1593 Emacs session, but also subsequent sessions. You can also save the
|
|
1594 state at any time, without exiting Emacs, by typing @kbd{M-x
|
|
1595 desktop-save} again.
|
|
1596
|
|
1597 In order for Emacs to recover the state from a previous session, you
|
|
1598 must start it with the same current directory as you used when you
|
|
1599 started the previous session. This is because @code{desktop-read} looks
|
|
1600 in the current directory for the file to read. This means that you can
|
|
1601 have separate saved sessions in different directories; the directory in
|
|
1602 which you start Emacs will control which saved session to use.
|
|
1603
|
|
1604 @vindex desktop-files-not-to-save
|
|
1605 The variable @code{desktop-files-not-to-save} controls which files are
|
|
1606 excluded from state saving. Its value is a regular expression that
|
|
1607 matches the files to exclude. By default, remote (ftp-accessed) files
|
|
1608 are excluded; this is because visiting them again in the subsequent
|
|
1609 session would be slow. If you want to include these files in state
|
|
1610 saving, set @code{desktop-files-not-to-save} to @code{"^$"}.
|
|
1611 @xref{Remote Files}.
|
|
1612
|
|
1613 @node Recursive Edit, Emulation, Saving Emacs Sessions, Top
|
|
1614 @section Recursive Editing Levels
|
|
1615 @cindex recursive editing level
|
|
1616 @cindex editing level, recursive
|
|
1617
|
|
1618 A @dfn{recursive edit} is a situation in which you are using Emacs
|
|
1619 commands to perform arbitrary editing while in the middle of another
|
|
1620 Emacs command. For example, when you type @kbd{C-r} inside of a
|
|
1621 @code{query-replace}, you enter a recursive edit in which you can change
|
|
1622 the current buffer. On exiting from the recursive edit, you go back to
|
|
1623 the @code{query-replace}.
|
|
1624
|
|
1625 @kindex C-M-c
|
|
1626 @findex exit-recursive-edit
|
|
1627 @cindex exiting recursive edit
|
|
1628 @dfn{Exiting} the recursive edit means returning to the unfinished
|
|
1629 command, which continues execution. The command to exit is @kbd{C-M-c}
|
|
1630 (@code{exit-recursive-edit}).
|
|
1631
|
|
1632 You can also @dfn{abort} the recursive edit. This is like exiting,
|
|
1633 but also quits the unfinished command immediately. Use the command
|
|
1634 @kbd{C-]} (@code{abort-recursive-edit}) to do this. @xref{Quitting}.
|
|
1635
|
|
1636 The mode line shows you when you are in a recursive edit by displaying
|
|
1637 square brackets around the parentheses that always surround the major and
|
|
1638 minor mode names. Every window's mode line shows this, in the same way,
|
|
1639 since being in a recursive edit is true of Emacs as a whole rather than
|
|
1640 any particular window or buffer.
|
|
1641
|
|
1642 It is possible to be in recursive edits within recursive edits. For
|
|
1643 example, after typing @kbd{C-r} in a @code{query-replace}, you may type a
|
|
1644 command that enters the debugger. This begins a recursive editing level
|
|
1645 for the debugger, within the recursive editing level for @kbd{C-r}.
|
|
1646 Mode lines display a pair of square brackets for each recursive editing
|
|
1647 level currently in progress.
|
|
1648
|
|
1649 Exiting the inner recursive edit (such as, with the debugger @kbd{c}
|
|
1650 command) resumes the command running in the next level up. When that
|
|
1651 command finishes, you can then use @kbd{C-M-c} to exit another recursive
|
|
1652 editing level, and so on. Exiting applies to the innermost level only.
|
|
1653 Aborting also gets out of only one level of recursive edit; it returns
|
|
1654 immediately to the command level of the previous recursive edit. If you
|
|
1655 wish, you can then abort the next recursive editing level.
|
|
1656
|
|
1657 Alternatively, the command @kbd{M-x top-level} aborts all levels of
|
|
1658 recursive edits, returning immediately to the top-level command reader.
|
|
1659
|
|
1660 The text being edited inside the recursive edit need not be the same text
|
|
1661 that you were editing at top level. It depends on what the recursive edit
|
|
1662 is for. If the command that invokes the recursive edit selects a different
|
|
1663 buffer first, that is the buffer you will edit recursively. In any case,
|
|
1664 you can switch buffers within the recursive edit in the normal manner (as
|
|
1665 long as the buffer-switching keys have not been rebound). You could
|
|
1666 probably do all the rest of your editing inside the recursive edit,
|
|
1667 visiting files and all. But this could have surprising effects (such as
|
|
1668 stack overflow) from time to time. So remember to exit or abort the
|
|
1669 recursive edit when you no longer need it.
|
|
1670
|
|
1671 In general, we try to minimize the use of recursive editing levels in
|
|
1672 GNU Emacs. This is because they constrain you to ``go back'' in a
|
|
1673 particular order---from the innermost level toward the top level. When
|
|
1674 possible, we present different activities in separate buffers so that
|
|
1675 you can switch between them as you please. Some commands switch to a
|
|
1676 new major mode which provides a command to switch back. These
|
|
1677 approaches give you more flexibility to go back to unfinished tasks in
|
|
1678 the order you choose.
|
|
1679
|
|
1680 @node Emulation, Dissociated Press, Recursive Edit, Top
|
|
1681 @section Emulation
|
|
1682 @cindex emulating other editors
|
|
1683 @cindex other editors
|
|
1684 @cindex EDT
|
|
1685 @cindex vi
|
|
1686
|
|
1687 GNU Emacs can be programmed to emulate (more or less) most other
|
|
1688 editors. Standard facilities can emulate these:
|
|
1689
|
|
1690 @table @asis
|
|
1691 @item EDT (DEC VMS editor)
|
|
1692 @findex edt-emulation-on
|
|
1693 @findex edt-emulation-off
|
|
1694 Turn on EDT emulation with @kbd{M-x edt-emulation-on}. @kbd{M-x
|
|
1695 edt-emulation-off} restores normal Emacs command bindings.
|
|
1696
|
|
1697 Most of the EDT emulation commands are keypad keys, and most standard
|
|
1698 Emacs key bindings are still available. The EDT emulation rebindings
|
|
1699 are done in the global keymap, so there is no problem switching
|
|
1700 buffers or major modes while in EDT emulation.
|
|
1701
|
|
1702 @item vi (Berkeley editor)
|
|
1703 @findex viper-mode
|
|
1704 Viper is the newest emulator for vi. It implements several levels of
|
|
1705 emulation; level 1 is closest to vi itself, while level 5 departs
|
|
1706 somewhat from strict emulation to take advantage of the capabilities of
|
|
1707 Emacs. To invoke Viper, type @kbd{M-x viper-mode}; it will guide you
|
|
1708 the rest of the way and ask for the emulation level. @inforef{Top,
|
|
1709 Viper, viper}.
|
|
1710
|
|
1711 @item vi (another emulator)
|
|
1712 @findex vi-mode
|
|
1713 @kbd{M-x vi-mode} enters a major mode that replaces the previously
|
|
1714 established major mode. All of the vi commands that, in real vi, enter
|
|
1715 ``input'' mode are programmed instead to return to the previous major
|
|
1716 mode. Thus, ordinary Emacs serves as vi's ``input'' mode.
|
|
1717
|
|
1718 Because vi emulation works through major modes, it does not work
|
|
1719 to switch buffers during emulation. Return to normal Emacs first.
|
|
1720
|
|
1721 If you plan to use vi emulation much, you probably want to bind a key
|
|
1722 to the @code{vi-mode} command.
|
|
1723
|
|
1724 @item vi (alternate emulator)
|
|
1725 @findex vip-mode
|
|
1726 @kbd{M-x vip-mode} invokes another vi emulator, said to resemble real vi
|
|
1727 more thoroughly than @kbd{M-x vi-mode}. ``Input'' mode in this emulator
|
|
1728 is changed from ordinary Emacs so you can use @key{ESC} to go back to
|
|
1729 emulated vi command mode. To get from emulated vi command mode back to
|
|
1730 ordinary Emacs, type @kbd{C-z}.
|
|
1731
|
|
1732 This emulation does not work through major modes, and it is possible
|
|
1733 to switch buffers in various ways within the emulator. It is not
|
|
1734 so necessary to assign a key to the command @code{vip-mode} as
|
|
1735 it is with @code{vi-mode} because terminating insert mode does
|
|
1736 not use it.
|
|
1737
|
|
1738 @inforef{Top, VIP, vip}, for full information.
|
|
1739 @end table
|
|
1740
|
|
1741 @node Dissociated Press, Amusements, Emulation, Top
|
|
1742 @section Dissociated Press
|
|
1743
|
|
1744 @findex dissociated-press
|
|
1745 @kbd{M-x dissociated-press} is a command for scrambling a file of text
|
|
1746 either word by word or character by character. Starting from a buffer of
|
|
1747 straight English, it produces extremely amusing output. The input comes
|
|
1748 from the current Emacs buffer. Dissociated Press writes its output in a
|
|
1749 buffer named @samp{*Dissociation*}, and redisplays that buffer after every
|
|
1750 couple of lines (approximately) so you can read the output as it comes out.
|
|
1751
|
|
1752 Dissociated Press asks every so often whether to continue generating
|
|
1753 output. Answer @kbd{n} to stop it. You can also stop at any time by
|
|
1754 typing @kbd{C-g}. The dissociation output remains in the
|
|
1755 @samp{*Dissociation*} buffer for you to copy elsewhere if you wish.
|
|
1756
|
|
1757 @cindex presidentagon
|
|
1758 Dissociated Press operates by jumping at random from one point in the
|
|
1759 buffer to another. In order to produce plausible output rather than
|
|
1760 gibberish, it insists on a certain amount of overlap between the end of
|
|
1761 one run of consecutive words or characters and the start of the next.
|
|
1762 That is, if it has just printed out `president' and then decides to jump
|
|
1763 to a different point in the file, it might spot the `ent' in `pentagon'
|
|
1764 and continue from there, producing `presidentagon'.@footnote{This
|
|
1765 dissociword actually appeared during the Vietnam War, when it was very
|
|
1766 appropriate.} Long sample texts produce the best results.
|
|
1767
|
|
1768 @cindex againformation
|
|
1769 A positive argument to @kbd{M-x dissociated-press} tells it to operate
|
|
1770 character by character, and specifies the number of overlap characters. A
|
|
1771 negative argument tells it to operate word by word and specifies the number
|
|
1772 of overlap words. In this mode, whole words are treated as the elements to
|
|
1773 be permuted, rather than characters. No argument is equivalent to an
|
|
1774 argument of two. For your againformation, the output goes only into the
|
|
1775 buffer @samp{*Dissociation*}. The buffer you start with is not changed.
|
|
1776
|
|
1777 @cindex Markov chain
|
|
1778 @cindex ignoriginal
|
|
1779 @cindex techniquitous
|
|
1780 Dissociated Press produces nearly the same results as a Markov chain
|
|
1781 based on a frequency table constructed from the sample text. It is,
|
|
1782 however, an independent, ignoriginal invention. Dissociated Press
|
|
1783 techniquitously copies several consecutive characters from the sample
|
|
1784 between random choices, whereas a Markov chain would choose randomly for
|
|
1785 each word or character. This makes for more plausible sounding results,
|
|
1786 and runs faster.
|
|
1787
|
|
1788 @cindex outragedy
|
|
1789 @cindex buggestion
|
|
1790 @cindex properbose
|
|
1791 @cindex mustatement
|
|
1792 @cindex developediment
|
|
1793 @cindex userenced
|
|
1794 It is a mustatement that too much use of Dissociated Press can be a
|
|
1795 developediment to your real work. Sometimes to the point of outragedy.
|
|
1796 And keep dissociwords out of your documentation, if you want it to be well
|
|
1797 userenced and properbose. Have fun. Your buggestions are welcome.
|
|
1798
|
|
1799 @node Amusements, Customization, Dissociated Press, Top
|
|
1800 @section Other Amusements
|
|
1801 @cindex boredom
|
|
1802 @findex hanoi
|
|
1803 @findex yow
|
|
1804 @findex gomoku
|
|
1805 @findex mpuz
|
|
1806 @cindex tower of Hanoi
|
|
1807
|
|
1808 If you are a little bit bored, you can try @kbd{M-x hanoi}. If you are
|
|
1809 considerably bored, give it a numeric argument. If you are very very
|
|
1810 bored, try an argument of 9. Sit back and watch.
|
|
1811
|
|
1812 @cindex Go Moku
|
|
1813 If you want a little more personal involvement, try @kbd{M-x gomoku},
|
|
1814 which plays the game Go Moku with you.
|
|
1815
|
|
1816 @findex blackbox
|
|
1817 @findex mpuz
|
|
1818 @cindex puzzles
|
|
1819 @kbd{M-x blackbox} and @kbd{M-x mpuz} are two kinds of puzzles.
|
|
1820 @code{blackbox} challenges you to determine the location of objects
|
|
1821 inside a box by tomography. @code{mpuz} displays a multiplication
|
|
1822 puzzle with letters standing for digits in a code that you must
|
|
1823 guess---to guess a value, type a letter and then the digit you think it
|
|
1824 stands for.
|
|
1825
|
|
1826 @findex dunnet
|
|
1827 @kbd{M-x dunnet} runs an adventure-style exploration game, which is
|
|
1828 a bigger sort of puzzle.
|
|
1829
|
|
1830 When you are frustrated, try the famous Eliza program. Just do
|
|
1831 @kbd{M-x doctor}. End each input by typing @key{RET} twice.
|
|
1832
|
|
1833 @cindex Zippy
|
|
1834 When you are feeling strange, type @kbd{M-x yow}.
|