Mercurial > emacs
annotate man/misc.texi @ 32518:c8517fffd6fb
*** empty log message ***
author | Miles Bader <miles@gnu.org> |
---|---|
date | Mon, 16 Oct 2000 07:28:24 +0000 |
parents | f89fc1421b53 |
children | 6fcf803fe8c5 |
rev | line source |
---|---|
25829 | 1 @c This is part of the Emacs manual. |
28125 | 2 @c Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 2000 |
3 @c Free Software Foundation, Inc. | |
25829 | 4 @c See file emacs.texi for copying conditions. |
5 @iftex | |
6 @chapter Miscellaneous Commands | |
7 | |
8 This chapter contains several brief topics that do not fit anywhere | |
9 else: reading netnews, running shell commands and shell subprocesses, | |
10 using a single shared Emacs for utilities that expect to run an editor | |
11 as a subprocess, printing hardcopy, sorting text, narrowing display to | |
12 part of the buffer, editing double-column files and binary files, saving | |
13 an Emacs session for later resumption, emulating other editors, and | |
14 various diversions and amusements. | |
15 | |
16 @end iftex | |
17 @node Gnus, Shell, Calendar/Diary, Top | |
18 @section Gnus | |
19 @cindex Gnus | |
20 @cindex reading netnews | |
21 | |
22 Gnus is an Emacs package primarily designed for reading and posting | |
23 Usenet news. It can also be used to read and respond to messages from a | |
24 number of other sources---mail, remote directories, digests, and so on. | |
25 | |
26 Here we introduce Gnus and describe several basic features. | |
27 @ifinfo | |
28 For full details, see @ref{Top, Gnus,, gnus, The Gnus Manual}. | |
29 @end ifinfo | |
30 @iftex | |
31 For full details on Gnus, type @kbd{M-x info} and then select the Gnus | |
32 manual. | |
33 @end iftex | |
34 | |
35 @findex gnus | |
36 To start Gnus, type @kbd{M-x gnus @key{RET}}. | |
37 | |
38 @menu | |
39 * Buffers of Gnus:: The group, summary, and article buffers. | |
40 * Gnus Startup:: What you should know about starting Gnus. | |
41 * Summary of Gnus:: A short description of the basic Gnus commands. | |
42 @end menu | |
43 | |
44 @node Buffers of Gnus | |
45 @subsection Gnus Buffers | |
46 | |
47 As opposed to most normal Emacs packages, Gnus uses a number of | |
48 different buffers to display information and to receive commands. The | |
49 three buffers users spend most of their time in are the @dfn{group | |
50 buffer}, the @dfn{summary buffer} and the @dfn{article buffer}. | |
51 | |
52 The @dfn{group buffer} contains a list of groups. This is the first | |
53 buffer Gnus displays when it starts up. It normally displays only the | |
54 groups to which you subscribe and that contain unread articles. Use | |
55 this buffer to select a specific group. | |
56 | |
57 The @dfn{summary buffer} lists one line for each article in a single | |
58 group. By default, the author, the subject and the line number are | |
59 displayed for each article, but this is customizable, like most aspects | |
60 of Gnus display. The summary buffer is created when you select a group | |
61 in the group buffer, and is killed when you exit the group. Use this | |
62 buffer to select an article. | |
63 | |
64 The @dfn{article buffer} displays the article. In normal Gnus usage, | |
65 you don't select this buffer---all useful article-oriented commands work | |
66 in the summary buffer. But you can select the article buffer, and | |
67 execute all Gnus commands from that buffer, if you want to. | |
68 | |
69 @node Gnus Startup | |
70 @subsection When Gnus Starts Up | |
71 | |
72 At startup, Gnus reads your @file{.newsrc} news initialization file | |
73 and attempts to communicate with the local news server, which is a | |
74 repository of news articles. The news server need not be the same | |
75 computer you are logged in on. | |
76 | |
77 If you start Gnus and connect to the server, but do not see any | |
78 newsgroups listed in the group buffer, type @kbd{L} or @kbd{A k} to get | |
79 a listing of all the groups. Then type @kbd{u} to toggle | |
80 subscription to groups. | |
81 | |
82 The first time you start Gnus, Gnus subscribes you to a few selected | |
83 groups. All other groups start out as @dfn{killed groups} for you; you | |
84 can list them with @kbd{A k}. All new groups that subsequently come to | |
85 exist at the news server become @dfn{zombie groups} for you; type @kbd{A | |
86 z} to list them. You can subscribe to a group shown in these lists | |
87 using the @kbd{u} command. | |
88 | |
89 When you quit Gnus with @kbd{q}, it automatically records in your | |
90 @file{.newsrc} and @file{.newsrc.eld} initialization files the | |
91 subscribed or unsubscribed status of all groups. You should normally | |
92 not edit these files manually, but you may if you know how. | |
93 | |
94 @node Summary of Gnus | |
95 @subsection Summary of Gnus Commands | |
96 | |
97 Reading news is a two step process: | |
98 | |
99 @enumerate | |
100 @item | |
101 Choose a group in the group buffer. | |
102 | |
103 @item | |
104 Select articles from the summary buffer. Each article selected is | |
105 displayed in the article buffer in a large window, below the summary | |
106 buffer in its small window. | |
107 @end enumerate | |
108 | |
109 Each Gnus buffer has its own special commands; however, the meanings | |
110 of any given key in the various Gnus buffers are usually analogous, even | |
111 if not identical. Here are commands for the group and summary buffers: | |
112 | |
113 @table @kbd | |
114 @kindex q @r{(Gnus Group mode)} | |
115 @findex gnus-group-exit | |
116 @item q | |
117 In the group buffer, update your @file{.newsrc} initialization file | |
118 and quit Gnus. | |
119 | |
120 In the summary buffer, exit the current group and return to the | |
121 group buffer. Thus, typing @kbd{q} twice quits Gnus. | |
122 | |
123 @kindex L @r{(Gnus Group mode)} | |
124 @findex gnus-group-list-all-groups | |
125 @item L | |
126 In the group buffer, list all the groups available on your news | |
127 server (except those you have killed). This may be a long list! | |
128 | |
129 @kindex l @r{(Gnus Group mode)} | |
130 @findex gnus-group-list-groups | |
131 @item l | |
132 In the group buffer, list only the groups to which you subscribe and | |
133 which contain unread articles. | |
134 | |
135 @kindex u @r{(Gnus Group mode)} | |
136 @findex gnus-group-unsubscribe-current-group | |
137 @cindex subscribe groups | |
138 @cindex unsubscribe groups | |
139 @item u | |
140 In the group buffer, unsubscribe from (or subscribe to) the group listed | |
141 in the line that point is on. When you quit Gnus by typing @kbd{q}, | |
142 Gnus lists in your @file{.newsrc} file which groups you have subscribed | |
143 to. The next time you start Gnus, you won't see this group, | |
144 because Gnus normally displays only subscribed-to groups. | |
145 | |
146 @kindex C-k @r{(Gnus)} | |
147 @findex gnus-group-kill-group | |
148 @item C-k | |
149 In the group buffer, ``kill'' the current line's group---don't | |
150 even list it in @file{.newsrc} from now on. This affects future | |
151 Gnus sessions as well as the present session. | |
152 | |
153 When you quit Gnus by typing @kbd{q}, Gnus writes information | |
154 in the file @file{.newsrc} describing all newsgroups except those you | |
155 have ``killed.'' | |
156 | |
157 @kindex SPC @r{(Gnus)} | |
158 @findex gnus-group-read-group | |
159 @item @key{SPC} | |
160 In the group buffer, select the group on the line under the cursor | |
161 and display the first unread article in that group. | |
162 | |
163 @need 1000 | |
164 In the summary buffer, | |
165 | |
166 @itemize @bullet | |
167 @item | |
168 Select the article on the line under the cursor if none is selected. | |
169 | |
170 @item | |
171 Scroll the text of the selected article (if there is one). | |
172 | |
173 @item | |
174 Select the next unread article if at the end of the current article. | |
175 @end itemize | |
176 | |
177 Thus, you can move through all the articles by repeatedly typing @key{SPC}. | |
178 | |
179 @kindex DEL @r{(Gnus)} | |
180 @item @key{DEL} | |
181 In the group buffer, move point to the previous group containing | |
182 unread articles. | |
183 | |
184 @findex gnus-summary-prev-page | |
185 In the summary buffer, scroll the text of the article backwards. | |
186 | |
187 @kindex n @r{(Gnus)} | |
188 @findex gnus-group-next-unread-group | |
189 @findex gnus-summary-next-unread-article | |
190 @item n | |
191 Move point to the next unread group, or select the next unread article. | |
192 | |
193 @kindex p @r{(Gnus)} | |
194 @findex gnus-group-prev-unread-group | |
195 @findex gnus-summary-prev-unread-article | |
196 @item p | |
197 Move point to the previous unread group, or select the previous | |
198 unread article. | |
199 | |
200 @kindex C-n @r{(Gnus Group mode)} | |
201 @findex gnus-group-next-group | |
202 @kindex C-p @r{(Gnus Group mode)} | |
203 @findex gnus-group-prev-group | |
204 @kindex C-n @r{(Gnus Summary mode)} | |
205 @findex gnus-summary-next-subject | |
206 @kindex C-p @r{(Gnus Summary mode)} | |
207 @findex gnus-summary-prev-subject | |
208 @item C-n | |
209 @itemx C-p | |
210 Move point to the next or previous item, even if it is marked as read. | |
211 This does not select the article or group on that line. | |
212 | |
213 @kindex s @r{(Gnus Summary mode)} | |
214 @findex gnus-summary-isearch-article | |
215 @item s | |
216 In the summary buffer, do an incremental search of the current text in | |
217 the article buffer, just as if you switched to the article buffer and | |
218 typed @kbd{C-s}. | |
219 | |
220 @kindex M-s @r{(Gnus Summary mode)} | |
221 @findex gnus-summary-search-article-forward | |
222 @item M-s @var{regexp} @key{RET} | |
223 In the summary buffer, search forward for articles containing a match | |
224 for @var{regexp}. | |
225 | |
226 @end table | |
227 | |
228 @ignore | |
229 @node Where to Look | |
230 @subsection Where to Look Further | |
231 | |
232 @c Too many references to the name of the manual if done with xref in TeX! | |
233 Gnus is powerful and customizable. Here are references to a few | |
234 @ifinfo | |
235 additional topics: | |
236 | |
237 @end ifinfo | |
238 @iftex | |
239 additional topics in @cite{The Gnus Manual}: | |
240 | |
241 @itemize @bullet | |
242 @item | |
243 Follow discussions on specific topics.@* | |
244 See section ``Threading.'' | |
245 | |
246 @item | |
247 Read digests. See section ``Document Groups.'' | |
248 | |
249 @item | |
250 Refer to and jump to the parent of the current article.@* | |
251 See section ``Finding the Parent.'' | |
252 | |
253 @item | |
254 Refer to articles by using Message-IDs included in the messages.@* | |
255 See section ``Article Keymap.'' | |
256 | |
257 @item | |
258 Save articles. See section ``Saving Articles.'' | |
259 | |
260 @item | |
261 Have Gnus score articles according to various criteria, like author | |
262 name, subject, or string in the body of the articles.@* | |
263 See section ``Scoring.'' | |
264 | |
265 @item | |
266 Send an article to a newsgroup.@* | |
267 See section ``Composing Messages.'' | |
268 @end itemize | |
269 @end iftex | |
270 @ifinfo | |
271 @itemize @bullet | |
272 @item | |
273 Follow discussions on specific topics.@* | |
274 @xref{Threading, , Reading Based on Conversation Threads, | |
275 gnus, The Gnus Manual}. | |
276 | |
277 @item | |
278 Read digests. @xref{Document Groups, , , gnus, The Gnus Manual}. | |
279 | |
280 @item | |
281 Refer to and jump to the parent of the current article.@* | |
282 @xref{Finding the Parent, , , gnus, The Gnus Manual}. | |
283 | |
284 @item | |
285 Refer to articles by using Message-IDs included in the messages.@* | |
286 @xref{Article Keymap, , , gnus, The Gnus Manual}. | |
287 | |
288 @item | |
289 Save articles. @xref{Saving Articles, , , gnus, The Gnus Manual}. | |
290 | |
291 @item | |
292 Have Gnus score articles according to various criteria, like author | |
293 name, subject, or string in the body of the articles.@* | |
294 @xref{Scoring, , , gnus, The Gnus Manual}. | |
295 | |
296 @item | |
297 Send an article to a newsgroup.@* | |
298 @xref{Composing Messages, , , gnus, The Gnus Manual}. | |
299 @end itemize | |
300 @end ifinfo | |
301 @end ignore | |
302 | |
303 @node Shell, Emacs Server, Gnus, Top | |
304 @section Running Shell Commands from Emacs | |
305 @cindex subshell | |
306 @cindex shell commands | |
307 | |
308 Emacs has commands for passing single command lines to inferior shell | |
309 processes; it can also run a shell interactively with input and output to | |
310 an Emacs buffer named @samp{*shell*}. | |
311 | |
312 @table @kbd | |
313 @item M-! @var{cmd} @key{RET} | |
314 Run the shell command line @var{cmd} and display the output | |
315 (@code{shell-command}). | |
316 @item M-| @var{cmd} @key{RET} | |
317 Run the shell command line @var{cmd} with region contents as input; | |
318 optionally replace the region with the output | |
319 (@code{shell-command-on-region}). | |
320 @item M-x shell | |
321 Run a subshell with input and output through an Emacs buffer. | |
322 You can then give commands interactively. | |
27210 | 323 @item M-x term |
324 Run a subshell with input and output through an Emacs buffer. | |
325 You can then give commands interactively. | |
326 Full terminal emulation is available. | |
25829 | 327 @end table |
328 | |
329 @menu | |
330 * Single Shell:: How to run one shell command and return. | |
331 * Interactive Shell:: Permanent shell taking input via Emacs. | |
332 * Shell Mode:: Special Emacs commands used with permanent shell. | |
333 * History: Shell History. Repeating previous commands in a shell buffer. | |
334 * Options: Shell Options. Options for customizing Shell mode. | |
27210 | 335 * Terminal emulator:: An Emacs window as a terminal emulator. |
336 * Term Mode:: Special Emacs commands used in Term mode. | |
337 * Paging in Term:: Paging in the terminal emulator. | |
25829 | 338 * Remote Host:: Connecting to another computer. |
339 @end menu | |
340 | |
341 @node Single Shell | |
342 @subsection Single Shell Commands | |
343 | |
344 @kindex M-! | |
345 @findex shell-command | |
346 @kbd{M-!} (@code{shell-command}) reads a line of text using the | |
347 minibuffer and executes it as a shell command in a subshell made just | |
348 for that command. Standard input for the command comes from the null | |
349 device. If the shell command produces any output, the output goes into | |
350 an Emacs buffer named @samp{*Shell Command Output*}, which is displayed | |
351 in another window but not selected. A numeric argument, as in @kbd{M-1 | |
352 M-!}, directs this command to insert any output into the current buffer. | |
353 In that case, point is left before the output and the mark is set after | |
354 the output. | |
355 | |
356 If the shell command line ends in @samp{&}, it runs asynchronously. | |
357 For a synchronous shell command, @code{shell-command} returns the | |
358 command's exit status (0 means success), when it is called from a Lisp | |
359 program. | |
360 | |
361 @kindex M-| | |
362 @findex shell-command-on-region | |
363 @kbd{M-|} (@code{shell-command-on-region}) is like @kbd{M-!} but | |
364 passes the contents of the region as the standard input to the shell | |
365 command, instead of no input. If a numeric argument is used, meaning | |
366 insert the output in the current buffer, then the old region is deleted | |
367 first and the output replaces it as the contents of the region. It | |
368 returns the command's exit status when it is called from a Lisp program. | |
369 | |
370 @vindex shell-file-name | |
371 @cindex environment | |
372 Both @kbd{M-!} and @kbd{M-|} use @code{shell-file-name} to specify the | |
29107 | 373 shell to use. This variable is initialized based on your @env{SHELL} |
25829 | 374 environment variable when Emacs is started. If the file name does not |
375 specify a directory, the directories in the list @code{exec-path} are | |
376 searched; this list is initialized based on the environment variable | |
29107 | 377 @env{PATH} when Emacs is started. Your @file{.emacs} file can override |
25829 | 378 either or both of these default initializations.@refill |
379 | |
380 Both @kbd{M-!} and @kbd{M-|} wait for the shell command to complete. | |
381 To stop waiting, type @kbd{C-g} to quit; that terminates the shell | |
382 command with the signal @code{SIGINT}---the same signal that @kbd{C-c} | |
383 normally generates in the shell. Emacs waits until the command actually | |
384 terminates. If the shell command doesn't stop (because it ignores the | |
385 @code{SIGINT} signal), type @kbd{C-g} again; this sends the command a | |
386 @code{SIGKILL} signal which is impossible to ignore. | |
387 | |
388 To specify a coding system for @kbd{M-!} or @kbd{M-|}, use the command | |
389 @kbd{C-x @key{RET} c} immediately beforehand. @xref{Specify Coding}. | |
390 | |
391 @vindex shell-command-default-error-buffer | |
392 Error output from the command is normally intermixed with the regular | |
393 output. If you set the variable | |
394 @code{shell-command-default-error-buffer} to a string, which is a buffer | |
395 name, error output is inserted before point in the buffer of that name. | |
396 | |
397 @node Interactive Shell | |
398 @subsection Interactive Inferior Shell | |
399 | |
400 @findex shell | |
401 To run a subshell interactively, putting its typescript in an Emacs | |
402 buffer, use @kbd{M-x shell}. This creates (or reuses) a buffer named | |
403 @samp{*shell*} and runs a subshell with input coming from and output going | |
404 to that buffer. That is to say, any ``terminal output'' from the subshell | |
405 goes into the buffer, advancing point, and any ``terminal input'' for | |
406 the subshell comes from text in the buffer. To give input to the subshell, | |
407 go to the end of the buffer and type the input, terminated by @key{RET}. | |
408 | |
409 Emacs does not wait for the subshell to do anything. You can switch | |
410 windows or buffers and edit them while the shell is waiting, or while it is | |
411 running a command. Output from the subshell waits until Emacs has time to | |
412 process it; this happens whenever Emacs is waiting for keyboard input or | |
413 for time to elapse. | |
414 | |
415 To make multiple subshells, rename the buffer @samp{*shell*} to | |
416 something different using @kbd{M-x rename-uniquely}. Then type @kbd{M-x | |
417 shell} again to create a new buffer @samp{*shell*} with its own | |
418 subshell. If you rename this buffer as well, you can create a third | |
419 one, and so on. All the subshells run independently and in parallel. | |
420 | |
421 @vindex explicit-shell-file-name | |
29107 | 422 @cindex @env{ESHELL} environment variable |
423 @cindex @env{SHELL} environment variable | |
25829 | 424 The file name used to load the subshell is the value of the variable |
425 @code{explicit-shell-file-name}, if that is non-@code{nil}. Otherwise, | |
29107 | 426 the environment variable @env{ESHELL} is used, or the environment |
427 variable @env{SHELL} if there is no @env{ESHELL}. If the file name | |
25829 | 428 specified is relative, the directories in the list @code{exec-path} are |
429 searched; this list is initialized based on the environment variable | |
29107 | 430 @env{PATH} when Emacs is started. Your @file{.emacs} file can override |
25829 | 431 either or both of these default initializations. |
432 | |
433 To specify a coding system for the shell, you can use the command | |
434 @kbd{C-x @key{RET} c} immediately before @kbd{M-x shell}. You can also | |
435 specify a coding system after starting the shell by using @kbd{C-x | |
436 @key{RET} p} in the shell buffer. @xref{Specify Coding}. | |
437 | |
438 As soon as the subshell is started, it is sent as input the contents | |
439 of the file @file{~/.emacs_@var{shellname}}, if that file exists, where | |
440 @var{shellname} is the name of the file that the shell was loaded from. | |
441 For example, if you use bash, the file sent to it is | |
442 @file{~/.emacs_bash}. | |
443 | |
444 @vindex shell-pushd-regexp | |
445 @vindex shell-popd-regexp | |
446 @vindex shell-cd-regexp | |
447 @code{cd}, @code{pushd} and @code{popd} commands given to the inferior | |
448 shell are watched by Emacs so it can keep the @samp{*shell*} buffer's | |
449 default directory the same as the shell's working directory. These | |
450 commands are recognized syntactically by examining lines of input that are | |
451 sent. If you use aliases for these commands, you can tell Emacs to | |
452 recognize them also. For example, if the value of the variable | |
453 @code{shell-pushd-regexp} matches the beginning of a shell command line, | |
454 that line is regarded as a @code{pushd} command. Change this variable when | |
455 you add aliases for @samp{pushd}. Likewise, @code{shell-popd-regexp} and | |
456 @code{shell-cd-regexp} are used to recognize commands with the meaning of | |
457 @samp{popd} and @samp{cd}. These commands are recognized only at the | |
458 beginning of a shell command line.@refill | |
459 | |
460 @vindex shell-set-directory-error-hook | |
461 If Emacs gets an error while trying to handle what it believes is a | |
462 @samp{cd}, @samp{pushd} or @samp{popd} command, it runs the hook | |
463 @code{shell-set-directory-error-hook} (@pxref{Hooks}). | |
464 | |
465 @findex dirs | |
466 If Emacs does not properly track changes in the current directory of | |
467 the subshell, use the command @kbd{M-x dirs} to ask the shell what its | |
468 current directory is. This command works for shells that support the | |
469 most common command syntax; it may not work for unusual shells. | |
470 | |
471 @findex dirtrack-mode | |
472 You can also use @kbd{M-x dirtrack-mode} to enable (or disable) an | |
473 alternative and more aggressive method of tracking changes in the | |
474 current directory. | |
475 | |
29107 | 476 Emacs defines the environment variable @env{EMACS} in the subshell, |
25829 | 477 with value @code{t}. A shell script can check this variable to |
478 determine whether it has been run from an Emacs subshell. | |
479 | |
480 @node Shell Mode | |
481 @subsection Shell Mode | |
482 @cindex Shell mode | |
483 @cindex mode, Shell | |
484 | |
485 Shell buffers use Shell mode, which defines several special keys | |
486 attached to the @kbd{C-c} prefix. They are chosen to resemble the usual | |
487 editing and job control characters present in shells that are not under | |
488 Emacs, except that you must type @kbd{C-c} first. Here is a complete list | |
489 of the special key bindings of Shell mode: | |
490 | |
491 @table @kbd | |
492 @item @key{RET} | |
493 @kindex RET @r{(Shell mode)} | |
494 @findex comint-send-input | |
32516
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
495 @vindex comint-use-prompt-regexp-instead-of-fields |
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
496 @cindex prompt, shell |
25829 | 497 At end of buffer send line as input; otherwise, copy current line to end |
498 of buffer and send it (@code{comint-send-input}). When a line is | |
32516
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
499 copied, any prompt is left out (where the prompt is the part of the line |
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
500 that was not input by the user; see also |
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
501 @code{comint-use-prompt-regexp-instead-of-fields}). |
25829 | 502 |
503 @item @key{TAB} | |
504 @kindex TAB @r{(Shell mode)} | |
505 @findex comint-dynamic-complete | |
506 Complete the command name or file name before point in the shell buffer | |
507 (@code{comint-dynamic-complete}). @key{TAB} also completes history | |
508 references (@pxref{History References}) and environment variable names. | |
509 | |
510 @vindex shell-completion-fignore | |
511 @vindex comint-completion-fignore | |
512 The variable @code{shell-completion-fignore} specifies a list of file | |
513 name extensions to ignore in Shell mode completion. The default setting | |
514 ignores file names ending in @samp{~}, @samp{#} or @samp{%}. Other | |
515 related Comint modes use the variable @code{comint-completion-fignore} | |
516 instead. | |
517 | |
518 @item M-? | |
519 @kindex M-? @r{(Shell mode)} | |
520 @findex comint-dynamic-list-filename@dots{} | |
521 Display temporarily a list of the possible completions of the file name | |
522 before point in the shell buffer | |
523 (@code{comint-dynamic-list-filename-completions}). | |
524 | |
525 @item C-d | |
526 @kindex C-d @r{(Shell mode)} | |
527 @findex comint-delchar-or-maybe-eof | |
26290 | 528 Either delete a character or send @sc{eof} |
25829 | 529 (@code{comint-delchar-or-maybe-eof}). Typed at the end of the shell |
26290 | 530 buffer, @kbd{C-d} sends @sc{eof} to the subshell. Typed at any other |
25829 | 531 position in the buffer, @kbd{C-d} deletes a character as usual. |
532 | |
533 @item C-c C-a | |
534 @kindex C-c C-a @r{(Shell mode)} | |
535 @findex comint-bol | |
536 Move to the beginning of the line, but after the prompt if any | |
537 (@code{comint-bol}). If you repeat this command twice in a row, the | |
538 second time it moves back to the process mark, which is the beginning of | |
539 the input that you have not yet sent to the subshell. (Normally that is | |
540 the same place---the end of the prompt on this line---but after @kbd{C-c | |
541 @key{SPC}} the process mark may be in a previous line.) | |
542 | |
543 @item C-c @key{SPC} | |
544 Accumulate multiple lines of input, then send them together. This | |
545 command inserts a newline before point, but does not send the preceding | |
546 text as input to the subshell---at least, not yet. Both lines, the one | |
547 before this newline and the one after, will be sent together (along with | |
548 the newline that separates them), when you type @key{RET}. | |
549 | |
550 @item C-c C-u | |
551 @kindex C-c C-u @r{(Shell mode)} | |
552 @findex comint-kill-input | |
553 Kill all text pending at end of buffer to be sent as input | |
554 (@code{comint-kill-input}). | |
555 | |
556 @item C-c C-w | |
557 @kindex C-c C-w @r{(Shell mode)} | |
558 Kill a word before point (@code{backward-kill-word}). | |
559 | |
560 @item C-c C-c | |
561 @kindex C-c C-c @r{(Shell mode)} | |
562 @findex comint-interrupt-subjob | |
563 Interrupt the shell or its current subjob if any | |
564 (@code{comint-interrupt-subjob}). This command also kills | |
565 any shell input pending in the shell buffer and not yet sent. | |
566 | |
567 @item C-c C-z | |
568 @kindex C-c C-z @r{(Shell mode)} | |
569 @findex comint-stop-subjob | |
570 Stop the shell or its current subjob if any (@code{comint-stop-subjob}). | |
571 This command also kills any shell input pending in the shell buffer and | |
572 not yet sent. | |
573 | |
574 @item C-c C-\ | |
575 @findex comint-quit-subjob | |
576 @kindex C-c C-\ @r{(Shell mode)} | |
577 Send quit signal to the shell or its current subjob if any | |
578 (@code{comint-quit-subjob}). This command also kills any shell input | |
579 pending in the shell buffer and not yet sent. | |
580 | |
581 @item C-c C-o | |
582 @kindex C-c C-o @r{(Shell mode)} | |
583 @findex comint-kill-output | |
584 Kill the last batch of output from a shell command | |
585 (@code{comint-kill-output}). This is useful if a shell command spews | |
586 out lots of output that just gets in the way. | |
587 | |
588 @item C-c C-r | |
589 @itemx C-M-l | |
590 @kindex C-c C-r @r{(Shell mode)} | |
591 @kindex C-M-l @r{(Shell mode)} | |
592 @findex comint-show-output | |
593 Scroll to display the beginning of the last batch of output at the top | |
594 of the window; also move the cursor there (@code{comint-show-output}). | |
595 | |
596 @item C-c C-e | |
597 @kindex C-c C-e @r{(Shell mode)} | |
598 @findex comint-show-maximum-output | |
599 Scroll to put the end of the buffer at the bottom of the window | |
600 (@code{comint-show-maximum-output}). | |
601 | |
602 @item C-c C-f | |
603 @kindex C-c C-f @r{(Shell mode)} | |
604 @findex shell-forward-command | |
605 @vindex shell-command-regexp | |
606 Move forward across one shell command, but not beyond the current line | |
607 (@code{shell-forward-command}). The variable @code{shell-command-regexp} | |
608 specifies how to recognize the end of a command. | |
609 | |
610 @item C-c C-b | |
611 @kindex C-c C-b @r{(Shell mode)} | |
612 @findex shell-backward-command | |
613 Move backward across one shell command, but not beyond the current line | |
614 (@code{shell-backward-command}). | |
615 | |
616 @item C-c C-l | |
617 @kindex C-c C-l @r{(Shell mode)} | |
618 @findex comint-dynamic-list-input-ring | |
619 Display the buffer's history of shell commands in another window | |
620 (@code{comint-dynamic-list-input-ring}). | |
621 | |
622 @item M-x dirs | |
623 Ask the shell what its current directory is, so that Emacs can agree | |
624 with the shell. | |
625 | |
626 @item M-x send-invisible @key{RET} @var{text} @key{RET} | |
627 @findex send-invisible | |
628 Send @var{text} as input to the shell, after reading it without | |
629 echoing. This is useful when a shell command runs a program that asks | |
630 for a password. | |
631 | |
632 Alternatively, you can arrange for Emacs to notice password prompts | |
633 and turn off echoing for them, as follows: | |
634 | |
635 @example | |
636 (add-hook 'comint-output-filter-functions | |
637 'comint-watch-for-password-prompt) | |
638 @end example | |
639 | |
640 @item M-x comint-continue-subjob | |
641 @findex comint-continue-subjob | |
642 Continue the shell process. This is useful if you accidentally suspend | |
643 the shell process.@footnote{You should not suspend the shell process. | |
644 Suspending a subjob of the shell is a completely different matter---that | |
645 is normal practice, but you must use the shell to continue the subjob; | |
646 this command won't do it.} | |
647 | |
648 @item M-x comint-strip-ctrl-m | |
649 @findex comint-strip-ctrl-m | |
650 Discard all control-M characters from the current group of shell output. | |
651 The most convenient way to use this command is to make it run | |
652 automatically when you get output from the subshell. To do that, | |
653 evaluate this Lisp expression: | |
654 | |
655 @example | |
656 (add-hook 'comint-output-filter-functions | |
657 'comint-strip-ctrl-m) | |
658 @end example | |
659 | |
660 @item M-x comint-truncate-buffer | |
661 @findex comint-truncate-buffer | |
662 This command truncates the shell buffer to a certain maximum number of | |
663 lines, specified by the variable @code{comint-buffer-maximum-size}. | |
664 Here's how to do this automatically each time you get output from the | |
665 subshell: | |
666 | |
667 @example | |
668 (add-hook 'comint-output-filter-functions | |
669 'comint-truncate-buffer) | |
670 @end example | |
671 @end table | |
672 | |
673 Shell mode also customizes the paragraph commands so that only shell | |
674 prompts start new paragraphs. Thus, a paragraph consists of an input | |
675 command plus the output that follows it in the buffer. | |
676 | |
677 @cindex Comint mode | |
678 @cindex mode, Comint | |
679 Shell mode is a derivative of Comint mode, a general-purpose mode for | |
680 communicating with interactive subprocesses. Most of the features of | |
681 Shell mode actually come from Comint mode, as you can see from the | |
32516
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
682 command names listed above. The special features of Shell mode include |
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
683 the directory tracking feature, and a few user commands. |
25829 | 684 |
685 Other Emacs features that use variants of Comint mode include GUD | |
686 (@pxref{Debuggers}) and @kbd{M-x run-lisp} (@pxref{External Lisp}). | |
687 | |
688 @findex comint-run | |
689 You can use @kbd{M-x comint-run} to execute any program of your choice | |
690 in a subprocess using unmodified Comint mode---without the | |
691 specializations of Shell mode. | |
692 | |
693 @node Shell History | |
694 @subsection Shell Command History | |
695 | |
696 Shell buffers support three ways of repeating earlier commands. You | |
697 can use the same keys used in the minibuffer; these work much as they do | |
698 in the minibuffer, inserting text from prior commands while point | |
699 remains always at the end of the buffer. You can move through the | |
700 buffer to previous inputs in their original place, then resubmit them or | |
701 copy them to the end. Or you can use a @samp{!}-style history | |
702 reference. | |
703 | |
704 @menu | |
705 * Ring: Shell Ring. Fetching commands from the history list. | |
706 * Copy: Shell History Copying. Moving to a command and then copying it. | |
707 * History References:: Expanding @samp{!}-style history references. | |
708 @end menu | |
709 | |
710 @node Shell Ring | |
711 @subsubsection Shell History Ring | |
712 | |
713 @table @kbd | |
714 @findex comint-previous-input | |
715 @kindex M-p @r{(Shell mode)} | |
716 @item M-p | |
717 Fetch the next earlier old shell command. | |
718 | |
719 @kindex M-n @r{(Shell mode)} | |
720 @findex comint-next-input | |
721 @item M-n | |
722 Fetch the next later old shell command. | |
723 | |
724 @kindex M-r @r{(Shell mode)} | |
725 @kindex M-s @r{(Shell mode)} | |
726 @findex comint-previous-matching-input | |
727 @findex comint-next-matching-input | |
728 @item M-r @var{regexp} @key{RET} | |
729 @itemx M-s @var{regexp} @key{RET} | |
730 Search backwards or forwards for old shell commands that match @var{regexp}. | |
731 | |
732 @item C-c C-x @r{(Shell mode)} | |
733 @findex comint-get-next-from-history | |
734 Fetch the next subsequent command from the history. | |
735 @end table | |
736 | |
737 Shell buffers provide a history of previously entered shell commands. To | |
738 reuse shell commands from the history, use the editing commands @kbd{M-p}, | |
739 @kbd{M-n}, @kbd{M-r} and @kbd{M-s}. These work just like the minibuffer | |
740 history commands except that they operate on the text at the end of the | |
741 shell buffer, where you would normally insert text to send to the shell. | |
742 | |
743 @kbd{M-p} fetches an earlier shell command to the end of the shell buffer. | |
744 Successive use of @kbd{M-p} fetches successively earlier shell commands, | |
745 each replacing any text that was already present as potential shell input. | |
746 @kbd{M-n} does likewise except that it finds successively more recent shell | |
747 commands from the buffer. | |
748 | |
749 The history search commands @kbd{M-r} and @kbd{M-s} read a regular | |
750 expression and search through the history for a matching command. Aside | |
751 from the choice of which command to fetch, they work just like @kbd{M-p} | |
752 and @kbd{M-r}. If you enter an empty regexp, these commands reuse the | |
753 same regexp used last time. | |
754 | |
755 When you find the previous input you want, you can resubmit it by | |
756 typing @key{RET}, or you can edit it first and then resubmit it if you | |
757 wish. | |
758 | |
759 Often it is useful to reexecute several successive shell commands that | |
760 were previously executed in sequence. To do this, first find and | |
761 reexecute the first command of the sequence. Then type @kbd{C-c C-x}; | |
762 that will fetch the following command---the one that follows the command | |
763 you just repeated. Then type @key{RET} to reexecute this command. You | |
764 can reexecute several successive commands by typing @kbd{C-c C-x | |
765 @key{RET}} over and over. | |
766 | |
767 These commands get the text of previous shell commands from a special | |
768 history list, not from the shell buffer itself. Thus, editing the shell | |
769 buffer, or even killing large parts of it, does not affect the history | |
770 that these commands access. | |
771 | |
772 @vindex shell-input-ring-file-name | |
773 Some shells store their command histories in files so that you can | |
774 refer to previous commands from previous shell sessions. Emacs reads | |
775 the command history file for your chosen shell, to initialize its own | |
776 command history. The file name is @file{~/.bash_history} for bash, | |
777 @file{~/.sh_history} for ksh, and @file{~/.history} for other shells. | |
778 | |
779 @node Shell History Copying | |
780 @subsubsection Shell History Copying | |
781 | |
782 @table @kbd | |
783 @kindex C-c C-p @r{(Shell mode)} | |
784 @findex comint-previous-prompt | |
785 @item C-c C-p | |
786 Move point to the previous prompt (@code{comint-previous-prompt}). | |
787 | |
788 @kindex C-c C-n @r{(Shell mode)} | |
789 @findex comint-next-prompt | |
790 @item C-c C-n | |
791 Move point to the following prompt (@code{comint-next-prompt}). | |
792 | |
793 @kindex C-c RET @r{(Shell mode)} | |
794 @findex comint-copy-old-input | |
795 @item C-c @key{RET} | |
796 Copy the input command which point is in, inserting the copy at the end | |
797 of the buffer (@code{comint-copy-old-input}). This is useful if you | |
798 move point back to a previous command. After you copy the command, you | |
799 can submit the copy as input with @key{RET}. If you wish, you can | |
800 edit the copy before resubmitting it. | |
801 @end table | |
802 | |
803 Moving to a previous input and then copying it with @kbd{C-c | |
804 @key{RET}} produces the same results---the same buffer contents---that | |
805 you would get by using @kbd{M-p} enough times to fetch that previous | |
806 input from the history list. However, @kbd{C-c @key{RET}} copies the | |
807 text from the buffer, which can be different from what is in the history | |
808 list if you edit the input text in the buffer after it has been sent. | |
809 | |
810 @node History References | |
811 @subsubsection Shell History References | |
812 @cindex history reference | |
813 | |
814 Various shells including csh and bash support @dfn{history references} | |
815 that begin with @samp{!} and @samp{^}. Shell mode can understand these | |
816 constructs and perform the history substitution for you. If you insert | |
817 a history reference and type @key{TAB}, this searches the input history | |
818 for a matching command, performs substitution if necessary, and places | |
819 the result in the buffer in place of the history reference. For | |
820 example, you can fetch the most recent command beginning with @samp{mv} | |
821 with @kbd{! m v @key{TAB}}. You can edit the command if you wish, and | |
822 then resubmit the command to the shell by typing @key{RET}. | |
823 | |
824 @vindex shell-prompt-pattern | |
825 @vindex comint-prompt-regexp | |
32516
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
826 @vindex comint-use-prompt-regexp-instead-of-fields |
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
827 @cindex prompt, shell |
25829 | 828 History references take effect only following a shell prompt. The |
32516
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
829 prompt is defined to be any text not input by the user, unless the |
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
830 variable @code{comint-use-prompt-regexp-instead-of-fields} is |
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
831 non-@code{nil} (the default value is @code{nil}). When |
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
832 @code{comint-use-prompt-regexp-instead-of-fields} is non-@code{nil}, the |
25829 | 833 variable @code{shell-prompt-pattern} specifies how to recognize a shell |
32516
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
834 prompt, and comint modes in general use the variable |
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
835 @code{comint-prompt-regexp} (shell mode uses @code{shell-prompt-pattern} |
f89fc1421b53
Update references to shell prompts and comint-prompt-regexp, etc.
Miles Bader <miles@gnu.org>
parents:
31310
diff
changeset
|
836 to set up the local value of @code{comint-prompt-regexp}). |
25829 | 837 |
838 @vindex comint-input-autoexpand | |
839 Shell mode can optionally expand history references in the buffer when | |
840 you send them to the shell. To request this, set the variable | |
841 @code{comint-input-autoexpand} to @code{input}. | |
842 | |
843 @findex comint-magic-space | |
844 You can make @key{SPC} perform history expansion by binding @key{SPC} to | |
845 the command @code{comint-magic-space}. | |
846 | |
847 @node Shell Options | |
848 @subsection Shell Mode Options | |
849 | |
850 @vindex comint-scroll-to-bottom-on-input | |
851 If the variable @code{comint-scroll-to-bottom-on-input} is | |
852 non-@code{nil}, insertion and yank commands scroll the selected window | |
853 to the bottom before inserting. | |
854 | |
855 @vindex comint-scroll-show-maximum-output | |
856 If @code{comint-scroll-show-maximum-output} is non-@code{nil}, then | |
857 scrolling due to arrival of output tries to place the last line of text | |
858 at the bottom line of the window, so as to show as much useful text as | |
859 possible. (This mimics the scrolling behavior of many terminals.) | |
860 The default is @code{nil}. | |
861 | |
862 @vindex comint-scroll-to-bottom-on-output | |
863 By setting @code{comint-scroll-to-bottom-on-output}, you can opt for | |
864 having point jump to the end of the buffer whenever output arrives---no | |
865 matter where in the buffer point was before. If the value is | |
866 @code{this}, point jumps in the selected window. If the value is | |
867 @code{all}, point jumps in each window that shows the comint buffer. If | |
868 the value is @code{other}, point jumps in all nonselected windows that | |
869 show the current buffer. The default value is @code{nil}, which means | |
870 point does not jump to the end. | |
871 | |
872 @vindex comint-input-ignoredups | |
873 The variable @code{comint-input-ignoredups} controls whether successive | |
874 identical inputs are stored in the input history. A non-@code{nil} | |
875 value means to omit an input that is the same as the previous input. | |
876 The default is @code{nil}, which means to store each input even if it is | |
877 equal to the previous input. | |
878 | |
879 @vindex comint-completion-addsuffix | |
880 @vindex comint-completion-recexact | |
881 @vindex comint-completion-autolist | |
882 Three variables customize file name completion. The variable | |
883 @code{comint-completion-addsuffix} controls whether completion inserts a | |
884 space or a slash to indicate a fully completed file or directory name | |
885 (non-@code{nil} means do insert a space or slash). | |
886 @code{comint-completion-recexact}, if non-@code{nil}, directs @key{TAB} | |
887 to choose the shortest possible completion if the usual Emacs completion | |
888 algorithm cannot add even a single character. | |
889 @code{comint-completion-autolist}, if non-@code{nil}, says to list all | |
890 the possible completions whenever completion is not exact. | |
891 | |
892 @findex comint-dynamic-complete-variable | |
893 The command @code{comint-dynamic-complete-variable} does variable-name | |
894 completion using the environment variables as set within Emacs. The | |
895 variables controlling file name completion apply to variable-name | |
896 completion too. This command is normally available through the menu | |
897 bar. | |
898 | |
899 @vindex shell-command-execonly | |
900 Command completion normally considers only executable files. | |
901 If you set @code{shell-command-execonly} to @code{nil}, | |
902 it considers nonexecutable files as well. | |
903 | |
904 @findex shell-pushd-tohome | |
905 @findex shell-pushd-dextract | |
906 @findex shell-pushd-dunique | |
907 You can configure the behavior of @samp{pushd}. Variables control | |
908 whether @samp{pushd} behaves like @samp{cd} if no argument is given | |
909 (@code{shell-pushd-tohome}), pop rather than rotate with a numeric | |
910 argument (@code{shell-pushd-dextract}), and only add directories to the | |
911 directory stack if they are not already on it | |
912 (@code{shell-pushd-dunique}). The values you choose should match the | |
913 underlying shell, of course. | |
914 | |
27210 | 915 @node Terminal emulator |
916 @subsection Interactive Inferior Shell with Terminal Emulator | |
917 @findex term | |
918 | |
919 To run a subshell in a terminal emulator, putting its typescript in an Emacs | |
920 buffer, use @kbd{M-x term}. This creates (or reuses) a buffer named | |
921 @samp{*term*} and runs a subshell with input coming from your keyboard and | |
922 output going to that buffer. | |
923 | |
924 All the normal keys that you type are sent without any interpretation | |
925 by Emacs directly to the subshell, as ``terminal input''. | |
926 Any ``echo'' of your input is the responsibility of the subshell. | |
927 (The exception is the terminal escape character, | |
928 which by default is @kbd{C-c}. @xref{Term Mode}.) | |
929 Any ``terminal output'' from the subshell goes into the buffer, | |
930 advancing point. | |
931 | |
932 Some programs (such as Emacs itself) need to control the | |
933 appearance on the terminal screen in detail. They do this by | |
934 sending special control codes. The exact control | |
935 codes needed vary from terminal to terminal, but nowadays | |
936 most terminals and terminal emulators (including @code{xterm}) | |
937 understand the ANSI-standard (VT100-style) escape sequences. | |
938 Term mode also understands these escape sequences, | |
939 and for each control code does the appropriate thing | |
940 to change the buffer so that the appearance of the window | |
941 matches what it would be on a real terminal. | |
942 Thus you can actually run Emacs inside an Emacs Term window! | |
943 | |
944 Emacs does not wait for the subshell to do anything. You can switch | |
945 windows or buffers and edit them while the shell is waiting, or while | |
946 it is running a command. Output from the subshell waits until Emacs | |
947 has time to process it; this happens whenever Emacs is waiting for | |
948 keyboard input or for time to elapse. | |
949 | |
950 To make multiple terminal emulators, rename the buffer @samp{*term*} | |
951 to something different using @kbd{M-x rename-uniquely}, | |
952 just as with Shell mode. | |
953 | |
954 The file name used to load the subshell is determined | |
955 the same way as for Shell mode. | |
956 | |
957 Unlike Shell mode, Term mode does not track the current directory | |
958 by examining your input. Instead, if you use a programmable | |
959 shell, you can have it tell Term what the current directory is. | |
960 This is done automatically by @code{bash} version 1.15 and later. | |
961 | |
962 @node Term Mode | |
963 @subsection Term Mode | |
964 @cindex Term mode | |
965 @cindex mode, Term | |
966 | |
967 Term uses Term mode, which has two input modes: | |
968 In line mode, Term basically acts like Shell mode. @xref{Shell Mode}. | |
969 In Char mode, each character is sent directly to the inferior subshell, | |
970 except for the Term escape character, normally @kbd{C-c}. | |
971 | |
972 To switch between line and char mode, use these commands: | |
973 @table @kbd | |
974 @kindex C-c C-k @r{(Term mode)} | |
975 @findex term-char-mode | |
976 @item C-c C-k | |
977 Switch to line mode. Do nothing if already in line mode. | |
978 | |
979 @kindex C-c C-j @r{(Term mode)} | |
980 @findex term-line-mode | |
981 @item C-c C-j | |
982 Switch to char mode. Do nothing if already in char mode. | |
983 @end table | |
984 | |
985 The following commands are only available in Char mode: | |
986 @table @kbd | |
987 @item C-c C-c | |
988 Send a literal @key{C-c} to the sub-shell. | |
989 | |
990 @item C-c C-x | |
991 A prefix command to access the global @key{C-x} commands conveniently. | |
992 For example, @kbd{C-c C-x o} invokes the global binding of | |
993 @kbd{C-x o}, which is normally @samp{other-window}. | |
994 @end table | |
995 | |
996 @node Paging in Term | |
997 @subsection Paging in the terminal emulator | |
998 | |
999 Term mode has a pager feature. When the pager is enabled, | |
1000 term mode will pause at the end of each screenful. | |
1001 | |
1002 @table @kbd | |
1003 @kindex C-c C-q @r{(Term mode)} | |
1004 @findex term-pager-toggle | |
1005 @item C-c C-q | |
1006 Toggles the pager feature: Disables the pager if it is enabled, | |
1007 and vice versa. This works in both line and char modes. | |
1008 If the pager enabled, the mode-line contains the word @samp{page}. | |
1009 @end table | |
1010 | |
1011 If the pager is enabled, and Term receives more than a screenful | |
1012 of output since your last input, Term will enter More break mode. | |
1013 This is indicated by @samp{**MORE**} in the mode-line. | |
1014 Type a @kbd{Space} to display the next screenful of output. | |
1015 Type @kbd{?} to see your other options. The interface is similar | |
1016 to the Unix @code{more} program. | |
1017 | |
25829 | 1018 @node Remote Host |
1019 @subsection Remote Host Shell | |
1020 @cindex remote host | |
1021 @cindex connecting to remote host | |
1022 @cindex Telnet | |
1023 @cindex Rlogin | |
1024 | |
27210 | 1025 You can login to a remote computer, using whatever commands you |
1026 would from a regular terminal (e.g.@: using the @code{telnet} or | |
1027 @code{rlogin} commands), from a Term window. | |
1028 | |
1029 A program that asks you for a password will normally suppress | |
1030 echoing of the password, so the password will not show up in the buffer. | |
1031 This will happen just as if you were using a real terminal, if | |
1032 the buffer is in char mode. If it is in line mode, the password | |
1033 will be temporarily visible, but will be erased when you hit return. | |
1034 (This happens automatically; there is no special password processing.) | |
1035 | |
1036 When you log in to a different machine, you need to specify the | |
1037 type of terminal your using. Terminal types @samp{ansi} | |
1038 or @samp{vt100} will work on most systems. | |
1039 | |
1040 @c If you are talking to a Bourne-compatible | |
29107 | 1041 @c shell, and your system understands the @env{TERMCAP} variable, |
27210 | 1042 @c you can use the command @kbd{M-x shell-send-termcap}, which |
1043 @c sends a string specifying the terminal type and size. | |
1044 @c (This command is also useful after the window has changed size.) | |
1045 | |
1046 @c You can of course run @samp{gdb} on that remote computer. One useful | |
1047 @c trick: If you invoke gdb with the @code{--fullname} option, | |
1048 @c it will send special commands to Emacs that will cause Emacs to | |
1049 @c pop up the source files you're debugging. This will work | |
1050 @c whether or not gdb is running on a different computer than Emacs, | |
1051 @c as long as Emacs can access the source files specified by gdb. | |
1052 | |
1053 You cannot log into to a remove comuter using the Shell mode. | |
1054 @c (This will change when Shell is re-written to use Term.) | |
1055 Instead, Emacs provides two commands for logging in to another computer | |
25829 | 1056 and communicating with it through an Emacs buffer. |
1057 | |
1058 @table @kbd | |
1059 @item M-x telnet @key{RET} @var{hostname} @key{RET} | |
1060 Set up a Telnet connection to the computer named @var{hostname}. | |
1061 @item M-x rlogin @key{RET} @var{hostname} @key{RET} | |
1062 Set up an Rlogin connection to the computer named @var{hostname}. | |
1063 @end table | |
1064 | |
1065 @findex telnet | |
1066 Use @kbd{M-x telnet} to set up a Telnet connection to another | |
1067 computer. (Telnet is the standard Internet protocol for remote login.) | |
1068 It reads the host name of the other computer as an argument with the | |
1069 minibuffer. Once the connection is established, talking to the other | |
1070 computer works like talking to a subshell: you can edit input with the | |
1071 usual Emacs commands, and send it a line at a time by typing @key{RET}. | |
1072 The output is inserted in the Telnet buffer interspersed with the input. | |
1073 | |
1074 @findex rlogin | |
1075 @vindex rlogin-explicit-args | |
1076 Use @kbd{M-x rlogin} to set up an Rlogin connection. Rlogin is | |
1077 another remote login communication protocol, essentially much like the | |
1078 Telnet protocol but incompatible with it, and supported only by certain | |
1079 systems. Rlogin's advantages are that you can arrange not to have to | |
1080 give your user name and password when communicating between two machines | |
1081 you frequently use, and that you can make an 8-bit-clean connection. | |
1082 (To do that in Emacs, set @code{rlogin-explicit-args} to @code{("-8")} | |
1083 before you run Rlogin.) | |
1084 | |
1085 @kbd{M-x rlogin} sets up the default file directory of the Emacs | |
1086 buffer to access the remote host via FTP (@pxref{File Names}), and it | |
1087 tracks the shell commands that change the current directory, just like | |
1088 Shell mode. | |
1089 | |
1090 @findex rlogin-directory-tracking-mode | |
1091 There are two ways of doing directory tracking in an Rlogin | |
1092 buffer---either with remote directory names | |
1093 @file{/@var{host}:@var{dir}/} or with local names (that works if the | |
1094 ``remote'' machine shares file systems with your machine of origin). | |
1095 You can use the command @code{rlogin-directory-tracking-mode} to switch | |
1096 modes. No argument means use remote directory names, a positive | |
1097 argument means use local names, and a negative argument means turn | |
1098 off directory tracking. | |
1099 | |
1100 @node Emacs Server, Hardcopy, Shell, Top | |
1101 @section Using Emacs as a Server | |
1102 @pindex emacsclient | |
1103 @cindex Emacs as a server | |
1104 @cindex server, using Emacs as | |
29107 | 1105 @cindex @env{EDITOR} environment variable |
25829 | 1106 |
1107 Various programs such as @code{mail} can invoke your choice of editor | |
1108 to edit a particular piece of text, such as a message that you are | |
1109 sending. By convention, most of these programs use the environment | |
29107 | 1110 variable @env{EDITOR} to specify which editor to run. If you set |
1111 @env{EDITOR} to @samp{emacs}, they invoke Emacs---but in an | |
25829 | 1112 inconvenient fashion, by starting a new, separate Emacs process. This |
1113 is inconvenient because it takes time and because the new Emacs process | |
1114 doesn't share the buffers in the existing Emacs process. | |
1115 | |
1116 You can arrange to use your existing Emacs process as the editor for | |
1117 programs like @code{mail} by using the Emacs client and Emacs server | |
1118 programs. Here is how. | |
1119 | |
29107 | 1120 @cindex @env{TEXEDIT} environment variable |
25829 | 1121 First, the preparation. Within Emacs, call the function |
1122 @code{server-start}. (Your @file{.emacs} file can do this automatically | |
1123 if you add the expression @code{(server-start)} to it.) Then, outside | |
29107 | 1124 Emacs, set the @env{EDITOR} environment variable to @samp{emacsclient}. |
25829 | 1125 (Note that some programs use a different environment variable; for |
1126 example, to make @TeX{} use @samp{emacsclient}, you should set the | |
29107 | 1127 @env{TEXEDIT} environment variable to @samp{emacsclient +%d %s}.) |
25829 | 1128 |
1129 @kindex C-x # | |
1130 @findex server-edit | |
29107 | 1131 Then, whenever any program invokes your specified @env{EDITOR} |
25829 | 1132 program, the effect is to send a message to your principal Emacs telling |
1133 it to visit a file. (That's what the program @code{emacsclient} does.) | |
1134 Emacs displays the buffer immediately and you can immediately begin | |
1135 editing it. | |
1136 | |
1137 When you've finished editing that buffer, type @kbd{C-x #} | |
1138 (@code{server-edit}). This saves the file and sends a message back to | |
1139 the @code{emacsclient} program telling it to exit. The programs that | |
29107 | 1140 use @env{EDITOR} wait for the ``editor'' (actually, @code{emacsclient}) |
25829 | 1141 to exit. @kbd{C-x #} also checks for other pending external requests |
1142 to edit various files, and selects the next such file. | |
1143 | |
1144 You can switch to a server buffer manually if you wish; you don't have | |
1145 to arrive at it with @kbd{C-x #}. But @kbd{C-x #} is the only way to | |
1146 say that you are ``finished'' with one. | |
1147 | |
1148 @vindex server-window | |
1149 If you set the variable @code{server-window} to a window or a frame, | |
1150 @kbd{C-x #} displays the server buffer in that window or in that frame. | |
1151 | |
1152 While @code{mail} or another application is waiting for | |
1153 @code{emacsclient} to finish, @code{emacsclient} does not read terminal | |
1154 input. So the terminal that @code{mail} was using is effectively | |
1155 blocked for the duration. In order to edit with your principal Emacs, | |
1156 you need to be able to use it without using that terminal. There are | |
1157 two ways to do this: | |
1158 | |
1159 @itemize @bullet | |
1160 @item | |
1161 Using a window system, run @code{mail} and the principal Emacs in two | |
1162 separate windows. While @code{mail} is waiting for @code{emacsclient}, | |
1163 the window where it was running is blocked, but you can use Emacs by | |
1164 switching windows. | |
1165 | |
1166 @item | |
1167 Use Shell mode in Emacs to run the other program such as @code{mail}; | |
1168 then, @code{emacsclient} blocks only the subshell under Emacs, and you | |
1169 can still use Emacs to edit the file. | |
1170 @end itemize | |
1171 | |
1172 @vindex server-temp-file-regexp | |
1173 Some programs write temporary files for you to edit. After you edit | |
1174 the temporary file, the program reads it back and deletes it. If the | |
1175 Emacs server is later asked to edit the same file name, it should assume | |
1176 this has nothing to do with the previous occasion for that file name. | |
1177 The server accomplishes this by killing the temporary file's buffer when | |
1178 you finish with the file. Use the variable | |
1179 @code{server-temp-file-regexp} to specify which files are temporary in | |
1180 this sense; its value should be a regular expression that matches file | |
1181 names that are temporary. | |
1182 | |
31031
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1183 @vindex server-kill-new-buffers |
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1184 If the variable @code{server-kill-new-buffers} is set to non-nil, |
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1185 buffers which still have a client are killed when you are done with |
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1186 them, unless they were already present before Emacs Server visited |
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1187 them. This overrides the effect of the @code{server-temp-file-regexp} |
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1188 variable. By default, @code{server-kill-new-buffers} has a non-nil |
31188 | 1189 value; set it to nil if you want the old behavior governed by |
31031
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1190 @code{server-temp-file-regexp}. |
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1191 |
25829 | 1192 If you run @code{emacsclient} with the option @samp{--no-wait}, it |
1193 returns immediately without waiting for you to ``finish'' the buffer in | |
31031
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1194 Emacs. Note that it this case, buffers for temporary files will not be |
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1195 killed automatically with the default value of |
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1196 @code{server-kill-new-buffers}, since those buffers will not have a |
bdfc8801dbb8
Document server-kill-new-buffers.
Eli Zaretskii <eliz@gnu.org>
parents:
31029
diff
changeset
|
1197 client. |
25829 | 1198 |
27306
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1199 If you have forgotten to start Emacs, then the option |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1200 @samp{--alternate-editor=@var{command}} may be useful. It specifies a |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1201 command to run if @code{emacsclient} fails to contact Emacs. For |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1202 example, the following setting for the @var{EDITOR} environment variable |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1203 will always give an editor, even if Emacs is not running. |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1204 |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1205 @example |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1206 EDITOR="emacsclient --alternate-editor vi +%d %s" |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1207 @end example |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1208 |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1209 The environment variable @var{ALTERNATE_EDITOR} has the same effect, but |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1210 the value of the @samp{--alternate-editor} takes precedence. |
e800c7e35912
New option --alternate-editor for emacsclient.
Gerd Moellmann <gerd@gnu.org>
parents:
27210
diff
changeset
|
1211 |
30856 | 1212 @pindex emacs.bash |
1213 Alternatively, the file @file{etc/emacs.bash} defines a function for | |
1214 @command{bash} which will use a running Emacs server or start one if | |
1215 none exists. | |
1216 | |
25829 | 1217 @menu |
1218 * Invoking emacsclient:: | |
1219 @end menu | |
1220 | |
1221 @node Invoking emacsclient,, Emacs Server, Emacs Server | |
1222 @section Invoking @code{emacsclient} | |
1223 | |
1224 To run the @code{emacsclient} program, specify file names as arguments, | |
1225 and optionally line numbers as well. Do it like this: | |
1226 | |
1227 @example | |
1228 emacsclient @r{@{}@r{[}+@var{line}@r{]} @var{filename}@r{@}}@dots{} | |
1229 @end example | |
1230 | |
1231 This tells Emacs to visit each of the specified files; if you specify a | |
1232 line number for a certain file, Emacs moves to that line in the file. | |
1233 | |
1234 Ordinarily, @code{emacsclient} does not return until you use the | |
1235 @kbd{C-x #} command on each of these buffers. When that happens, Emacs | |
1236 sends a message to the @code{emacsclient} program telling it to return. | |
1237 | |
1238 But if you use the option @samp{-n} or @samp{--no-wait} when running | |
1239 @code{emacsclient}, then it returns immediately. (You can take as long | |
1240 as you like to edit the files in Emacs.) | |
1241 | |
1242 | |
27210 | 1243 @node Hardcopy, PostScript, Emacs Server, Top |
25829 | 1244 @section Hardcopy Output |
1245 @cindex hardcopy | |
1246 | |
1247 The Emacs commands for making hardcopy let you print either an entire | |
1248 buffer or just part of one, either with or without page headers. | |
1249 See also the hardcopy commands of Dired (@pxref{Misc File Ops}) | |
1250 and the diary (@pxref{Diary Commands}). | |
1251 | |
1252 @table @kbd | |
1253 @item M-x print-buffer | |
1254 Print hardcopy of current buffer with page headings containing the file | |
1255 name and page number. | |
1256 @item M-x lpr-buffer | |
1257 Print hardcopy of current buffer without page headings. | |
1258 @item M-x print-region | |
1259 Like @code{print-buffer} but print only the current region. | |
1260 @item M-x lpr-region | |
1261 Like @code{lpr-buffer} but print only the current region. | |
1262 @end table | |
1263 | |
1264 @findex print-buffer | |
1265 @findex print-region | |
1266 @findex lpr-buffer | |
1267 @findex lpr-region | |
1268 @vindex lpr-switches | |
1269 The hardcopy commands (aside from the Postscript commands) pass extra | |
1270 switches to the @code{lpr} program based on the value of the variable | |
1271 @code{lpr-switches}. Its value should be a list of strings, each string | |
1272 an option starting with @samp{-}. For example, to specify a line width | |
1273 of 80 columns for all the printing you do in Emacs, set | |
1274 @code{lpr-switches} like this: | |
1275 | |
1276 @example | |
1277 (setq lpr-switches '("-w80")) | |
1278 @end example | |
1279 | |
1280 @vindex printer-name | |
1281 You can specify the printer to use by setting the variable | |
1282 @code{printer-name}. | |
1283 | |
1284 @vindex lpr-headers-switches | |
1285 @vindex lpr-commands | |
1286 @vindex lpr-add-switches | |
1287 The variable @code{lpr-command} specifies the name of the printer | |
1288 program to run; the default value depends on your operating system type. | |
1289 On most systems, the default is @code{"lpr"}. The variable | |
1290 @code{lpr-headers-switches} similarly specifies the extra switches to | |
1291 use to make page headers. The variable @code{lpr-add-switches} controls | |
1292 whether to supply @samp{-T} and @samp{-J} options (suitable for | |
1293 @code{lpr}) to the printer program: @code{nil} means don't add them. | |
1294 @code{lpr-add-switches} should be @code{nil} if your printer program is | |
1295 not compatible with @code{lpr}. | |
1296 | |
27210 | 1297 @node PostScript, PostScript Variables, Hardcopy, Top |
1298 @section PostScript Hardcopy | |
25829 | 1299 |
27210 | 1300 These commands convert buffer contents to PostScript, |
25829 | 1301 either printing it or leaving it in another Emacs buffer. |
1302 | |
1303 @table @kbd | |
1304 @item M-x ps-print-buffer | |
27210 | 1305 Print hardcopy of the current buffer in PostScript form. |
25829 | 1306 @item M-x ps-print-region |
27210 | 1307 Print hardcopy of the current region in PostScript form. |
25829 | 1308 @item M-x ps-print-buffer-with-faces |
27210 | 1309 Print hardcopy of the current buffer in PostScript form, showing the |
1310 faces used in the text by means of PostScript features. | |
25829 | 1311 @item M-x ps-print-region-with-faces |
27210 | 1312 Print hardcopy of the current region in PostScript form, showing the |
25829 | 1313 faces used in the text. |
1314 @item M-x ps-spool-buffer | |
27210 | 1315 Generate PostScript for the current buffer text. |
25829 | 1316 @item M-x ps-spool-region |
27210 | 1317 Generate PostScript for the current region. |
25829 | 1318 @item M-x ps-spool-buffer-with-faces |
27210 | 1319 Generate PostScript for the current buffer, showing the faces used. |
25829 | 1320 @item M-x ps-spool-region-with-faces |
27210 | 1321 Generate PostScript for the current region, showing the faces used. |
1322 @item M-x handwrite | |
1323 Generates/prints PostScript for the current buffer as if handwritten. | |
25829 | 1324 @end table |
1325 | |
1326 @findex ps-print-region | |
1327 @findex ps-print-buffer | |
1328 @findex ps-print-region-with-faces | |
1329 @findex ps-print-buffer-with-faces | |
27210 | 1330 The PostScript commands, @code{ps-print-buffer} and |
1331 @code{ps-print-region}, print buffer contents in PostScript form. One | |
25829 | 1332 command prints the entire buffer; the other, just the region. The |
1333 corresponding @samp{-with-faces} commands, | |
1334 @code{ps-print-buffer-with-faces} and @code{ps-print-region-with-faces}, | |
27210 | 1335 use PostScript features to show the faces (fonts and colors) in the text |
25829 | 1336 properties of the text being printed. |
1337 | |
1338 If you are using a color display, you can print a buffer of program | |
1339 code with color highlighting by turning on Font-Lock mode in that | |
1340 buffer, and using @code{ps-print-buffer-with-faces}. | |
1341 | |
1342 @findex ps-spool-region | |
1343 @findex ps-spool-buffer | |
1344 @findex ps-spool-region-with-faces | |
1345 @findex ps-spool-buffer-with-faces | |
1346 The commands whose names have @samp{spool} instead of @samp{print} | |
27210 | 1347 generate the PostScript output in an Emacs buffer instead of sending |
25829 | 1348 it to the printer. |
1349 | |
27210 | 1350 @findex handwrite |
1351 @cindex handwriting | |
1352 @kbd{M-x handwrite} is more frivolous. It generates a PostScript | |
1353 rendition of the current buffer as a cursive handwritten document. It | |
1354 can be customized in group @code{handwrite}. | |
1355 | |
25829 | 1356 @ifinfo |
1357 The following section describes variables for customizing these commands. | |
1358 @end ifinfo | |
1359 | |
27210 | 1360 @node PostScript Variables, Sorting, PostScript, Top |
1361 @section Variables for PostScript Hardcopy | |
25829 | 1362 |
1363 @vindex ps-lpr-command | |
1364 @vindex ps-lpr-switches | |
1365 @vindex ps-printer-name | |
27210 | 1366 All the PostScript hardcopy commands use the variables |
25829 | 1367 @code{ps-lpr-command} and @code{ps-lpr-switches} to specify how to print |
1368 the output. @code{ps-lpr-command} specifies the command name to run, | |
1369 @code{ps-lpr-switches} specifies command line options to use, and | |
1370 @code{ps-printer-name} specifies the printer. If you don't set the | |
1371 first two variables yourself, they take their initial values from | |
1372 @code{lpr-command} and @code{lpr-switches}. If @code{ps-printer-name} | |
1373 is @code{nil}, @code{printer-name} is used. | |
1374 | |
1375 @vindex ps-print-header | |
1376 @vindex ps-print-color-p | |
1377 The variable @code{ps-print-header} controls whether these commands | |
1378 add header lines to each page---set it to @code{nil} to turn headers | |
1379 off. You can turn off color processing by setting | |
1380 @code{ps-print-color-p} to @code{nil}. | |
1381 | |
1382 @vindex ps-paper-type | |
1383 @vindex ps-page-dimensions-database | |
1384 The variable @code{ps-paper-type} specifies which size of paper to | |
1385 format for; legitimate values include @code{a4}, @code{a3}, | |
1386 @code{a4small}, @code{b4}, @code{b5}, @code{executive}, @code{ledger}, | |
1387 @code{legal}, @code{letter}, @code{letter-small}, @code{statement}, | |
1388 @code{tabloid}. The default is @code{letter}. You can define | |
1389 additional paper sizes by changing the variable | |
1390 @code{ps-page-dimensions-database}. | |
1391 | |
1392 @vindex ps-landscape-mode | |
1393 The variable @code{ps-landscape-mode} specifies the orientation of | |
1394 printing on the page. The default is @code{nil}, which stands for | |
1395 ``portrait'' mode. Any non-@code{nil} value specifies ``landscape'' | |
1396 mode. | |
1397 | |
1398 @vindex ps-number-of-columns | |
1399 The variable @code{ps-number-of-columns} specifies the number of | |
1400 columns; it takes effect in both landscape and portrait mode. The | |
1401 default is 1. | |
1402 | |
1403 @vindex ps-font-family | |
1404 @vindex ps-font-size | |
1405 @vindex ps-font-info-database | |
1406 The variable @code{ps-font-family} specifies which font family to use | |
1407 for printing ordinary text. Legitimate values include @code{Courier}, | |
1408 @code{Helvetica}, @code{NewCenturySchlbk}, @code{Palatino} and | |
1409 @code{Times}. The variable @code{ps-font-size} specifies the size of | |
1410 the font for ordinary text. It defaults to 8.5 points. | |
1411 | |
1412 Many other customization variables for these commands are defined and | |
1413 described in the Lisp file @file{ps-print.el}. | |
1414 | |
27210 | 1415 @node Sorting, Narrowing, PostScript Variables, Top |
25829 | 1416 @section Sorting Text |
1417 @cindex sorting | |
1418 | |
1419 Emacs provides several commands for sorting text in the buffer. All | |
1420 operate on the contents of the region (the text between point and the | |
1421 mark). They divide the text of the region into many @dfn{sort records}, | |
1422 identify a @dfn{sort key} for each record, and then reorder the records | |
1423 into the order determined by the sort keys. The records are ordered so | |
1424 that their keys are in alphabetical order, or, for numeric sorting, in | |
1425 numeric order. In alphabetic sorting, all upper-case letters `A' through | |
1426 `Z' come before lower-case `a', in accord with the ASCII character | |
1427 sequence. | |
1428 | |
1429 The various sort commands differ in how they divide the text into sort | |
1430 records and in which part of each record is used as the sort key. Most of | |
1431 the commands make each line a separate sort record, but some commands use | |
1432 paragraphs or pages as sort records. Most of the sort commands use each | |
1433 entire sort record as its own sort key, but some use only a portion of the | |
1434 record as the sort key. | |
1435 | |
1436 @findex sort-lines | |
1437 @findex sort-paragraphs | |
1438 @findex sort-pages | |
1439 @findex sort-fields | |
1440 @findex sort-numeric-fields | |
27469 | 1441 @vindex sort-numeric-base |
25829 | 1442 @table @kbd |
1443 @item M-x sort-lines | |
1444 Divide the region into lines, and sort by comparing the entire | |
1445 text of a line. A numeric argument means sort into descending order. | |
1446 | |
1447 @item M-x sort-paragraphs | |
1448 Divide the region into paragraphs, and sort by comparing the entire | |
1449 text of a paragraph (except for leading blank lines). A numeric | |
1450 argument means sort into descending order. | |
1451 | |
1452 @item M-x sort-pages | |
1453 Divide the region into pages, and sort by comparing the entire | |
1454 text of a page (except for leading blank lines). A numeric | |
1455 argument means sort into descending order. | |
1456 | |
1457 @item M-x sort-fields | |
1458 Divide the region into lines, and sort by comparing the contents of | |
1459 one field in each line. Fields are defined as separated by | |
1460 whitespace, so the first run of consecutive non-whitespace characters | |
1461 in a line constitutes field 1, the second such run constitutes field | |
1462 2, etc. | |
1463 | |
1464 Specify which field to sort by with a numeric argument: 1 to sort by | |
1465 field 1, etc. A negative argument means count fields from the right | |
1466 instead of from the left; thus, minus 1 means sort by the last field. | |
1467 If several lines have identical contents in the field being sorted, they | |
1468 keep same relative order that they had in the original buffer. | |
1469 | |
1470 @item M-x sort-numeric-fields | |
1471 Like @kbd{M-x sort-fields} except the specified field is converted | |
1472 to an integer for each line, and the numbers are compared. @samp{10} | |
1473 comes before @samp{2} when considered as text, but after it when | |
27469 | 1474 considered as a number. By default, numbers are interpreted according |
1475 to @code{sort-numeric-base}, but numbers beginning with @samp{0x} or | |
1476 @samp{0} are interpreted as hexadecimal and octal, respectively. | |
25829 | 1477 |
1478 @item M-x sort-columns | |
1479 Like @kbd{M-x sort-fields} except that the text within each line | |
1480 used for comparison comes from a fixed range of columns. See below | |
1481 for an explanation. | |
1482 | |
1483 @item M-x reverse-region | |
1484 Reverse the order of the lines in the region. This is useful for | |
1485 sorting into descending order by fields or columns, since those sort | |
1486 commands do not have a feature for doing that. | |
1487 @end table | |
1488 | |
1489 For example, if the buffer contains this: | |
1490 | |
1491 @smallexample | |
1492 On systems where clash detection (locking of files being edited) is | |
1493 implemented, Emacs also checks the first time you modify a buffer | |
1494 whether the file has changed on disk since it was last visited or | |
1495 saved. If it has, you are asked to confirm that you want to change | |
1496 the buffer. | |
1497 @end smallexample | |
1498 | |
1499 @noindent | |
1500 applying @kbd{M-x sort-lines} to the entire buffer produces this: | |
1501 | |
1502 @smallexample | |
1503 On systems where clash detection (locking of files being edited) is | |
1504 implemented, Emacs also checks the first time you modify a buffer | |
1505 saved. If it has, you are asked to confirm that you want to change | |
1506 the buffer. | |
1507 whether the file has changed on disk since it was last visited or | |
1508 @end smallexample | |
1509 | |
1510 @noindent | |
1511 where the upper-case @samp{O} sorts before all lower-case letters. If | |
1512 you use @kbd{C-u 2 M-x sort-fields} instead, you get this: | |
1513 | |
1514 @smallexample | |
1515 implemented, Emacs also checks the first time you modify a buffer | |
1516 saved. If it has, you are asked to confirm that you want to change | |
1517 the buffer. | |
1518 On systems where clash detection (locking of files being edited) is | |
1519 whether the file has changed on disk since it was last visited or | |
1520 @end smallexample | |
1521 | |
1522 @noindent | |
1523 where the sort keys were @samp{Emacs}, @samp{If}, @samp{buffer}, | |
1524 @samp{systems} and @samp{the}. | |
1525 | |
1526 @findex sort-columns | |
1527 @kbd{M-x sort-columns} requires more explanation. You specify the | |
1528 columns by putting point at one of the columns and the mark at the other | |
1529 column. Because this means you cannot put point or the mark at the | |
1530 beginning of the first line of the text you want to sort, this command | |
1531 uses an unusual definition of `region': all of the line point is in is | |
1532 considered part of the region, and so is all of the line the mark is in, | |
1533 as well as all the lines in between. | |
1534 | |
1535 For example, to sort a table by information found in columns 10 to 15, | |
1536 you could put the mark on column 10 in the first line of the table, and | |
1537 point on column 15 in the last line of the table, and then run | |
1538 @code{sort-columns}. Equivalently, you could run it with the mark on | |
1539 column 15 in the first line and point on column 10 in the last line. | |
1540 | |
1541 This can be thought of as sorting the rectangle specified by point and | |
1542 the mark, except that the text on each line to the left or right of the | |
1543 rectangle moves along with the text inside the rectangle. | |
1544 @xref{Rectangles}. | |
1545 | |
1546 @vindex sort-fold-case | |
1547 Many of the sort commands ignore case differences when comparing, if | |
1548 @code{sort-fold-case} is non-@code{nil}. | |
1549 | |
1550 @node Narrowing, Two-Column, Sorting, Top | |
1551 @section Narrowing | |
1552 @cindex widening | |
1553 @cindex restriction | |
1554 @cindex narrowing | |
1555 @cindex accessible portion | |
1556 | |
1557 @dfn{Narrowing} means focusing in on some portion of the buffer, | |
1558 making the rest temporarily inaccessible. The portion which you can | |
1559 still get to is called the @dfn{accessible portion}. Canceling the | |
1560 narrowing, which makes the entire buffer once again accessible, is | |
1561 called @dfn{widening}. The amount of narrowing in effect in a buffer at | |
1562 any time is called the buffer's @dfn{restriction}. | |
1563 | |
1564 Narrowing can make it easier to concentrate on a single subroutine or | |
1565 paragraph by eliminating clutter. It can also be used to restrict the | |
1566 range of operation of a replace command or repeating keyboard macro. | |
1567 | |
1568 @c WideCommands | |
1569 @table @kbd | |
1570 @item C-x n n | |
1571 Narrow down to between point and mark (@code{narrow-to-region}). | |
1572 @item C-x n w | |
1573 Widen to make the entire buffer accessible again (@code{widen}). | |
1574 @item C-x n p | |
1575 Narrow down to the current page (@code{narrow-to-page}). | |
1576 @item C-x n d | |
1577 Narrow down to the current defun (@code{narrow-to-defun}). | |
1578 @end table | |
1579 | |
1580 When you have narrowed down to a part of the buffer, that part appears | |
1581 to be all there is. You can't see the rest, you can't move into it | |
1582 (motion commands won't go outside the accessible part), you can't change | |
1583 it in any way. However, it is not gone, and if you save the file all | |
1584 the inaccessible text will be saved. The word @samp{Narrow} appears in | |
1585 the mode line whenever narrowing is in effect. | |
1586 | |
1587 @kindex C-x n n | |
1588 @findex narrow-to-region | |
1589 The primary narrowing command is @kbd{C-x n n} (@code{narrow-to-region}). | |
1590 It sets the current buffer's restrictions so that the text in the current | |
1591 region remains accessible but all text before the region or after the region | |
1592 is inaccessible. Point and mark do not change. | |
1593 | |
1594 @kindex C-x n p | |
1595 @findex narrow-to-page | |
1596 @kindex C-x n d | |
1597 @findex narrow-to-defun | |
1598 Alternatively, use @kbd{C-x n p} (@code{narrow-to-page}) to narrow | |
1599 down to the current page. @xref{Pages}, for the definition of a page. | |
1600 @kbd{C-x n d} (@code{narrow-to-defun}) narrows down to the defun | |
1601 containing point (@pxref{Defuns}). | |
1602 | |
1603 @kindex C-x n w | |
1604 @findex widen | |
1605 The way to cancel narrowing is to widen with @kbd{C-x n w} | |
1606 (@code{widen}). This makes all text in the buffer accessible again. | |
1607 | |
1608 You can get information on what part of the buffer you are narrowed down | |
1609 to using the @kbd{C-x =} command. @xref{Position Info}. | |
1610 | |
1611 Because narrowing can easily confuse users who do not understand it, | |
1612 @code{narrow-to-region} is normally a disabled command. Attempting to use | |
1613 this command asks for confirmation and gives you the option of enabling it; | |
1614 if you enable the command, confirmation will no longer be required for | |
1615 it. @xref{Disabling}. | |
1616 | |
1617 @node Two-Column, Editing Binary Files, Narrowing, Top | |
1618 @section Two-Column Editing | |
1619 @cindex two-column editing | |
1620 @cindex splitting columns | |
1621 @cindex columns, splitting | |
1622 | |
1623 Two-column mode lets you conveniently edit two side-by-side columns of | |
1624 text. It uses two side-by-side windows, each showing its own | |
1625 buffer. | |
1626 | |
1627 There are three ways to enter two-column mode: | |
1628 | |
1629 @table @asis | |
1630 @item @kbd{@key{F2} 2} or @kbd{C-x 6 2} | |
1631 @kindex F2 2 | |
1632 @kindex C-x 6 2 | |
1633 @findex 2C-two-columns | |
1634 Enter two-column mode with the current buffer on the left, and on the | |
1635 right, a buffer whose name is based on the current buffer's name | |
1636 (@code{2C-two-columns}). If the right-hand buffer doesn't already | |
1637 exist, it starts out empty; the current buffer's contents are not | |
1638 changed. | |
1639 | |
1640 This command is appropriate when the current buffer is empty or contains | |
1641 just one column and you want to add another column. | |
1642 | |
1643 @item @kbd{@key{F2} s} or @kbd{C-x 6 s} | |
1644 @kindex F2 s | |
1645 @kindex C-x 6 s | |
1646 @findex 2C-split | |
1647 Split the current buffer, which contains two-column text, into two | |
1648 buffers, and display them side by side (@code{2C-split}). The current | |
1649 buffer becomes the left-hand buffer, but the text in the right-hand | |
1650 column is moved into the right-hand buffer. The current column | |
1651 specifies the split point. Splitting starts with the current line and | |
1652 continues to the end of the buffer. | |
1653 | |
1654 This command is appropriate when you have a buffer that already contains | |
1655 two-column text, and you wish to separate the columns temporarily. | |
1656 | |
1657 @item @kbd{@key{F2} b @var{buffer} @key{RET}} | |
1658 @itemx @kbd{C-x 6 b @var{buffer} @key{RET}} | |
1659 @kindex F2 b | |
1660 @kindex C-x 6 b | |
1661 @findex 2C-associate-buffer | |
1662 Enter two-column mode using the current buffer as the left-hand buffer, | |
1663 and using buffer @var{buffer} as the right-hand buffer | |
1664 (@code{2C-associate-buffer}). | |
1665 @end table | |
1666 | |
1667 @kbd{@key{F2} s} or @kbd{C-x 6 s} looks for a column separator, which | |
1668 is a string that appears on each line between the two columns. You can | |
1669 specify the width of the separator with a numeric argument to | |
1670 @kbd{@key{F2} s}; that many characters, before point, constitute the | |
1671 separator string. By default, the width is 1, so the column separator | |
1672 is the character before point. | |
1673 | |
1674 When a line has the separator at the proper place, @kbd{@key{F2} s} | |
1675 puts the text after the separator into the right-hand buffer, and | |
1676 deletes the separator. Lines that don't have the column separator at | |
1677 the proper place remain unsplit; they stay in the left-hand buffer, and | |
1678 the right-hand buffer gets an empty line to correspond. (This is the | |
1679 way to write a line that ``spans both columns while in two-column | |
1680 mode'': write it in the left-hand buffer, and put an empty line in the | |
1681 right-hand buffer.) | |
1682 | |
1683 @kindex F2 RET | |
1684 @kindex C-x 6 RET | |
1685 @findex 2C-newline | |
1686 The command @kbd{C-x 6 @key{RET}} or @kbd{@key{F2} @key{RET}} | |
1687 (@code{2C-newline}) inserts a newline in each of the two buffers at | |
1688 corresponding positions. This is the easiest way to add a new line to | |
1689 the two-column text while editing it in split buffers. | |
1690 | |
1691 @kindex F2 1 | |
1692 @kindex C-x 6 1 | |
1693 @findex 2C-merge | |
1694 When you have edited both buffers as you wish, merge them with | |
1695 @kbd{@key{F2} 1} or @kbd{C-x 6 1} (@code{2C-merge}). This copies the | |
1696 text from the right-hand buffer as a second column in the other buffer. | |
1697 To go back to two-column editing, use @kbd{@key{F2} s}. | |
1698 | |
1699 @kindex F2 d | |
1700 @kindex C-x 6 d | |
1701 @findex 2C-dissociate | |
1702 Use @kbd{@key{F2} d} or @kbd{C-x 6 d} to dissociate the two buffers, | |
1703 leaving each as it stands (@code{2C-dissociate}). If the other buffer, | |
1704 the one not current when you type @kbd{@key{F2} d}, is empty, | |
1705 @kbd{@key{F2} d} kills it. | |
1706 | |
1707 @node Editing Binary Files, Saving Emacs Sessions, Two-Column, Top | |
1708 @section Editing Binary Files | |
1709 | |
1710 @cindex Hexl mode | |
1711 @cindex mode, Hexl | |
1712 @cindex editing binary files | |
31029 | 1713 @cindex hex editing |
25829 | 1714 There is a special major mode for editing binary files: Hexl mode. To |
1715 use it, use @kbd{M-x hexl-find-file} instead of @kbd{C-x C-f} to visit | |
1716 the file. This command converts the file's contents to hexadecimal and | |
1717 lets you edit the translation. When you save the file, it is converted | |
1718 automatically back to binary. | |
1719 | |
1720 You can also use @kbd{M-x hexl-mode} to translate an existing buffer | |
1721 into hex. This is useful if you visit a file normally and then discover | |
1722 it is a binary file. | |
1723 | |
1724 Ordinary text characters overwrite in Hexl mode. This is to reduce | |
1725 the risk of accidentally spoiling the alignment of data in the file. | |
1726 There are special commands for insertion. Here is a list of the | |
1727 commands of Hexl mode: | |
1728 | |
1729 @c I don't think individual index entries for these commands are useful--RMS. | |
1730 @table @kbd | |
1731 @item C-M-d | |
1732 Insert a byte with a code typed in decimal. | |
1733 | |
1734 @item C-M-o | |
1735 Insert a byte with a code typed in octal. | |
1736 | |
1737 @item C-M-x | |
1738 Insert a byte with a code typed in hex. | |
1739 | |
1740 @item C-x [ | |
1741 Move to the beginning of a 1k-byte ``page.'' | |
1742 | |
1743 @item C-x ] | |
1744 Move to the end of a 1k-byte ``page.'' | |
1745 | |
1746 @item M-g | |
1747 Move to an address specified in hex. | |
1748 | |
1749 @item M-j | |
1750 Move to an address specified in decimal. | |
1751 | |
1752 @item C-c C-c | |
1753 Leave Hexl mode, going back to the major mode this buffer had before you | |
1754 invoked @code{hexl-mode}. | |
1755 @end table | |
1756 | |
31029 | 1757 @noindent |
1758 Other Hexl commands let you insert strings (sequences) of binary bytes, | |
1759 move by short's or int's, etc.; type @kbd{C-h a hexl- RET} for details. | |
1760 | |
1761 | |
25829 | 1762 @node Saving Emacs Sessions, Recursive Edit, Editing Binary Files, Top |
1763 @section Saving Emacs Sessions | |
1764 @cindex saving sessions | |
1765 @cindex desktop | |
1766 | |
1767 You can use the Desktop library to save the state of Emacs from one | |
1768 session to another. Saving the state means that Emacs starts up with | |
1769 the same set of buffers, major modes, buffer positions, and so on that | |
1770 the previous Emacs session had. | |
1771 | |
1772 @vindex desktop-enable | |
1773 To use Desktop, you should use the Customization buffer (@pxref{Easy | |
1774 Customization}) to set @code{desktop-enable} to a non-@code{nil} value, | |
1775 or add these lines at the end of your @file{.emacs} file: | |
1776 | |
1777 @example | |
1778 (desktop-load-default) | |
1779 (desktop-read) | |
1780 @end example | |
1781 | |
1782 @noindent | |
1783 @findex desktop-save | |
1784 The first time you save the state of the Emacs session, you must do it | |
1785 manually, with the command @kbd{M-x desktop-save}. Once you have done | |
1786 that, exiting Emacs will save the state again---not only the present | |
1787 Emacs session, but also subsequent sessions. You can also save the | |
1788 state at any time, without exiting Emacs, by typing @kbd{M-x | |
1789 desktop-save} again. | |
1790 | |
1791 In order for Emacs to recover the state from a previous session, you | |
1792 must start it with the same current directory as you used when you | |
1793 started the previous session. This is because @code{desktop-read} looks | |
1794 in the current directory for the file to read. This means that you can | |
1795 have separate saved sessions in different directories; the directory in | |
1796 which you start Emacs will control which saved session to use. | |
1797 | |
1798 @vindex desktop-files-not-to-save | |
1799 The variable @code{desktop-files-not-to-save} controls which files are | |
1800 excluded from state saving. Its value is a regular expression that | |
1801 matches the files to exclude. By default, remote (ftp-accessed) files | |
1802 are excluded; this is because visiting them again in the subsequent | |
1803 session would be slow. If you want to include these files in state | |
1804 saving, set @code{desktop-files-not-to-save} to @code{"^$"}. | |
1805 @xref{Remote Files}. | |
1806 | |
29083 | 1807 @vindex save-place |
1808 @cindex Saveplace | |
1809 @findex toggle-save-place | |
1810 There is a simpler mechanism provided by Saveplace library which records | |
1811 your position in each file when you kill its buffer (or kill Emacs), and | |
1812 jumps to the same position when you visit the file again (even in | |
31310 | 1813 another Emacs session). Use @kbd{M-x toggle-save-place} to turn on |
29083 | 1814 place-saving in a given file. Customize the option @code{save-place} to |
1815 turn it on for all files in each session. | |
1816 | |
25829 | 1817 @node Recursive Edit, Emulation, Saving Emacs Sessions, Top |
1818 @section Recursive Editing Levels | |
1819 @cindex recursive editing level | |
1820 @cindex editing level, recursive | |
1821 | |
1822 A @dfn{recursive edit} is a situation in which you are using Emacs | |
1823 commands to perform arbitrary editing while in the middle of another | |
1824 Emacs command. For example, when you type @kbd{C-r} inside of a | |
1825 @code{query-replace}, you enter a recursive edit in which you can change | |
1826 the current buffer. On exiting from the recursive edit, you go back to | |
1827 the @code{query-replace}. | |
1828 | |
1829 @kindex C-M-c | |
1830 @findex exit-recursive-edit | |
1831 @cindex exiting recursive edit | |
1832 @dfn{Exiting} the recursive edit means returning to the unfinished | |
1833 command, which continues execution. The command to exit is @kbd{C-M-c} | |
1834 (@code{exit-recursive-edit}). | |
1835 | |
1836 You can also @dfn{abort} the recursive edit. This is like exiting, | |
1837 but also quits the unfinished command immediately. Use the command | |
1838 @kbd{C-]} (@code{abort-recursive-edit}) to do this. @xref{Quitting}. | |
1839 | |
1840 The mode line shows you when you are in a recursive edit by displaying | |
1841 square brackets around the parentheses that always surround the major and | |
1842 minor mode names. Every window's mode line shows this, in the same way, | |
1843 since being in a recursive edit is true of Emacs as a whole rather than | |
1844 any particular window or buffer. | |
1845 | |
1846 It is possible to be in recursive edits within recursive edits. For | |
1847 example, after typing @kbd{C-r} in a @code{query-replace}, you may type a | |
1848 command that enters the debugger. This begins a recursive editing level | |
1849 for the debugger, within the recursive editing level for @kbd{C-r}. | |
1850 Mode lines display a pair of square brackets for each recursive editing | |
1851 level currently in progress. | |
1852 | |
1853 Exiting the inner recursive edit (such as, with the debugger @kbd{c} | |
1854 command) resumes the command running in the next level up. When that | |
1855 command finishes, you can then use @kbd{C-M-c} to exit another recursive | |
1856 editing level, and so on. Exiting applies to the innermost level only. | |
1857 Aborting also gets out of only one level of recursive edit; it returns | |
1858 immediately to the command level of the previous recursive edit. If you | |
1859 wish, you can then abort the next recursive editing level. | |
1860 | |
1861 Alternatively, the command @kbd{M-x top-level} aborts all levels of | |
1862 recursive edits, returning immediately to the top-level command reader. | |
1863 | |
1864 The text being edited inside the recursive edit need not be the same text | |
1865 that you were editing at top level. It depends on what the recursive edit | |
1866 is for. If the command that invokes the recursive edit selects a different | |
1867 buffer first, that is the buffer you will edit recursively. In any case, | |
1868 you can switch buffers within the recursive edit in the normal manner (as | |
1869 long as the buffer-switching keys have not been rebound). You could | |
1870 probably do all the rest of your editing inside the recursive edit, | |
1871 visiting files and all. But this could have surprising effects (such as | |
1872 stack overflow) from time to time. So remember to exit or abort the | |
1873 recursive edit when you no longer need it. | |
1874 | |
1875 In general, we try to minimize the use of recursive editing levels in | |
1876 GNU Emacs. This is because they constrain you to ``go back'' in a | |
1877 particular order---from the innermost level toward the top level. When | |
1878 possible, we present different activities in separate buffers so that | |
1879 you can switch between them as you please. Some commands switch to a | |
1880 new major mode which provides a command to switch back. These | |
1881 approaches give you more flexibility to go back to unfinished tasks in | |
1882 the order you choose. | |
1883 | |
28448 | 1884 @node Emulation, Hyperlinking, Recursive Edit, Top |
25829 | 1885 @section Emulation |
1886 @cindex emulating other editors | |
1887 @cindex other editors | |
1888 @cindex EDT | |
1889 @cindex vi | |
27210 | 1890 @cindex CRiSP |
1891 @cindex Brief | |
1892 @cindex PC keybindings | |
1893 @cindex scrolling all windows | |
1894 @cindex PC selecion | |
1895 @cindex Motif keybindings | |
1896 @cindex Macintosh keybindings | |
1897 @cindex WordStar | |
25829 | 1898 |
1899 GNU Emacs can be programmed to emulate (more or less) most other | |
1900 editors. Standard facilities can emulate these: | |
1901 | |
1902 @table @asis | |
27210 | 1903 @item CRiSP/Brief (PC editor) |
1904 @findex crisp-mode | |
1905 @vindex crisp-override-meta-x | |
1906 @findex scroll-all-mode | |
30856 | 1907 @cindex CRiSP mode |
1908 @cindex Brief emulation | |
1909 @cindex mode, CRiSP | |
1910 You can turn on keybindings to emulate the CRiSP/Brief editor with | |
1911 @kbd{M-x crisp-mode}. Note that this rebinds @kbd{M-x} to exit Emacs | |
1912 unless you change the user option @code{crisp-override-meta-x}. You can | |
1913 also use the command @kbd{M-x scroll-all-mode} or set the user option | |
1914 @code{crisp-load-scroll-all} to emulate CRiSP's scroll-all feature | |
1915 (scrolling all windows together). | |
27210 | 1916 |
25829 | 1917 @item EDT (DEC VMS editor) |
1918 @findex edt-emulation-on | |
1919 @findex edt-emulation-off | |
1920 Turn on EDT emulation with @kbd{M-x edt-emulation-on}. @kbd{M-x | |
1921 edt-emulation-off} restores normal Emacs command bindings. | |
1922 | |
1923 Most of the EDT emulation commands are keypad keys, and most standard | |
1924 Emacs key bindings are still available. The EDT emulation rebindings | |
1925 are done in the global keymap, so there is no problem switching | |
1926 buffers or major modes while in EDT emulation. | |
1927 | |
27210 | 1928 @item `PC' bindings |
1929 @findex pc-bindings-mode | |
30856 | 1930 @cindex `PC' key bindings |
1931 The command @kbd{M-x pc-bindings-mode} sets up certain key bindings for | |
1932 `PC compatibility'---what people are often used to on PCs---as follows: | |
27210 | 1933 @kbd{Delete} and its variants) delete forward instead of backward, |
1934 @kbd{C-Backspace} kills backward a word (as @kbd{C-Delete} normally | |
1935 would), @kbd{M-Backspace} does undo, @kbd{Home} and @kbd{End} move to | |
1936 beginning and end of line, @kbd{C-Home} and @kbd{C-End} move to | |
1937 beginning and end of buffer and @kbd{C-Escape} does @code{list-buffers}. | |
1938 | |
30856 | 1939 @item PC Selection mode |
27210 | 1940 @findex pc-selection-mode |
30856 | 1941 @cindex PC Selection minor mode |
1942 @cindex mode, PC selection | |
1943 @cindex selection, `PC' | |
1944 The command @kbd{M-x pc-selction-mode} turns on a global minor mode | |
1945 which emulates the mark, copy, cut and paste | |
27210 | 1946 look-and-feel of Motif programs (which is the same as the Macintosh GUI |
1947 and MS-Windows). It makes the keybindings of PC mode and also modifies | |
1948 the bindings of the cursor keys and the @kbd{next}, @kbd{prior}, | |
1949 @kbd{home} and @kbd{end} keys. It does not provide the full set of CUA | |
1950 keybindings---the fundamental Emacs keys @kbd{C-c}, @kbd{C-v} and | |
1951 @kbd{C-x} are not rebound. | |
1952 | |
1953 The standard keys for moving around (@kbd{right}, @kbd{left}, @kbd{up}, | |
1954 @kbd{down}, @kbd{home}, @kbd{end}, @kbd{prior}, @kbd{next}, called | |
1955 ``move-keys'') will always de-activate the mark. Using @kbd{Shift} | |
1956 together with the ``move keys'' activates the region over which they | |
1957 move. The copy, cut and paste functions (as in many other programs) | |
1958 operate on the active region, bound to @kbd{C-insert}, @kbd{S-delete} | |
1959 and @kbd{S-insert} respectively. | |
1960 | |
31310 | 1961 @cindex s-region package |
27210 | 1962 The @code{s-region} package provides similar, but less complete, |
1963 facilities. | |
1964 | |
28448 | 1965 @item TPU (DEC VMS editor) |
1966 @findex tpu-edt-on | |
1967 @cindex TPU | |
1968 @kbd{M-x tpu-edt-on} turns on emulation of the TPU editor emulating EDT. | |
1969 | |
25829 | 1970 @item vi (Berkeley editor) |
1971 @findex viper-mode | |
1972 Viper is the newest emulator for vi. It implements several levels of | |
1973 emulation; level 1 is closest to vi itself, while level 5 departs | |
1974 somewhat from strict emulation to take advantage of the capabilities of | |
1975 Emacs. To invoke Viper, type @kbd{M-x viper-mode}; it will guide you | |
1976 the rest of the way and ask for the emulation level. @inforef{Top, | |
1977 Viper, viper}. | |
1978 | |
1979 @item vi (another emulator) | |
1980 @findex vi-mode | |
1981 @kbd{M-x vi-mode} enters a major mode that replaces the previously | |
1982 established major mode. All of the vi commands that, in real vi, enter | |
1983 ``input'' mode are programmed instead to return to the previous major | |
1984 mode. Thus, ordinary Emacs serves as vi's ``input'' mode. | |
1985 | |
1986 Because vi emulation works through major modes, it does not work | |
1987 to switch buffers during emulation. Return to normal Emacs first. | |
1988 | |
1989 If you plan to use vi emulation much, you probably want to bind a key | |
1990 to the @code{vi-mode} command. | |
1991 | |
1992 @item vi (alternate emulator) | |
1993 @findex vip-mode | |
1994 @kbd{M-x vip-mode} invokes another vi emulator, said to resemble real vi | |
1995 more thoroughly than @kbd{M-x vi-mode}. ``Input'' mode in this emulator | |
1996 is changed from ordinary Emacs so you can use @key{ESC} to go back to | |
1997 emulated vi command mode. To get from emulated vi command mode back to | |
1998 ordinary Emacs, type @kbd{C-z}. | |
1999 | |
2000 This emulation does not work through major modes, and it is possible | |
2001 to switch buffers in various ways within the emulator. It is not | |
2002 so necessary to assign a key to the command @code{vip-mode} as | |
2003 it is with @code{vi-mode} because terminating insert mode does | |
2004 not use it. | |
2005 | |
2006 @inforef{Top, VIP, vip}, for full information. | |
27210 | 2007 |
2008 @item WordStar (old wordprocessor) | |
2009 @findex wordstar-mode | |
2010 @kbd{M-x wordstar-mode} provides a major mode with WordStar-like | |
2011 keybindings. | |
25829 | 2012 @end table |
2013 | |
28448 | 2014 @node Hyperlinking, Dissociated Press, Emulation, Top |
2015 @section Hyperlinking and Navigation Features | |
2016 | |
2017 @cindex hyperlinking | |
2018 @cindex URLs | |
2019 @cindex navigation | |
2020 Various modes documented elsewhere have hypertext features whereby you | |
2021 can follow links, usually with @kbd{mouse-2} or @kbd{RET} on the text of | |
2022 the link. Info mode, Help mode and the Dired-like modes are examples. | |
30856 | 2023 The Tags facility links between uses and definitions in source files, |
2024 see @ref{Tags}. Imenu provides navigation amongst items indexed in the | |
2025 current buffer, see @ref{Imenu}. Info-lookup provides mode-specific | |
2026 lookup of definitions in Info indexes, see @ref{Documentation}. | |
2027 Speedbar maintains a frame in which links to files, and locations in | |
2028 files are displayed, see @ref{Speedbar}. | |
2029 | |
2030 Other non-mode-specific facilities described in this section enable | |
2031 following links from the current buffer in a context-sensitive fashion. | |
28448 | 2032 |
30856 | 2033 @menu |
2034 * Browse-URL:: Following URLs. | |
2035 * Goto-address:: Activating URLs. | |
2036 * FFAP:: Finding files etc. at point. | |
2037 * Find-func:: Finding function and variable definitions. | |
2038 @end menu | |
28448 | 2039 |
30856 | 2040 @node Browse-URL |
2041 @subsection Following URLs | |
28448 | 2042 @cindex World Wide Web |
30856 | 2043 @cindex Web |
28448 | 2044 @findex browse-url |
2045 @findex browse-url-at-point | |
2046 @findex browse-url-at-mouse | |
2047 @cindex Browse-URL | |
2048 @cindex URLs | |
30856 | 2049 |
2050 @table @kbd | |
2051 @item M-x browse-url @key{RET} @var{url} @key{ret} | |
2052 Load a URL into a Web browser. | |
2053 @end table | |
2054 | |
28448 | 2055 The Browse-URL package provides facilities for following URLs specifying |
2056 links on the World Wide Web. Usually this works by invoking a web | |
30856 | 2057 browser but you can, for instance, arrange to invoke @code{compose-mail} |
2058 from @samp{mailto:} URLs. Packages such as Gnus may make active links | |
2059 from URLs themselves. Otherwise you can use @kbd{M-x browse-url} to | |
2060 follow a link, defaulting to the URL at point. Other commands are | |
2061 available which you might like to bind to keys, such as | |
2062 @code{browse-url-at-point} and @code{browse-url-at-mouse}. | |
28448 | 2063 |
30856 | 2064 @vindex browse-url-browser-function |
28448 | 2065 You can customize Browse-URL's behaviour via various options in the |
30856 | 2066 @code{browse-url} Customize group, particularly |
28448 | 2067 @code{browse-url-browser-function}. You can invoke actions dependent on |
2068 the type of URL by defining @code{browse-url-browser-function} as an | |
2069 association list. The package's commentary available via @kbd{C-h p} | |
2070 provides more information. Packages with facilities for following URLs | |
30856 | 2071 should use Browse-URL, so customizing options in the @code{browse-url} |
2072 group should be sufficient to determine how they all work in that | |
2073 respect. | |
28448 | 2074 |
30856 | 2075 @node Goto-address |
2076 @subsection Activating URLs | |
28448 | 2077 @findex goto-address |
2078 @cindex Goto-address | |
2079 @cindex URLs, activating | |
30856 | 2080 |
2081 @table @kbd | |
2082 @item M-x goto-address | |
2083 Activate URLs and e-mail addresses in the current buffer. | |
2084 @end table | |
2085 | |
28448 | 2086 You can arrange to activate URLs in any buffer with @kbd{M-x |
2087 goto-address}. It may be useful to add @code{goto-address} to hooks | |
2088 invoked when buffers are displayed in particular modes. | |
2089 @code{rmail-show-message-hook} is the appropriate hook if you use Rmail, | |
2090 or @code{mh-show-mode-hook} if you use MH. | |
2091 | |
30856 | 2092 @node FFAP |
2093 @subsection Finding Files and URLs at Point | |
28448 | 2094 @findex ffap |
2095 @findex find-file-at-point | |
2096 @findex ffap | |
30856 | 2097 @findex ffap-dired-at-point |
2098 @findex ffap-next | |
2099 @findex ffap-menu | |
28448 | 2100 @cindex FFAP |
30856 | 2101 @cindex URLs |
2102 @cindex finding file at point | |
2103 | |
2104 @table @kbd | |
2105 @item M-x ffap @key{RET} @var{filename} @key{RET} | |
2106 Find @var{filename}, guessing a default from text around point. | |
2107 @item M-x ffap-next | |
2108 Search buffer for next file or URL, and run `ffap'. With single prefix | |
2109 arg, search backwards, with double arg wrap search forwards, with triple | |
2110 arg wrap search backwards. | |
2111 @item M-x ffap-menu | |
2112 Put up a menu of files and URLs mentioned in current buffer and try to | |
2113 fetch the selected one. | |
2114 @item M-x ffap-dired-at-point | |
2115 Start Dired, defaulting to file at point. | |
2116 @end table | |
2117 | |
2118 The command @kbd{M-x find-file-at-point} (or @kbd{M-x ffap}) can be used | |
2119 as a replacement for @kbd{M-x find-file}. With a prefix argument it | |
2120 behaves as @kbd{M-x find-file}. Otherwise it tries to guess a default | |
2121 file or URL from the text around point. In the case of a URL, it will | |
2122 invoke @code{browse-url} rather than finding a file. This is useful for | |
2123 following references in mail or news buffers, @file{README}s, | |
2124 @file{MANIFEST}s, and so on. The @samp{ffap} package's | |
2125 commentary available via @kbd{C-h p} and the @code{ffap} Custom group | |
2126 provide details. | |
28448 | 2127 |
30856 | 2128 @cindex FFAP minor mode |
2129 @findex ffap-mode | |
2130 You can turn on FFAP minor mode to make the following key bindings and | |
2131 to install hooks for using @code{ffap} in Rmail, Gnus and VM article | |
2132 buffers. | |
2133 | |
2134 @table @kbd | |
2135 @item C-x C-f | |
2136 @kindex C-x C-f @r{(FFAP)} | |
2137 @kbd{find-file-at-point}; | |
2138 @item C-x 4 f | |
2139 @kindex C-x 4 f @r{(FFAP)} | |
2140 @code{ffap-other-window}, analagous to @kbd{M-x find-file-other-window}; | |
2141 @item C-x 5 f | |
2142 @kindex C-x 5 f @r{(FFAP)} | |
2143 @code{ffap-other-frame}, analagous to @kbd{M-x find-file-other-frame}; | |
2144 @item C-x d | |
2145 @kindex C-x d @r{(FFAP)} | |
2146 @code{ffap-dired-at-point}, analogous to @kbd{M-x dired}; | |
2147 @item S-mouse-3 | |
2148 @kindex S-mouse-3 @r{(FFAP)} | |
2149 @code{ffap-at-mouse} finds the file guessed from text around the position | |
2150 of a mouse click; | |
2151 @item C-S-mouse-3 | |
2152 @kindex C-S-mouse-3 @r{(FFAP)} | |
2153 @code{ffap-menu} puts up a selectable menu of files and URLs mentioned in | |
2154 the current buffer. | |
2155 @end table | |
2156 | |
2157 @node Find-func | |
2158 @subsection Finding Function and Variable Definitions | |
28448 | 2159 @findex find-function |
2160 @findex find-function-on-key | |
2161 @findex find-variable | |
2162 @cindex examples of Lisp functions | |
2163 @cindex Lisp examples | |
2164 @cindex Find-func | |
2165 @cindex Lisp definitions | |
2166 @cindex definitions, locating in sources | |
2167 @cindex tags | |
30856 | 2168 |
2169 @table @kbd | |
2170 @item M-x find-function @key{RET} @var{function} @key{RET} | |
2171 Find the definition of the @var{function} at point. | |
2172 @item M-x find-variable @key{RET} @var{variable} @key{RET} | |
2173 Find the definition of the @var{variable} at point. | |
2174 @item M-x find-function-on-key @var{key} | |
2175 Find the definition of the function that @var{key} invokes. | |
2176 @end table | |
2177 | |
28448 | 2178 The Find-func package provides convenient facilities for finding the |
2179 definitions of Emacs Lisp functions and variables. It has a somewhat | |
2180 similar function to the Tags facility (@pxref{Tags}) but uses Emacs's | |
2181 introspective facilities which maintain information about loaded | |
2182 libraries. In contrast to Tags, it only works for functions and | |
2183 variables with definitions which are already loaded but it relates to | |
2184 the code actually running and doesn't require maintaining tags files. | |
2185 | |
2186 You need to have the Lisp source (@samp{.el}) files available on your | |
2187 load path along with the compiled (@samp{.elc}) versions for this to | |
30856 | 2188 work. You can use compressed source files if you turn on |
2189 @code{auto-compression-mode}. | |
28448 | 2190 |
2191 The commands available include @kbd{M-x find-function} to find the | |
2192 definition of a named function, @kbd{find-function-on-key} to find the | |
2193 definition of the function bound to a key and @kbd{find-variable} to | |
2194 find a variable's definition. These only work for things defined in | |
2195 Lisp source files, not primitive functions or variables defined | |
2196 primitively in the Emacs layer implemented in C. | |
2197 | |
2198 Find-func is useful for finding examples of how to do things if you want | |
2199 to write an Emacs Lisp extension similar to some existing function. | |
2200 | |
2201 @node Dissociated Press, Amusements, Hyperlinking, Top | |
25829 | 2202 @section Dissociated Press |
2203 | |
2204 @findex dissociated-press | |
2205 @kbd{M-x dissociated-press} is a command for scrambling a file of text | |
2206 either word by word or character by character. Starting from a buffer of | |
2207 straight English, it produces extremely amusing output. The input comes | |
2208 from the current Emacs buffer. Dissociated Press writes its output in a | |
2209 buffer named @samp{*Dissociation*}, and redisplays that buffer after every | |
2210 couple of lines (approximately) so you can read the output as it comes out. | |
2211 | |
2212 Dissociated Press asks every so often whether to continue generating | |
2213 output. Answer @kbd{n} to stop it. You can also stop at any time by | |
2214 typing @kbd{C-g}. The dissociation output remains in the | |
2215 @samp{*Dissociation*} buffer for you to copy elsewhere if you wish. | |
2216 | |
2217 @cindex presidentagon | |
2218 Dissociated Press operates by jumping at random from one point in the | |
2219 buffer to another. In order to produce plausible output rather than | |
2220 gibberish, it insists on a certain amount of overlap between the end of | |
2221 one run of consecutive words or characters and the start of the next. | |
2222 That is, if it has just printed out `president' and then decides to jump | |
2223 to a different point in the file, it might spot the `ent' in `pentagon' | |
2224 and continue from there, producing `presidentagon'.@footnote{This | |
2225 dissociword actually appeared during the Vietnam War, when it was very | |
2226 appropriate.} Long sample texts produce the best results. | |
2227 | |
2228 @cindex againformation | |
2229 A positive argument to @kbd{M-x dissociated-press} tells it to operate | |
2230 character by character, and specifies the number of overlap characters. A | |
2231 negative argument tells it to operate word by word and specifies the number | |
2232 of overlap words. In this mode, whole words are treated as the elements to | |
2233 be permuted, rather than characters. No argument is equivalent to an | |
2234 argument of two. For your againformation, the output goes only into the | |
2235 buffer @samp{*Dissociation*}. The buffer you start with is not changed. | |
2236 | |
2237 @cindex Markov chain | |
2238 @cindex ignoriginal | |
2239 @cindex techniquitous | |
2240 Dissociated Press produces nearly the same results as a Markov chain | |
2241 based on a frequency table constructed from the sample text. It is, | |
2242 however, an independent, ignoriginal invention. Dissociated Press | |
2243 techniquitously copies several consecutive characters from the sample | |
2244 between random choices, whereas a Markov chain would choose randomly for | |
2245 each word or character. This makes for more plausible sounding results, | |
2246 and runs faster. | |
2247 | |
2248 @cindex outragedy | |
2249 @cindex buggestion | |
2250 @cindex properbose | |
2251 @cindex mustatement | |
2252 @cindex developediment | |
2253 @cindex userenced | |
2254 It is a mustatement that too much use of Dissociated Press can be a | |
2255 developediment to your real work. Sometimes to the point of outragedy. | |
2256 And keep dissociwords out of your documentation, if you want it to be well | |
2257 userenced and properbose. Have fun. Your buggestions are welcome. | |
2258 | |
2259 @node Amusements, Customization, Dissociated Press, Top | |
2260 @section Other Amusements | |
2261 @cindex boredom | |
2262 @findex hanoi | |
2263 @findex yow | |
2264 @findex gomoku | |
2265 @cindex tower of Hanoi | |
2266 | |
2267 If you are a little bit bored, you can try @kbd{M-x hanoi}. If you are | |
2268 considerably bored, give it a numeric argument. If you are very very | |
2269 bored, try an argument of 9. Sit back and watch. | |
2270 | |
2271 @cindex Go Moku | |
2272 If you want a little more personal involvement, try @kbd{M-x gomoku}, | |
2273 which plays the game Go Moku with you. | |
2274 | |
2275 @findex blackbox | |
2276 @findex mpuz | |
27210 | 2277 @findex 5x5 |
25829 | 2278 @cindex puzzles |
27210 | 2279 @kbd{M-x blackbox}, @kbd{M-x mpuz} and @kbd{M-x 5x5} are kinds of puzzles. |
25829 | 2280 @code{blackbox} challenges you to determine the location of objects |
2281 inside a box by tomography. @code{mpuz} displays a multiplication | |
2282 puzzle with letters standing for digits in a code that you must | |
2283 guess---to guess a value, type a letter and then the digit you think it | |
27210 | 2284 stands for. The aim of @code{5x5} is to fill in all the squares. |
25829 | 2285 |
30856 | 2286 @findex decipher |
2287 @cindex ciphers | |
2288 @cindex cryptanalysis | |
2289 @kbd{M-x decipher} helps you to cryptanalyze a buffer which is encrypted | |
2290 in a simple monoalphabetic substitution cipher. | |
2291 | |
25829 | 2292 @findex dunnet |
2293 @kbd{M-x dunnet} runs an adventure-style exploration game, which is | |
2294 a bigger sort of puzzle. | |
2295 | |
27210 | 2296 @findex lm |
2297 @cindex landmark game | |
2298 @kbd{M-x lm} runs a relatively non-participatory game in which a robot | |
2299 attempts to maneuver towards a tree at the center of the window based on | |
2300 unique olfactory cues from each of the four directions. | |
2301 | |
2302 @findex life | |
2303 @cindex Life | |
2304 @kbd{M-x life} runs Conway's `Life' cellular automaton. | |
2305 | |
30856 | 2306 @findex morse-region |
2307 @findex unmorse-region | |
2308 @cindex Morse code | |
2309 @cindex --/---/.-./.../. | |
2310 @kbd{M-x morse-region} converts text in a region to Morse code and | |
2311 @kbd{M-x unmorse-region} converts it back. No cause for remorse. | |
2312 | |
2313 @findex pong | |
2314 @cindex Pong game | |
2315 @kbd{M-x pong} plays an implementation of the game Pong, bouncing the | |
2316 ball off opposing bats. | |
2317 | |
27210 | 2318 @findex solitaire |
2319 @cindex solitaire | |
2320 @kbd{M-x solitaire} plays a game of solitaire in which you jump pegs | |
2321 across other pegs. | |
2322 | |
30856 | 2323 @findex studlify-region |
2324 @cindex StudlyCaps | |
2325 @kbd{M-x studlify-region} studlify-cases the region, that is | |
2326 | |
2327 @example | |
2328 M-x stUdlIfY-RegioN stUdlIfY-CaSeS thE region. | |
2329 @end example | |
2330 | |
27210 | 2331 @findex tetris |
2332 @cindex Tetris | |
2333 @kbd{M-x tetris} runs an implementation of the well-known Tetris game. | |
2334 @findex snake | |
2335 @cindex Snake | |
2336 Likewise, @kbd{M-x snake} provides an implementation of Snake. | |
2337 | |
25829 | 2338 When you are frustrated, try the famous Eliza program. Just do |
2339 @kbd{M-x doctor}. End each input by typing @key{RET} twice. | |
2340 | |
2341 @cindex Zippy | |
2342 When you are feeling strange, type @kbd{M-x yow}. | |
30862 | 2343 |
2344 @findex zone | |
2345 The command @kbd{M-x zone} plays games with the display when Emacs is | |
2346 idle. |