(line-move-visual): Handle null pixel position gracefully.
[bpt/emacs.git] / lisp / term.el
1 ;;; term.el --- general command interpreter in a window stuff
2
3 ;; Copyright (C) 1988, 1990, 1992, 1994, 1995, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6 ;; Author: Per Bothner <per@bothner.com>
7 ;; Maintainer: Dan Nicolaescu <dann@ics.uci.edu>, Per Bothner <per@bothner.com>
8 ;; Based on comint mode written by: Olin Shivers <shivers@cs.cmu.edu>
9 ;; Keywords: processes
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Marck 13 2001
27 ;;; Fixes for CJK support by Yong Lu <lyongu@yahoo.com>.
28
29 ;;; Dir/Hostname tracking and ANSI colorization by
30 ;;; Marco Melgazzi <marco@techie.com>.
31
32 ;;; To see what I've modified and where it came from search for '-mm'
33
34 ;;; Commentary:
35
36 ;;; Speed considerations and a few caveats
37 ;;; --------------------------------------
38 ;;;
39 ;;; While the message passing and the colorization surely introduce some
40 ;;; overhead this has became so small that IMHO is surely outweighted by
41 ;;; the benefits you get but, as usual, YMMV
42 ;;;
43 ;;; Important caveat, when deciding the cursor/'grey keys' keycodes I had to
44 ;;; make a choice: on my Linux box this choice allows me to run all the
45 ;;; ncurses applications without problems but make these keys
46 ;;; uncomprehensible to all the cursesX programs. Your mileage may vary so
47 ;;; you may consider changing the default 'emulation'. Just search for this
48 ;;; piece of code and modify it as you like:
49 ;;;
50 ;;; ;; Which would be better: "\e[A" or "\eOA"? readline accepts either.
51 ;;; ;; For my configuration it's definitely better \eOA but YMMV. -mm
52 ;;; ;; For example: vi works with \eOA while elm wants \e[A ...
53 ;;; (defun term-send-up () (interactive) (term-send-raw-string "\eOA"))
54 ;;; (defun term-send-down () (interactive) (term-send-raw-string "\eOB"))
55 ;;; (defun term-send-right () (interactive) (term-send-raw-string "\eOC"))
56 ;;; (defun term-send-left () (interactive) (term-send-raw-string "\eOD"))
57 ;;;
58 ;;;
59 ;;; IMPORTANT: additions & changes
60 ;;; ------------------------------
61 ;;;
62 ;;; With this enhanced ansi-term.el you will get a reliable mechanism of
63 ;;; directory/username/host tracking: the only drawback is that you will
64 ;;; have to modify your shell start-up script. It's worth it, believe me :).
65 ;;;
66 ;;; When you rlogin/su/telnet and the account you access has a modified
67 ;;; startup script, you will be able to access the remote files as usual
68 ;;; with C-x C-f, if it's needed you will have to enter a password,
69 ;;; otherwise the file should get loaded straight away.
70 ;;;
71 ;;; This is useful even if you work only on one host: it often happens that,
72 ;;; for maintenance reasons, you have to edit files 'as root': before
73 ;;; patching term.el, I su-ed in a term.el buffer and used vi :), now I
74 ;;; simply do a C-x C-f and, via ange-ftp, the file is automatically loaded
75 ;;; 'as-root'. ( If you don't want to enter the root password every time you
76 ;;; can put it in your .netrc: note that this is -not- advisable if you're
77 ;;; connected to the internet or if somebody else works on your workstation!)
78 ;;;
79 ;;; If you use wu-ftpd you can use some of its features to avoid root ftp
80 ;;; access to the rest of the world: just put in /etc/ftphosts something like
81 ;;;
82 ;;; # Local access
83 ;;; allow root 127.0.0.1
84 ;;;
85 ;;; # By default nobody can't do anything
86 ;;; deny root *
87 ;;;
88 ;;;
89 ;;; ----------------------------------------
90 ;;;
91 ;;; If, instead of 'term', you call 'ansi-term', you get multiple term
92 ;;; buffers, after every new call ansi-term opens a new *ansi-term*<xx> window,
93 ;;; where <xx> is, as usual, a number...
94 ;;;
95 ;;; ----------------------------------------
96 ;;;
97 ;;; With the term-buffer-maximum-size you can finally decide how many
98 ;;; scrollback lines to keep: its default is 2048 but you can change it as
99 ;;; usual.
100 ;;;
101 ;;; ----------------------------------------
102 ;;;
103 ;;;
104 ;;; ANSI colorization should work well, I've decided to limit the interpreter
105 ;;; to five outstanding commands (like ESC [ 01;04;32;41;07m.
106 ;;; You shouldn't need more, if you do, tell me and I'll increase it. It's
107 ;;; so easy you could do it yourself...
108 ;;;
109 ;;; Blink, is not supported. Currently it's mapped as bold.
110 ;;;
111 ;;; Important caveat:
112 ;;; -----------------
113 ;;; if you want custom colors in term.el redefine term-default-fg-color
114 ;;; and term-default-bg-color BEFORE loading it.
115 ;;;
116 ;;; ----------------------------------------
117 ;;;
118 ;;; If you'd like to check out my complete configuration, you can download
119 ;;; it from http://www.polito.it/~s64912/things.html, it's ~500k in size and
120 ;;; contains my .cshrc, .emacs and my whole site-lisp subdirectory. (notice
121 ;;; that this term.el may be newer/older than the one in there, please
122 ;;; check!)
123 ;;;
124 ;;; This complete configuration contains, among other things, a complete
125 ;;; rectangular marking solution (based on rect-mark.el and
126 ;;; pc-bindings.el) and should be a good example of how extensively Emacs
127 ;;; can be configured on a ppp-connected ws.
128 ;;;
129 ;;; ----------------------------------------
130 ;;;
131 ;;; TODO:
132 ;;;
133 ;;; - Add hooks to allow raw-mode keys to be configurable
134 ;;; - Which keys are better ? \eOA or \e[A ?
135 ;;;
136 ;;;
137 ;;; Changes:
138 ;;;
139 ;;; V4.0 January 1997
140 ;;;
141 ;;; - Huge reworking of the faces code: now we only have roughly 20-30
142 ;;; faces for everything so we're even faster than the old md-term.el !
143 ;;; - Finished removing all the J-Shell code.
144 ;;;
145 ;;; V3.0 January 1997
146 ;;;
147 ;;; - Now all the supportable ANSI commands work well.
148 ;;; - Reworked a little the code: much less jsh-inspired stuff
149 ;;;
150 ;;; V2.3 November
151 ;;;
152 ;;; - Now all the faces are accessed through an array: much cleaner code.
153 ;;;
154 ;;; V2.2 November 4 1996
155 ;;;
156 ;;; - Implemented ANSI output colorization ( a bit rough but enough for
157 ;;; color_ls )
158 ;;;
159 ;;; - Implemented a maximum limit for the scroll buffer (stolen from
160 ;;; comint.el)
161 ;;;
162 ;;; v2.1 October 28 1996, first public release
163 ;;;
164 ;;; - Some new keybindings for term-char mode ( notably home/end/...)
165 ;;; - Directory, hostname and username tracking via ange-ftp
166 ;;; - Multi-term capability via the ansi-term call
167 ;;;
168 ;;; ----------------------------------------------------------------
169 ;;; You should/could have something like this in your .emacs to take
170 ;;; full advantage of this package
171 ;;;
172 ;;; (add-hook 'term-mode-hook
173 ;;; (function
174 ;;; (lambda ()
175 ;;; (setq term-prompt-regexp "^[^#$%>\n]*[#$%>] *")
176 ;;; (make-local-variable 'mouse-yank-at-point)
177 ;;; (make-local-variable 'transient-mark-mode)
178 ;;; (setq mouse-yank-at-point t)
179 ;;; (setq transient-mark-mode nil)
180 ;;; (auto-fill-mode -1)
181 ;;; (setq tab-width 8 ))))
182 ;;;
183 ;;;
184 ;;; ----------------------------------------
185 ;;;
186 ;;; If you want to use color ls the best setup is to have a different file
187 ;;; when you use eterm ( see above, mine is named .emacs_dircolors ). This
188 ;;; is necessary because some terminals, rxvt for example, need non-ansi
189 ;;; hacks to work ( for example on my rxvt white is wired to fg, and to
190 ;;; obtain normal white I have to do bold-white :)
191 ;;;
192 ;;; ----------------------------------------
193 ;;;
194 ;;;
195 ;;; # Configuration file for the color ls utility
196 ;;; # This file goes in the /etc directory, and must be world readable.
197 ;;; # You can copy this file to .dir_colors in your $HOME directory to
198 ;;; # override the system defaults.
199 ;;;
200 ;;; # COLOR needs one of these arguments: 'tty' colorizes output to ttys, but
201 ;;; # not pipes. 'all' adds color characters to all output. 'none' shuts
202 ;;; # colorization off.
203 ;;; COLOR tty
204 ;;; OPTIONS -F
205 ;;;
206 ;;; # Below, there should be one TERM entry for each termtype that is
207 ;;; # colorizable
208 ;;; TERM eterm
209 ;;;
210 ;;; # EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output)
211 ;;; EIGHTBIT 1
212 ;;;
213 ;;; # Below are the color init strings for the basic file types. A color init
214 ;;; # string consists of one or more of the following numeric codes:
215 ;;; # Attribute codes:
216 ;;; # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
217 ;;; # Text color codes:
218 ;;; # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
219 ;;; # Background color codes:
220 ;;; # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
221 ;;; NORMAL 00 # global default, although everything should be something.
222 ;;; FILE 00 # normal file
223 ;;; DIR 00;37 # directory
224 ;;; LINK 00;36 # symbolic link
225 ;;; FIFO 00;37 # pipe
226 ;;; SOCK 40;35 # socket
227 ;;; BLK 33;01 # block device driver
228 ;;; CHR 33;01 # character device driver
229 ;;;
230 ;;; # This is for files with execute permission:
231 ;;; EXEC 00;32
232 ;;;
233 ;;; # List any file extensions like '.gz' or '.tar' that you would like ls
234 ;;; # to colorize below. Put the extension, a space, and the color init
235 ;;; # string. (and any comments you want to add after a '#')
236 ;;; .tar 01;33 # archives or compressed
237 ;;; .tgz 01;33
238 ;;; .arj 01;33
239 ;;; .taz 01;33
240 ;;; .lzh 01;33
241 ;;; .zip 01;33
242 ;;; .z 01;33
243 ;;; .Z 01;33
244 ;;; .gz 01;33
245 ;;; .jpg 01;35 # image formats
246 ;;; .gif 01;35
247 ;;; .bmp 01;35
248 ;;; .xbm 01;35
249 ;;; .xpm 01;35
250 ;;;
251 ;;;
252 ;;; ----------------------------------------
253 ;;;
254 ;;; Notice: for directory/host/user tracking you need to have something
255 ;;; like this in your shell startup script ( this is for tcsh but should
256 ;;; be quite easy to port to other shells )
257 ;;;
258 ;;; ----------------------------------------
259 ;;;
260 ;;;
261 ;;; set os = `uname`
262 ;;; set host = `hostname`
263 ;;; set date = `date`
264 ;;;
265 ;;; # su does not change this but I'd like it to
266 ;;;
267 ;;; set user = `whoami`
268 ;;;
269 ;;; # ...
270 ;;;
271 ;;; if ( eterm =~ $TERM ) then
272 ;;;
273 ;;; echo --------------------------------------------------------------
274 ;;; echo Hello $user
275 ;;; echo Today is $date
276 ;;; echo We are on $host running $os under Emacs term mode
277 ;;; echo --------------------------------------------------------------
278 ;;;
279 ;;; setenv EDITOR emacsclient
280 ;;;
281 ;;; # Notice: $host and $user have been set before to 'hostname' and 'whoami'
282 ;;; # this is necessary because, f.e., certain versions of 'su' do not change
283 ;;; # $user, YMMV: if you don't want to fiddle with them define a couple
284 ;;; # of new variables and use these instead.
285 ;;; # NOTICE that there is a space between "AnSiT?" and $whatever NOTICE
286 ;;;
287 ;;; # These are because we want the real cwd in the messages, not the login
288 ;;; # time one !
289 ;;;
290 ;;; set cwd_hack='$cwd'
291 ;;; set host_hack='$host'
292 ;;; set user_hack='$user'
293 ;;;
294 ;;; # Notice that the ^[ character is an ESC, not two chars. You can
295 ;;; # get it in various ways, for example by typing
296 ;;; # echo -e '\033' > escape.file
297 ;;; # or by using your favourite editor
298 ;;;
299 ;;; foreach temp (cd pushd)
300 ;;; alias $temp "$temp \!* ; echo '\eAnSiTc' $cwd_hack"
301 ;;; end
302 ;;; alias popd 'popd ;echo "\eAnSiTc" $cwd'
303 ;;;
304 ;;; # Every command that can modify the user/host/directory should be aliased
305 ;;; # as follows for the tracking mechanism to work.
306 ;;;
307 ;;; foreach temp ( rlogin telnet rsh sh ksh csh tcsh zsh bash tcl su )
308 ;;; alias $temp "$temp \!* ; echo '\eAnSiTh' $host_hack ; \
309 ;;; echo '\eAnSiTu' $user_hack ;echo '\eAnSiTc' $cwd_hack"
310 ;;; end
311 ;;;
312 ;;; # Start up & use color ls
313 ;;;
314 ;;; echo "\eAnSiTh" $host
315 ;;; echo "\eAnSiTu" $user
316 ;;; echo "\eAnSiTc" $cwd
317 ;;;
318 ;;; # some housekeeping
319 ;;;
320 ;;; unset cwd_hack
321 ;;; unset host_hack
322 ;;; unset user_hack
323 ;;; unset temp
324 ;;;
325 ;;; eval `/bin/dircolors /home/marco/.emacs_dircolors`
326 ;;; endif
327 ;;;
328 ;;; # ...
329 ;;;
330 ;;; # Let's not clutter user space
331 ;;;
332 ;;; unset os
333 ;;; unset date
334 ;;;
335 ;;;
336
337 ;;; Original Commentary:
338 ;;; --------------------
339
340 ;; The changelog is at the end of this file.
341
342 ;; Please send me bug reports, bug fixes, and extensions, so that I can
343 ;; merge them into the master source.
344 ;; - Per Bothner (bothner@cygnus.com)
345
346 ;; This file defines a general command-interpreter-in-a-buffer package
347 ;; (term mode). The idea is that you can build specific process-in-a-buffer
348 ;; modes on top of term mode -- e.g., lisp, shell, scheme, T, soar, ....
349 ;; This way, all these specific packages share a common base functionality,
350 ;; and a common set of bindings, which makes them easier to use (and
351 ;; saves code, implementation time, etc., etc.).
352
353 ;; For hints on converting existing process modes (e.g., tex-mode,
354 ;; background, dbx, gdb, kermit, prolog, telnet) to use term-mode
355 ;; instead of shell-mode, see the notes at the end of this file.
356
357 \f
358 ;; Brief Command Documentation:
359 ;;============================================================================
360 ;; Term Mode Commands: (common to all derived modes, like cmushell & cmulisp
361 ;; mode)
362 ;;
363 ;; m-p term-previous-input Cycle backwards in input history
364 ;; m-n term-next-input Cycle forwards
365 ;; m-r term-previous-matching-input Previous input matching a regexp
366 ;; m-s comint-next-matching-input Next input that matches
367 ;; return term-send-input
368 ;; c-c c-a term-bol Beginning of line; skip prompt.
369 ;; c-d term-delchar-or-maybe-eof Delete char unless at end of buff.
370 ;; c-c c-u term-kill-input ^u
371 ;; c-c c-w backward-kill-word ^w
372 ;; c-c c-c term-interrupt-subjob ^c
373 ;; c-c c-z term-stop-subjob ^z
374 ;; c-c c-\ term-quit-subjob ^\
375 ;; c-c c-o term-kill-output Delete last batch of process output
376 ;; c-c c-r term-show-output Show last batch of process output
377 ;; c-c c-h term-dynamic-list-input-ring List input history
378 ;;
379 ;; Not bound by default in term-mode
380 ;; term-send-invisible Read a line w/o echo, and send to proc
381 ;; (These are bound in shell-mode)
382 ;; term-dynamic-complete Complete filename at point.
383 ;; term-dynamic-list-completions List completions in help buffer.
384 ;; term-replace-by-expanded-filename Expand and complete filename at point;
385 ;; replace with expanded/completed name.
386 ;; term-kill-subjob No mercy.
387 ;; term-show-maximum-output Show as much output as possible.
388 ;; term-continue-subjob Send CONT signal to buffer's process
389 ;; group. Useful if you accidentally
390 ;; suspend your process (with C-c C-z).
391
392 ;; term-mode-hook is the term mode hook. Basically for your keybindings.
393 ;; term-load-hook is run after loading in this package.
394
395 ;;; Code:
396
397 ;; This is passed to the inferior in the EMACS environment variable,
398 ;; so it is important to increase it if there are protocol-relevant changes.
399 (defconst term-protocol-version "0.96")
400
401 (eval-when-compile
402 (require 'ange-ftp))
403 (require 'ring)
404 (require 'ehelp)
405
406 (defgroup term nil
407 "General command interpreter in a window."
408 :group 'processes)
409
410 \f
411 ;;; Buffer Local Variables:
412 ;;;============================================================================
413 ;;; Term mode buffer local variables:
414 ;;; term-prompt-regexp - string term-bol uses to match prompt.
415 ;;; term-delimiter-argument-list - list For delimiters and arguments
416 ;;; term-last-input-start - marker Handy if inferior always echoes
417 ;;; term-last-input-end - marker For term-kill-output command
418 ;; For the input history mechanism:
419 (defvar term-input-ring-size 32 "Size of input history ring.")
420 ;;; term-input-ring-size - integer
421 ;;; term-input-ring - ring
422 ;;; term-input-ring-index - number ...
423 ;;; term-input-autoexpand - symbol ...
424 ;;; term-input-ignoredups - boolean ...
425 ;;; term-last-input-match - string ...
426 ;;; term-dynamic-complete-functions - hook For the completion mechanism
427 ;;; term-completion-fignore - list ...
428 ;;; term-get-old-input - function Hooks for specific
429 ;;; term-input-filter-functions - hook process-in-a-buffer
430 ;;; term-input-filter - function modes.
431 ;;; term-input-send - function
432 ;;; term-scroll-to-bottom-on-output - symbol ...
433 ;;; term-scroll-show-maximum-output - boolean...
434 (defvar term-height) ;; Number of lines in window.
435 (defvar term-width) ;; Number of columns in window.
436 (defvar term-home-marker) ;; Marks the "home" position for cursor addressing.
437 (defvar term-saved-home-marker nil) ;; When using alternate sub-buffer,
438 ;; contains saved term-home-marker from original sub-buffer .
439 (defvar term-start-line-column 0) ;; (current-column) at start of screen line,
440 ;; or nil if unknown.
441 (defvar term-current-column 0) ;; If non-nil, is cache for (current-column).
442 (defvar term-current-row 0) ;; Current vertical row (relative to home-marker)
443 ;; or nil if unknown.
444 (defvar term-insert-mode nil)
445 (defvar term-vertical-motion)
446 (defvar term-terminal-state 0) ;; State of the terminal emulator:
447 ;; state 0: Normal state
448 ;; state 1: Last character was a graphic in the last column.
449 ;; If next char is graphic, first move one column right
450 ;; (and line warp) before displaying it.
451 ;; This emulates (more or less) the behavior of xterm.
452 ;; state 2: seen ESC
453 ;; state 3: seen ESC [ (or ESC [ ?)
454 ;; state 4: term-terminal-parameter contains pending output.
455 (defvar term-kill-echo-list nil) ;; A queue of strings whose echo
456 ;; we want suppressed.
457 (defvar term-terminal-parameter)
458 (defvar term-terminal-previous-parameter)
459 (defvar term-current-face 'default)
460 (defvar term-scroll-start 0) ;; Top-most line (inclusive) of scrolling region.
461 (defvar term-scroll-end) ;; Number of line (zero-based) after scrolling region.
462 (defvar term-pager-count nil) ;; If nil, paging is disabled.
463 ;; Otherwise, number of lines before we need to page.
464 (defvar term-saved-cursor nil)
465 (defvar term-command-hook)
466 (defvar term-log-buffer nil)
467 (defvar term-scroll-with-delete nil) ;; term-scroll-with-delete is t if
468 ;; forward scrolling should be implemented by delete to
469 ;; top-most line(s); and nil if scrolling should be implemented
470 ;; by moving term-home-marker. It is set to t if there is a
471 ;; (non-default) scroll-region OR the alternate buffer is used.
472 (defvar term-pending-delete-marker) ;; New user input in line mode needs to
473 ;; be deleted, because it gets echoed by the inferior.
474 ;; To reduce flicker, we defer the delete until the next output.
475 (defvar term-old-mode-map nil) ;; Saves the old keymap when in char mode.
476 (defvar term-old-mode-line-format) ;; Saves old mode-line-format while paging.
477 (defvar term-pager-old-local-map nil) ;; Saves old keymap while paging.
478 (defvar term-pager-old-filter) ;; Saved process-filter while paging.
479
480 (defcustom explicit-shell-file-name nil
481 "*If non-nil, is file name to use for explicitly requested inferior shell."
482 :type '(choice (const nil) file)
483 :group 'term)
484
485 (defvar term-prompt-regexp "^"
486 "Regexp to recognize prompts in the inferior process.
487 Defaults to \"^\", the null string at BOL.
488
489 Good choices:
490 Canonical Lisp: \"^[^> \\n]*>+:? *\" (Lucid, franz, kcl, T, cscheme, oaklisp)
491 Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\"
492 franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\"
493 kcl: \"^>+ *\"
494 shell: \"^[^#$%>\\n]*[#$%>] *\"
495 T: \"^>+ *\"
496
497 This is a good thing to set in mode hooks.")
498
499 (defvar term-delimiter-argument-list ()
500 "List of characters to recognize as separate arguments in input.
501 Strings comprising a character in this list will separate the arguments
502 surrounding them, and also be regarded as arguments in their own right (unlike
503 whitespace). See `term-arguments'.
504 Defaults to the empty list.
505
506 For shells, a good value is (?\\| ?& ?< ?> ?\\( ?\\) ?\\;).
507
508 This is a good thing to set in mode hooks.")
509
510 (defcustom term-input-autoexpand nil
511 "*If non-nil, expand input command history references on completion.
512 This mirrors the optional behavior of tcsh (its autoexpand and histlit).
513
514 If the value is `input', then the expansion is seen on input.
515 If the value is `history', then the expansion is only when inserting
516 into the buffer's input ring. See also `term-magic-space' and
517 `term-dynamic-complete'.
518
519 This variable is buffer-local."
520 :type '(choice (const nil) (const t) (const input) (const history))
521 :group 'term)
522
523 (defcustom term-input-ignoredups nil
524 "*If non-nil, don't add input matching the last on the input ring.
525 This mirrors the optional behavior of bash.
526
527 This variable is buffer-local."
528 :type 'boolean
529 :group 'term)
530
531 (defcustom term-input-ring-file-name nil
532 "*If non-nil, name of the file to read/write input history.
533 See also `term-read-input-ring' and `term-write-input-ring'.
534
535 This variable is buffer-local, and is a good thing to set in mode hooks."
536 :type 'boolean
537 :group 'term)
538
539 (defcustom term-scroll-to-bottom-on-output nil
540 "*Controls whether interpreter output causes window to scroll.
541 If nil, then do not scroll. If t or `all', scroll all windows showing buffer.
542 If `this', scroll only the selected window.
543 If `others', scroll only those that are not the selected window.
544
545 The default is nil.
546
547 See variable `term-scroll-show-maximum-output'.
548 This variable is buffer-local."
549 :type 'boolean
550 :group 'term)
551
552 (defcustom term-scroll-show-maximum-output nil
553 "*Controls how interpreter output causes window to scroll.
554 If non-nil, then show the maximum output when the window is scrolled.
555
556 See variable `term-scroll-to-bottom-on-output'.
557 This variable is buffer-local."
558 :type 'boolean
559 :group 'term)
560
561 ;; Where gud-display-frame should put the debugging arrow. This is
562 ;; set by the marker-filter, which scans the debugger's output for
563 ;; indications of the current pc.
564 (defvar term-pending-frame nil)
565
566 ;;; Here are the per-interpreter hooks.
567 (defvar term-get-old-input (function term-get-old-input-default)
568 "Function that submits old text in term mode.
569 This function is called when return is typed while the point is in old text.
570 It returns the text to be submitted as process input. The default is
571 `term-get-old-input-default', which grabs the current line, and strips off
572 leading text matching `term-prompt-regexp'.")
573
574 (defvar term-dynamic-complete-functions
575 '(term-replace-by-expanded-history term-dynamic-complete-filename)
576 "List of functions called to perform completion.
577 Functions should return non-nil if completion was performed.
578 See also `term-dynamic-complete'.
579
580 This is a good thing to set in mode hooks.")
581
582 (defvar term-input-filter
583 (function (lambda (str) (not (string-match "\\`\\s *\\'" str))))
584 "Predicate for filtering additions to input history.
585 Only inputs answering true to this function are saved on the input
586 history list. Default is to save anything that isn't all whitespace.")
587
588 (defvar term-input-filter-functions '()
589 "Functions to call before input is sent to the process.
590 These functions get one argument, a string containing the text to send.
591
592 This variable is buffer-local.")
593
594 (defvar term-input-sender (function term-simple-send)
595 "Function to actually send to PROCESS the STRING submitted by user.
596 Usually this is just `term-simple-send', but if your mode needs to
597 massage the input string, this is your hook. This is called from
598 the user command `term-send-input'. `term-simple-send' just sends
599 the string plus a newline.")
600
601 (defcustom term-eol-on-send t
602 "*Non-nil means go to the end of the line before sending input.
603 See `term-send-input'."
604 :type 'boolean
605 :group 'term)
606
607 (defcustom term-mode-hook '()
608 "Called upon entry into term mode.
609 This is run before the process is cranked up."
610 :type 'hook
611 :group 'term)
612
613 (defcustom term-exec-hook '()
614 "Called each time a process is exec'd by `term-exec'.
615 This is called after the process is cranked up. It is useful for things that
616 must be done each time a process is executed in a term mode buffer (e.g.,
617 `process-kill-without-query'). In contrast, `term-mode-hook' is only
618 executed once when the buffer is created."
619 :type 'hook
620 :group 'term)
621
622 (defvar term-mode-map
623 (let ((map (make-sparse-keymap)))
624 (define-key map "\ep" 'term-previous-input)
625 (define-key map "\en" 'term-next-input)
626 (define-key map "\er" 'term-previous-matching-input)
627 (define-key map "\es" 'term-next-matching-input)
628 (unless (featurep 'xemacs)
629 (define-key map [?\A-\M-r]
630 'term-previous-matching-input-from-input)
631 (define-key map [?\A-\M-s] 'term-next-matching-input-from-input))
632 (define-key map "\e\C-l" 'term-show-output)
633 (define-key map "\C-m" 'term-send-input)
634 (define-key map "\C-d" 'term-delchar-or-maybe-eof)
635 (define-key map "\C-c\C-a" 'term-bol)
636 (define-key map "\C-c\C-u" 'term-kill-input)
637 (define-key map "\C-c\C-w" 'backward-kill-word)
638 (define-key map "\C-c\C-c" 'term-interrupt-subjob)
639 (define-key map "\C-c\C-z" 'term-stop-subjob)
640 (define-key map "\C-c\C-\\" 'term-quit-subjob)
641 (define-key map "\C-c\C-m" 'term-copy-old-input)
642 (define-key map "\C-c\C-o" 'term-kill-output)
643 (define-key map "\C-c\C-r" 'term-show-output)
644 (define-key map "\C-c\C-e" 'term-show-maximum-output)
645 (define-key map "\C-c\C-l" 'term-dynamic-list-input-ring)
646 (define-key map "\C-c\C-n" 'term-next-prompt)
647 (define-key map "\C-c\C-p" 'term-previous-prompt)
648 (define-key map "\C-c\C-d" 'term-send-eof)
649 (define-key map "\C-c\C-k" 'term-char-mode)
650 (define-key map "\C-c\C-j" 'term-line-mode)
651 (define-key map "\C-c\C-q" 'term-pager-toggle)
652
653 ;; ;; completion:
654 ;; (define-key map [menu-bar completion]
655 ;; (cons "Complete" (make-sparse-keymap "Complete")))
656 ;; (define-key map [menu-bar completion complete-expand]
657 ;; '("Expand File Name" . term-replace-by-expanded-filename))
658 ;; (define-key map [menu-bar completion complete-listing]
659 ;; '("File Completion Listing" . term-dynamic-list-filename-completions))
660 ;; (define-key map [menu-bar completion complete-file]
661 ;; '("Complete File Name" . term-dynamic-complete-filename))
662 ;; (define-key map [menu-bar completion complete]
663 ;; '("Complete Before Point" . term-dynamic-complete))
664 ;; ;; Put them in the menu bar:
665 ;; (setq menu-bar-final-items (append '(terminal completion inout signals)
666 ;; menu-bar-final-items))
667 map))
668
669 (defvar term-raw-map nil
670 "Keyboard map for sending characters directly to the inferior process.")
671 (defvar term-escape-char nil
672 "Escape character for char sub-mode of term mode.
673 Do not change it directly; use `term-set-escape-char' instead.")
674 (defvar term-raw-escape-map nil)
675
676 (defvar term-pager-break-map nil)
677
678 (defvar term-ptyp t
679 "True if communications via pty; false if by pipe. Buffer local.
680 This is to work around a bug in Emacs process signaling.")
681
682 (defvar term-last-input-match ""
683 "Last string searched for by term input history search, for defaulting.
684 Buffer local variable.")
685
686 (defvar term-input-ring nil)
687 (defvar term-last-input-start)
688 (defvar term-last-input-end)
689 (defvar term-input-ring-index nil
690 "Index of last matched history element.")
691 (defvar term-matching-input-from-input-string ""
692 "Input previously used to match input history.")
693 ; This argument to set-process-filter disables reading from the process,
694 ; assuming this is Emacs 19.20 or newer.
695 (defvar term-pager-filter t)
696
697 (put 'term-replace-by-expanded-history 'menu-enable 'term-input-autoexpand)
698 (put 'term-input-ring 'permanent-local t)
699 (put 'term-input-ring-index 'permanent-local t)
700 (put 'term-input-autoexpand 'permanent-local t)
701 (put 'term-input-filter-functions 'permanent-local t)
702 (put 'term-scroll-to-bottom-on-output 'permanent-local t)
703 (put 'term-scroll-show-maximum-output 'permanent-local t)
704 (put 'term-ptyp 'permanent-local t)
705
706 (defmacro term-in-char-mode () '(eq (current-local-map) term-raw-map))
707 (defmacro term-in-line-mode () '(not (term-in-char-mode)))
708 ;; True if currently doing PAGER handling.
709 (defmacro term-pager-enabled () 'term-pager-count)
710 (defmacro term-handling-pager () 'term-pager-old-local-map)
711 (defmacro term-using-alternate-sub-buffer () 'term-saved-home-marker)
712
713 (defvar term-signals-menu)
714 (defvar term-terminal-menu)
715
716 ;;; Let's silence the byte-compiler -mm
717 (defvar term-ansi-at-host nil)
718 (defvar term-ansi-at-dir nil)
719 (defvar term-ansi-at-user nil)
720 (defvar term-ansi-at-message nil)
721 (defvar term-ansi-at-save-user nil)
722 (defvar term-ansi-at-save-pwd nil)
723 (defvar term-ansi-at-save-anon nil)
724 (defvar term-ansi-current-bold nil)
725 (defvar term-ansi-current-color 0)
726 (defvar term-ansi-face-already-done nil)
727 (defvar term-ansi-current-bg-color 0)
728 (defvar term-ansi-current-underline nil)
729 (defvar term-ansi-current-reverse nil)
730 (defvar term-ansi-current-invisible nil)
731
732 ;;; Four should be enough, if you want more, just add. -mm
733 (defvar term-terminal-more-parameters 0)
734 (defvar term-terminal-previous-parameter-2 -1)
735 (defvar term-terminal-previous-parameter-3 -1)
736 (defvar term-terminal-previous-parameter-4 -1)
737 ;;;
738
739 ;;; faces -mm
740
741 (defcustom term-default-fg-color (face-foreground term-current-face)
742 "Default color for foreground in `term'."
743 :group 'term
744 :type 'string)
745
746 (defcustom term-default-bg-color (face-background term-current-face)
747 "Default color for background in `term'."
748 :group 'term
749 :type 'string)
750
751 ;;; Use the same colors that xterm uses, see `xterm-standard-colors'.
752 (defvar ansi-term-color-vector
753 [unspecified "black" "red3" "green3" "yellow3" "blue2"
754 "magenta3" "cyan3" "white"])
755
756 ;;; Inspiration came from comint.el -mm
757 (defvar term-buffer-maximum-size 2048
758 "*The maximum size in lines for term buffers.
759 Term buffers are truncated from the top to be no greater than this number.
760 Notice that a setting of 0 means \"don't truncate anything\". This variable
761 is buffer-local.")
762 ;;;
763 \f
764 (when (featurep 'xemacs)
765 (defvar term-terminal-menu
766 '("Terminal"
767 [ "Character mode" term-char-mode (term-in-line-mode)]
768 [ "Line mode" term-line-mode (term-in-char-mode)]
769 [ "Enable paging" term-pager-toggle (not term-pager-count)]
770 [ "Disable paging" term-pager-toggle term-pager-count])))
771
772 ;; Menu bars:
773 (unless (featurep 'xemacs)
774 ;; terminal:
775 (let (newmap)
776 (setq newmap (make-sparse-keymap "Terminal"))
777 (define-key newmap [terminal-pager-enable]
778 '(menu-item "Enable paging" term-fake-pager-enable
779 :help "Enable paging feature"))
780 (define-key newmap [terminal-pager-disable]
781 '(menu-item "Disable paging" term-fake-pager-disable
782 :help "Disable paging feature"))
783 (define-key newmap [terminal-char-mode]
784 '(menu-item "Character mode" term-char-mode
785 :help "Switch to char (raw) sub-mode of term mode"))
786 (define-key newmap [terminal-line-mode]
787 '(menu-item "Line mode" term-line-mode
788 :help "Switch to line (cooked) sub-mode of term mode"))
789 (setq term-terminal-menu (cons "Terminal" newmap))
790
791 ;; completion: (line mode only)
792 (defvar term-completion-menu (make-sparse-keymap "Complete"))
793 (define-key term-mode-map [menu-bar completion]
794 (cons "Complete" term-completion-menu))
795 (define-key term-completion-menu [complete-expand]
796 '("Expand File Name" . term-replace-by-expanded-filename))
797 (define-key term-completion-menu [complete-listing]
798 '("File Completion Listing" . term-dynamic-list-filename-completions))
799 (define-key term-completion-menu [menu-bar completion complete-file]
800 '("Complete File Name" . term-dynamic-complete-filename))
801 (define-key term-completion-menu [menu-bar completion complete]
802 '("Complete Before Point" . term-dynamic-complete))
803
804 ;; Input history: (line mode only)
805 (defvar term-inout-menu (make-sparse-keymap "In/Out"))
806 (define-key term-mode-map [menu-bar inout]
807 (cons "In/Out" term-inout-menu))
808 (define-key term-inout-menu [kill-output]
809 '("Kill Current Output Group" . term-kill-output))
810 (define-key term-inout-menu [next-prompt]
811 '("Forward Output Group" . term-next-prompt))
812 (define-key term-inout-menu [previous-prompt]
813 '("Backward Output Group" . term-previous-prompt))
814 (define-key term-inout-menu [show-maximum-output]
815 '("Show Maximum Output" . term-show-maximum-output))
816 (define-key term-inout-menu [show-output]
817 '("Show Current Output Group" . term-show-output))
818 (define-key term-inout-menu [kill-input]
819 '("Kill Current Input" . term-kill-input))
820 (define-key term-inout-menu [copy-input]
821 '("Copy Old Input" . term-copy-old-input))
822 (define-key term-inout-menu [forward-matching-history]
823 '("Forward Matching Input..." . term-forward-matching-input))
824 (define-key term-inout-menu [backward-matching-history]
825 '("Backward Matching Input..." . term-backward-matching-input))
826 (define-key term-inout-menu [next-matching-history]
827 '("Next Matching Input..." . term-next-matching-input))
828 (define-key term-inout-menu [previous-matching-history]
829 '("Previous Matching Input..." . term-previous-matching-input))
830 (define-key term-inout-menu [next-matching-history-from-input]
831 '("Next Matching Current Input" . term-next-matching-input-from-input))
832 (define-key term-inout-menu [previous-matching-history-from-input]
833 '("Previous Matching Current Input" .
834 term-previous-matching-input-from-input))
835 (define-key term-inout-menu [next-history]
836 '("Next Input" . term-next-input))
837 (define-key term-inout-menu [previous-history]
838 '("Previous Input" . term-previous-input))
839 (define-key term-inout-menu [list-history]
840 '("List Input History" . term-dynamic-list-input-ring))
841 (define-key term-inout-menu [expand-history]
842 '("Expand History Before Point" . term-replace-by-expanded-history))
843
844 ;; Signals
845 (setq newmap (make-sparse-keymap "Signals"))
846 (define-key term-mode-map [menu-bar signals]
847 (setq term-signals-menu (cons "Signals" newmap)))
848 (define-key newmap [eof]
849 '(menu-item "EOF" term-send-eof
850 :help "Send an EOF to the current buffer's process"))
851 (define-key newmap [kill]
852 '(menu-item "KILL" term-kill-subjob
853 :help "Send kill signal to the current subjob"))
854 (define-key newmap [quit]
855 '(menu-item "QUIT" term-quit-subjob
856 :help "Send quit signal to the current subjob."))
857 (define-key newmap [cont]
858 '(menu-item "CONT" term-continue-subjob
859 :help "Send CONT signal to process buffer's process group"))
860 (define-key newmap [stop]
861 '(menu-item "STOP" term-stop-subjob
862 :help "Stop the current subjob"))
863 (define-key newmap [brk]
864 '(menu-item "BREAK" term-interrupt-subjob
865 :help "Interrupt the current subjob"))
866 ))
867 \f
868 ;; Set up term-raw-map, etc.
869
870 (defun term-set-escape-char (c)
871 "Change `term-escape-char' and keymaps that depend on it."
872 (when term-escape-char
873 (define-key term-raw-map term-escape-char 'term-send-raw))
874 (setq c (make-string 1 c))
875 (define-key term-raw-map c term-raw-escape-map)
876 ;; Define standard bindings in term-raw-escape-map
877 (define-key term-raw-escape-map "\C-v"
878 (lookup-key (current-global-map) "\C-v"))
879 (define-key term-raw-escape-map "\C-u"
880 (lookup-key (current-global-map) "\C-u"))
881 (define-key term-raw-escape-map c 'term-send-raw)
882 (define-key term-raw-escape-map "\C-q" 'term-pager-toggle)
883 ;; The keybinding for term-char-mode is needed by the menubar code.
884 (define-key term-raw-escape-map "\C-k" 'term-char-mode)
885 (define-key term-raw-escape-map "\C-j" 'term-line-mode)
886 ;; It's convenient to have execute-extended-command here.
887 (define-key term-raw-escape-map [?\M-x] 'execute-extended-command))
888
889 (let* ((map (make-keymap))
890 (esc-map (make-keymap))
891 (i 0))
892 (while (< i 128)
893 (define-key map (make-string 1 i) 'term-send-raw)
894 ;; Avoid O and [. They are used in escape sequences for various keys.
895 (unless (or (eq i ?O) (eq i 91))
896 (define-key esc-map (make-string 1 i) 'term-send-raw-meta))
897 (setq i (1+ i)))
898 (define-key map "\e" esc-map)
899 (setq term-raw-map map)
900 (setq term-raw-escape-map
901 (copy-keymap (lookup-key (current-global-map) "\C-x")))
902
903 ;;; Added nearly all the 'grey keys' -mm
904
905 (if (featurep 'xemacs)
906 (define-key term-raw-map [button2] 'term-mouse-paste)
907 (define-key term-raw-map [mouse-2] 'term-mouse-paste)
908 (define-key term-raw-map [menu-bar terminal] term-terminal-menu)
909 (define-key term-raw-map [menu-bar signals] term-signals-menu))
910 (define-key term-raw-map [up] 'term-send-up)
911 (define-key term-raw-map [down] 'term-send-down)
912 (define-key term-raw-map [right] 'term-send-right)
913 (define-key term-raw-map [left] 'term-send-left)
914 (define-key term-raw-map [delete] 'term-send-del)
915 (define-key term-raw-map [deletechar] 'term-send-del)
916 (define-key term-raw-map [backspace] 'term-send-backspace)
917 (define-key term-raw-map [home] 'term-send-home)
918 (define-key term-raw-map [end] 'term-send-end)
919 (define-key term-raw-map [insert] 'term-send-insert)
920 (define-key term-raw-map [S-prior] 'scroll-down)
921 (define-key term-raw-map [S-next] 'scroll-up)
922 (define-key term-raw-map [S-insert] 'term-paste)
923 (define-key term-raw-map [prior] 'term-send-prior)
924 (define-key term-raw-map [next] 'term-send-next))
925
926 (term-set-escape-char ?\C-c)
927
928 (defvar overflow-newline-into-fringe)
929
930 (defun term-window-width ()
931 (if (featurep 'xemacs)
932 (1- (window-width))
933 (if (and window-system overflow-newline-into-fringe)
934 (window-width)
935 (1- (window-width)))))
936
937 \f
938 (put 'term-mode 'mode-class 'special)
939
940
941 ;;; Use this variable as a display table for `term-mode'.
942 (defvar term-display-table
943 (let ((dt (or (copy-sequence standard-display-table)
944 (make-display-table)))
945 i)
946 ;; avoid changing the display table for ^J
947 (setq i 0)
948 (while (< i 10)
949 (aset dt i (vector i))
950 (setq i (1+ i)))
951 (setq i 11)
952 (while (< i 32)
953 (aset dt i (vector i))
954 (setq i (1+ i)))
955 (setq i 128)
956 (while (< i 256)
957 (aset dt i (vector i))
958 (setq i (1+ i)))
959 dt))
960
961 (defun term-mode ()
962 "Major mode for interacting with an inferior interpreter.
963 The interpreter name is same as buffer name, sans the asterisks.
964
965 There are two submodes: line mode and char mode. By default, you are
966 in char mode. In char sub-mode, each character (except
967 `term-escape-char') is sent immediately to the subprocess.
968 The escape character is equivalent to the usual meaning of C-x.
969
970 In line mode, you send a line of input at a time; use
971 \\[term-send-input] to send.
972
973 In line mode, this maintains an input history of size
974 `term-input-ring-size', and you can access it with the commands
975 \\[term-next-input], \\[term-previous-input], and
976 \\[term-dynamic-list-input-ring]. Input ring history expansion can be
977 achieved with the commands \\[term-replace-by-expanded-history] or
978 \\[term-magic-space]. Input ring expansion is controlled by the
979 variable `term-input-autoexpand', and addition is controlled by the
980 variable `term-input-ignoredups'.
981
982 Input to, and output from, the subprocess can cause the window to scroll to
983 the end of the buffer. See variables `term-scroll-to-bottom-on-input',
984 and `term-scroll-to-bottom-on-output'.
985
986 If you accidentally suspend your process, use \\[term-continue-subjob]
987 to continue it.
988
989 This mode can be customized to create specific modes for running
990 particular subprocesses. This can be done by setting the hooks
991 `term-input-filter-functions', `term-input-filter',
992 `term-input-sender' and `term-get-old-input' to appropriate functions,
993 and the variable `term-prompt-regexp' to the appropriate regular
994 expression.
995
996 Commands in raw mode:
997
998 \\{term-raw-map}
999
1000 Commands in line mode:
1001
1002 \\{term-mode-map}
1003
1004 Entry to this mode runs the hooks on `term-mode-hook'."
1005 (interactive)
1006 ;; Do not remove this. All major modes must do this.
1007 (kill-all-local-variables)
1008 (setq major-mode 'term-mode)
1009 (setq mode-name "Term")
1010 (use-local-map term-mode-map)
1011 ;; we do not want indent to sneak in any tabs
1012 (setq indent-tabs-mode nil)
1013 (setq buffer-display-table term-display-table)
1014 (make-local-variable 'term-home-marker)
1015 (setq term-home-marker (copy-marker 0))
1016 (make-local-variable 'term-saved-home-marker)
1017 (make-local-variable 'term-height)
1018 (make-local-variable 'term-width)
1019 (setq term-width (term-window-width))
1020 (setq term-height (1- (window-height)))
1021 (make-local-variable 'term-terminal-parameter)
1022 (make-local-variable 'term-saved-cursor)
1023 (make-local-variable 'term-last-input-start)
1024 (setq term-last-input-start (make-marker))
1025 (make-local-variable 'term-last-input-end)
1026 (setq term-last-input-end (make-marker))
1027 (make-local-variable 'term-last-input-match)
1028 (setq term-last-input-match "")
1029 (make-local-variable 'term-prompt-regexp) ; Don't set; default
1030 (make-local-variable 'term-input-ring-size) ; ...to global val.
1031 (make-local-variable 'term-input-ring)
1032 (make-local-variable 'term-input-ring-file-name)
1033 (or (and (boundp 'term-input-ring) term-input-ring)
1034 (setq term-input-ring (make-ring term-input-ring-size)))
1035 (make-local-variable 'term-input-ring-index)
1036 (or (and (boundp 'term-input-ring-index) term-input-ring-index)
1037 (setq term-input-ring-index nil))
1038
1039 (make-local-variable 'term-command-hook)
1040 (setq term-command-hook (symbol-function 'term-command-hook))
1041
1042 ;;; I'm not sure these saves are necessary but, since I
1043 ;;; haven't tested the whole thing on a net connected machine with
1044 ;;; a properly configured ange-ftp, I've decided to be conservative
1045 ;;; and put them in. -mm
1046
1047 (make-local-variable 'term-ansi-at-host)
1048 (setq term-ansi-at-host (system-name))
1049
1050 (make-local-variable 'term-ansi-at-dir)
1051 (setq term-ansi-at-dir default-directory)
1052
1053 (make-local-variable 'term-ansi-at-message)
1054 (setq term-ansi-at-message nil)
1055
1056 ;;; For user tracking purposes -mm
1057 (make-local-variable 'ange-ftp-default-user)
1058 (make-local-variable 'ange-ftp-default-password)
1059 (make-local-variable 'ange-ftp-generate-anonymous-password)
1060
1061 ;;; You may want to have different scroll-back sizes -mm
1062 (make-local-variable 'term-buffer-maximum-size)
1063
1064 ;;; Of course these have to be buffer-local -mm
1065 (make-local-variable 'term-ansi-current-bold)
1066 (make-local-variable 'term-ansi-current-color)
1067 (make-local-variable 'term-ansi-face-already-done)
1068 (make-local-variable 'term-ansi-current-bg-color)
1069 (make-local-variable 'term-ansi-current-underline)
1070 (make-local-variable 'term-ansi-current-reverse)
1071 (make-local-variable 'term-ansi-current-invisible)
1072
1073 (make-local-variable 'term-terminal-parameter)
1074 (make-local-variable 'term-terminal-previous-parameter)
1075 (make-local-variable 'term-terminal-previous-parameter-2)
1076 (make-local-variable 'term-terminal-previous-parameter-3)
1077 (make-local-variable 'term-terminal-previous-parameter-4)
1078 (make-local-variable 'term-terminal-more-parameters)
1079
1080 (make-local-variable 'term-terminal-state)
1081 (make-local-variable 'term-kill-echo-list)
1082 (make-local-variable 'term-start-line-column)
1083 (make-local-variable 'term-current-column)
1084 (make-local-variable 'term-current-row)
1085 (make-local-variable 'term-log-buffer)
1086 (make-local-variable 'term-scroll-start)
1087 (make-local-variable 'term-scroll-end)
1088 (setq term-scroll-end term-height)
1089 (make-local-variable 'term-scroll-with-delete)
1090 (make-local-variable 'term-pager-count)
1091 (make-local-variable 'term-pager-old-local-map)
1092 (make-local-variable 'term-old-mode-map)
1093 (make-local-variable 'term-insert-mode)
1094 (make-local-variable 'term-dynamic-complete-functions)
1095 (make-local-variable 'term-completion-fignore)
1096 (make-local-variable 'term-get-old-input)
1097 (make-local-variable 'term-matching-input-from-input-string)
1098 (make-local-variable 'term-input-autoexpand)
1099 (make-local-variable 'term-input-ignoredups)
1100 (make-local-variable 'term-delimiter-argument-list)
1101 (make-local-variable 'term-input-filter-functions)
1102 (make-local-variable 'term-input-filter)
1103 (make-local-variable 'term-input-sender)
1104 (make-local-variable 'term-eol-on-send)
1105 (make-local-variable 'term-scroll-to-bottom-on-output)
1106 (make-local-variable 'term-scroll-show-maximum-output)
1107 (make-local-variable 'term-ptyp)
1108 (make-local-variable 'term-exec-hook)
1109 (make-local-variable 'term-vertical-motion)
1110 (make-local-variable 'term-pending-delete-marker)
1111 (setq term-pending-delete-marker (make-marker))
1112 (make-local-variable 'term-current-face)
1113 (setq term-current-face (list :background term-default-bg-color
1114 :foreground term-default-fg-color))
1115 (make-local-variable 'term-pending-frame)
1116 (setq term-pending-frame nil)
1117 ;; Cua-mode's keybindings interfere with the term keybindings, disable it.
1118 (set (make-local-variable 'cua-mode) nil)
1119 (run-mode-hooks 'term-mode-hook)
1120 (when (featurep 'xemacs)
1121 (set-buffer-menubar
1122 (append current-menubar (list term-terminal-menu))))
1123 (or term-input-ring
1124 (setq term-input-ring (make-ring term-input-ring-size)))
1125 (term-update-mode-line))
1126 \f
1127 (defun term-reset-size (height width)
1128 (setq term-height height)
1129 (setq term-width width)
1130 (setq term-start-line-column nil)
1131 (setq term-current-row nil)
1132 (setq term-current-column nil)
1133 (term-set-scroll-region 0 height))
1134
1135 ;; Recursive routine used to check if any string in term-kill-echo-list
1136 ;; matches part of the buffer before point.
1137 ;; If so, delete that matched part of the buffer - this suppresses echo.
1138 ;; Also, remove that string from the term-kill-echo-list.
1139 ;; We *also* remove any older string on the list, as a sanity measure,
1140 ;; in case something gets out of sync. (Except for type-ahead, there
1141 ;; should only be one element in the list.)
1142
1143 (defun term-check-kill-echo-list ()
1144 (let ((cur term-kill-echo-list) (found nil) (save-point (point)))
1145 (unwind-protect
1146 (progn
1147 (end-of-line)
1148 (while cur
1149 (let* ((str (car cur)) (len (length str)) (start (- (point) len)))
1150 (if (and (>= start (point-min))
1151 (string= str (buffer-substring start (point))))
1152 (progn (delete-backward-char len)
1153 (setq term-kill-echo-list (cdr cur))
1154 (setq term-current-column nil)
1155 (setq term-current-row nil)
1156 (setq term-start-line-column nil)
1157 (setq cur nil found t))
1158 (setq cur (cdr cur))))))
1159 (when (not found)
1160 (goto-char save-point)))
1161 found))
1162
1163 (defun term-check-size (process)
1164 (when (or (/= term-height (1- (window-height)))
1165 (/= term-width (term-window-width)))
1166 (term-reset-size (1- (window-height)) (term-window-width))
1167 (set-process-window-size process term-height term-width)))
1168
1169 (defun term-send-raw-string (chars)
1170 (let ((proc (get-buffer-process (current-buffer))))
1171 (if (not proc)
1172 (error "Current buffer has no process")
1173 ;; Note that (term-current-row) must be called *after*
1174 ;; (point) has been updated to (process-mark proc).
1175 (goto-char (process-mark proc))
1176 (when (term-pager-enabled)
1177 (setq term-pager-count (term-current-row)))
1178 (process-send-string proc chars))))
1179
1180 (defun term-send-raw ()
1181 "Send the last character typed through the terminal-emulator
1182 without any interpretation."
1183 (interactive)
1184 ;; Convert `return' to C-m, etc.
1185 (when (and (symbolp last-input-char)
1186 (get last-input-char 'ascii-character))
1187 (setq last-input-char (get last-input-char 'ascii-character)))
1188 (term-send-raw-string (make-string 1 last-input-char)))
1189
1190 (defun term-send-raw-meta ()
1191 (interactive)
1192 (let ((char last-input-char))
1193 (when (symbolp last-input-char)
1194 ;; Convert `return' to C-m, etc.
1195 (let ((tmp (get char 'event-symbol-elements)))
1196 (when tmp
1197 (setq char (car tmp)))
1198 (when (symbolp char)
1199 (setq tmp (get char 'ascii-character))
1200 (when tmp
1201 (setq char tmp)))))
1202 (setq char (event-basic-type char))
1203 (term-send-raw-string (if (and (numberp char)
1204 (> char 127)
1205 (< char 256))
1206 (make-string 1 char)
1207 (format "\e%c" char)))))
1208
1209 (defun term-mouse-paste (click arg)
1210 "Insert the last stretch of killed text at the position clicked on."
1211 (interactive "e\nP")
1212 (if (featurep 'xemacs)
1213 (term-send-raw-string
1214 (or (condition-case () (x-get-selection) (error ()))
1215 (x-get-cutbuffer)
1216 (error "No selection or cut buffer available")))
1217 ;; Give temporary modes such as isearch a chance to turn off.
1218 (run-hooks 'mouse-leave-buffer-hook)
1219 (setq this-command 'yank)
1220 (mouse-set-point click)
1221 (term-send-raw-string (current-kill (cond
1222 ((listp arg) 0)
1223 ((eq arg '-) -1)
1224 (t (1- arg)))))))
1225
1226 (defun term-paste ()
1227 "Insert the last stretch of killed text at point."
1228 (interactive)
1229 (term-send-raw-string (current-kill 0)))
1230
1231 ;; Which would be better: "\e[A" or "\eOA"? readline accepts either.
1232 ;; For my configuration it's definitely better \eOA but YMMV. -mm
1233 ;; For example: vi works with \eOA while elm wants \e[A ...
1234 ;;; (terminfo: kcuu1, kcud1, kcuf1, kcub1, khome, kend, kpp, knp, kdch1, kbs)
1235 (defun term-send-up () (interactive) (term-send-raw-string "\eOA"))
1236 (defun term-send-down () (interactive) (term-send-raw-string "\eOB"))
1237 (defun term-send-right () (interactive) (term-send-raw-string "\eOC"))
1238 (defun term-send-left () (interactive) (term-send-raw-string "\eOD"))
1239 (defun term-send-home () (interactive) (term-send-raw-string "\e[1~"))
1240 (defun term-send-insert() (interactive) (term-send-raw-string "\e[2~"))
1241 (defun term-send-end () (interactive) (term-send-raw-string "\e[4~"))
1242 (defun term-send-prior () (interactive) (term-send-raw-string "\e[5~"))
1243 (defun term-send-next () (interactive) (term-send-raw-string "\e[6~"))
1244 (defun term-send-del () (interactive) (term-send-raw-string "\e[3~"))
1245 (defun term-send-backspace () (interactive) (term-send-raw-string "\C-?"))
1246 \f
1247 (defun term-char-mode ()
1248 "Switch to char (\"raw\") sub-mode of term mode.
1249 Each character you type is sent directly to the inferior without
1250 intervention from Emacs, except for the escape character (usually C-c)."
1251 (interactive)
1252 ;; FIXME: Emit message? Cfr ilisp-raw-message
1253 (when (term-in-line-mode)
1254 (setq term-old-mode-map (current-local-map))
1255 (use-local-map term-raw-map)
1256
1257 ;; Send existing partial line to inferior (without newline).
1258 (let ((pmark (process-mark (get-buffer-process (current-buffer))))
1259 (save-input-sender term-input-sender))
1260 (when (> (point) pmark)
1261 (unwind-protect
1262 (progn
1263 (setq term-input-sender
1264 (symbol-function 'term-send-string))
1265 (end-of-line)
1266 (term-send-input))
1267 (setq term-input-sender save-input-sender))))
1268 (term-update-mode-line)))
1269
1270 (defun term-line-mode ()
1271 "Switch to line (\"cooked\") sub-mode of term mode.
1272 This means that Emacs editing commands work as normally, until
1273 you type \\[term-send-input] which sends the current line to the inferior."
1274 (interactive)
1275 (when (term-in-char-mode)
1276 (use-local-map term-old-mode-map)
1277 (term-update-mode-line)))
1278
1279 (defun term-update-mode-line ()
1280 (let ((term-mode (if (term-in-char-mode) "char" "line"))
1281 (term-page (when (term-pager-enabled) " page"))
1282 (serial-item-speed)
1283 (serial-item-config)
1284 (temp)
1285 (proc (get-buffer-process (current-buffer))))
1286 (when (and (term-check-proc (current-buffer))
1287 (equal (process-type nil) 'serial))
1288 (let ((temp (serial-speed)))
1289 (setq serial-item-speed
1290 `(:propertize
1291 ,(or (and temp (format " %d" temp)) "")
1292 help-echo "mouse-1: Change the speed of the serial port"
1293 mouse-face mode-line-highlight
1294 local-map (keymap (mode-line keymap
1295 (down-mouse-1 . serial-mode-line-speed-menu-1))))))
1296 (let ((temp (process-contact proc :summary)))
1297 (setq serial-item-config
1298 `(:propertize
1299 ,(or (and temp (format " %s" temp)) "")
1300 help-echo "mouse-1: Change the configuration of the serial port"
1301 mouse-face mode-line-highlight
1302 local-map (keymap (mode-line keymap
1303 (down-mouse-1 . serial-mode-line-config-menu-1)))))))
1304 (setq mode-line-process
1305 (list ": " term-mode term-page
1306 serial-item-speed
1307 serial-item-config
1308 " %s")))
1309 (force-mode-line-update))
1310
1311 (defun term-check-proc (buffer)
1312 "True if there is a process associated w/buffer BUFFER, and it
1313 is alive. BUFFER can be either a buffer or the name of one."
1314 (let ((proc (get-buffer-process buffer)))
1315 (and proc (memq (process-status proc) '(run stop open listen connect)))))
1316
1317 ;;;###autoload
1318 (defun make-term (name program &optional startfile &rest switches)
1319 "Make a term process NAME in a buffer, running PROGRAM.
1320 The name of the buffer is made by surrounding NAME with `*'s.
1321 If there is already a running process in that buffer, it is not restarted.
1322 Optional third arg STARTFILE is the name of a file to send the contents of to
1323 the process. Any more args are arguments to PROGRAM."
1324 (let ((buffer (get-buffer-create (concat "*" name "*"))))
1325 ;; If no process, or nuked process, crank up a new one and put buffer in
1326 ;; term mode. Otherwise, leave buffer and existing process alone.
1327 (cond ((not (term-check-proc buffer))
1328 (save-excursion
1329 (set-buffer buffer)
1330 (term-mode)) ; Install local vars, mode, keymap, ...
1331 (term-exec buffer name program startfile switches)))
1332 buffer))
1333
1334 ;;;###autoload
1335 (defun term (program)
1336 "Start a terminal-emulator in a new buffer.
1337 The buffer is in Term mode; see `term-mode' for the
1338 commands to use in that buffer.
1339
1340 \\<term-raw-map>Type \\[switch-to-buffer] to switch to another buffer."
1341 (interactive (list (read-from-minibuffer "Run program: "
1342 (or explicit-shell-file-name
1343 (getenv "ESHELL")
1344 (getenv "SHELL")
1345 "/bin/sh"))))
1346 (set-buffer (make-term "terminal" program))
1347 (term-mode)
1348 (term-char-mode)
1349 (switch-to-buffer "*terminal*"))
1350
1351 (defun term-exec (buffer name command startfile switches)
1352 "Start up a process in buffer for term modes.
1353 Blasts any old process running in the buffer. Doesn't set the buffer mode.
1354 You can use this to cheaply run a series of processes in the same term
1355 buffer. The hook `term-exec-hook' is run after each exec."
1356 (save-excursion
1357 (set-buffer buffer)
1358 (let ((proc (get-buffer-process buffer))) ; Blast any old process.
1359 (when proc (delete-process proc)))
1360 ;; Crank up a new process
1361 (let ((proc (term-exec-1 name buffer command switches)))
1362 (make-local-variable 'term-ptyp)
1363 (setq term-ptyp process-connection-type) ; t if pty, nil if pipe.
1364 ;; Jump to the end, and set the process mark.
1365 (goto-char (point-max))
1366 (set-marker (process-mark proc) (point))
1367 (set-process-filter proc 'term-emulate-terminal)
1368 (set-process-sentinel proc 'term-sentinel)
1369 ;; Feed it the startfile.
1370 (cond (startfile
1371 ;;This is guaranteed to wait long enough
1372 ;;but has bad results if the term does not prompt at all
1373 ;; (while (= size (buffer-size))
1374 ;; (sleep-for 1))
1375 ;;I hope 1 second is enough!
1376 (sleep-for 1)
1377 (goto-char (point-max))
1378 (insert-file-contents startfile)
1379 (setq startfile (buffer-substring (point) (point-max)))
1380 (delete-region (point) (point-max))
1381 (term-send-string proc startfile)))
1382 (run-hooks 'term-exec-hook)
1383 buffer)))
1384
1385 (defun term-sentinel (proc msg)
1386 "Sentinel for term buffers.
1387 The main purpose is to get rid of the local keymap."
1388 (let ((buffer (process-buffer proc)))
1389 (when (memq (process-status proc) '(signal exit))
1390 (if (null (buffer-name buffer))
1391 ;; buffer killed
1392 (set-process-buffer proc nil)
1393 (let ((obuf (current-buffer)))
1394 ;; save-excursion isn't the right thing if
1395 ;; process-buffer is current-buffer
1396 (unwind-protect
1397 (progn
1398 ;; Write something in the compilation buffer
1399 ;; and hack its mode line.
1400 (set-buffer buffer)
1401 ;; Get rid of local keymap.
1402 (use-local-map nil)
1403 (term-handle-exit (process-name proc)
1404 msg)
1405 ;; Since the buffer and mode line will show that the
1406 ;; process is dead, we can delete it now. Otherwise it
1407 ;; will stay around until M-x list-processes.
1408 (delete-process proc))
1409 (set-buffer obuf)))
1410 ))))
1411
1412 (defun term-handle-exit (process-name msg)
1413 "Write process exit (or other change) message MSG in the current buffer."
1414 (let ((buffer-read-only nil)
1415 (omax (point-max))
1416 (opoint (point)))
1417 ;; Record where we put the message, so we can ignore it
1418 ;; later on.
1419 (goto-char omax)
1420 (insert ?\n "Process " process-name " " msg)
1421 ;; Force mode line redisplay soon.
1422 (force-mode-line-update)
1423 (when (and opoint (< opoint omax))
1424 (goto-char opoint))))
1425
1426
1427 ;;; Name to use for TERM.
1428 ;;; Using "emacs" loses, because bash disables editing if TERM == emacs.
1429 (defvar term-term-name "eterm-color")
1430 ; Format string, usage:
1431 ; (format term-termcap-string emacs-term-name "TERMCAP=" 24 80)
1432 (defvar term-termcap-format
1433 "%s%s:li#%d:co#%d:cl=\\E[H\\E[J:cd=\\E[J:bs:am:xn:cm=\\E[%%i%%d;%%dH\
1434 :nd=\\E[C:up=\\E[A:ce=\\E[K:ho=\\E[H:pt\
1435 :al=\\E[L:dl=\\E[M:DL=\\E[%%dM:AL=\\E[%%dL:cs=\\E[%%i%%d;%%dr:sf=^J\
1436 :dc=\\E[P:DC=\\E[%%dP:IC=\\E[%%d@:im=\\E[4h:ei=\\E[4l:mi:\
1437 :so=\\E[7m:se=\\E[m:us=\\E[4m:ue=\\E[m:md=\\E[1m:mr=\\E[7m:me=\\E[m\
1438 :UP=\\E[%%dA:DO=\\E[%%dB:LE=\\E[%%dD:RI=\\E[%%dC\
1439 :kl=\\EOD:kd=\\EOB:kr=\\EOC:ku=\\EOA:kN=\\E[6~:kP=\\E[5~:@7=\\E[4~:kh=\\E[1~\
1440 :mk=\\E[8m:cb=\\E[1K:op=\\E[39;49m:Co#8:pa#64:AB=\\E[4%%dm:AF=\\E[3%%dm:cr=^M\
1441 :bl=^G:do=^J:le=^H:ta=^I:se=\\E[27m:ue=\\E24m\
1442 :kb=^?:kD=^[[3~:sc=\\E7:rc=\\E8:r1=\\Ec:"
1443 ;;; : -undefine ic
1444 ;;; don't define :te=\\E[2J\\E[?47l\\E8:ti=\\E7\\E[?47h\
1445 "Termcap capabilities supported.")
1446
1447 ;;; This auxiliary function cranks up the process for term-exec in
1448 ;;; the appropriate environment.
1449
1450 (defun term-exec-1 (name buffer command switches)
1451 ;; We need to do an extra (fork-less) exec to run stty.
1452 ;; (This would not be needed if we had suitable Emacs primitives.)
1453 ;; The 'if ...; then shift; fi' hack is because Bourne shell
1454 ;; loses one arg when called with -c, and newer shells (bash, ksh) don't.
1455 ;; Thus we add an extra dummy argument "..", and then remove it.
1456 (let ((process-environment
1457 (nconc
1458 (list
1459 (format "TERM=%s" term-term-name)
1460 (format "TERMINFO=%s" data-directory)
1461 (format term-termcap-format "TERMCAP="
1462 term-term-name term-height term-width)
1463 ;; We are going to get rid of the binding for EMACS,
1464 ;; probably in Emacs 23, because it breaks
1465 ;; `./configure' of some packages that expect it to
1466 ;; say where to find EMACS.
1467 (format "EMACS=%s (term:%s)" emacs-version term-protocol-version)
1468 (format "INSIDE_EMACS=%s,term:%s" emacs-version term-protocol-version)
1469 (format "LINES=%d" term-height)
1470 (format "COLUMNS=%d" term-width))
1471 process-environment))
1472 (process-connection-type t)
1473 ;; We should suppress conversion of end-of-line format.
1474 (inhibit-eol-conversion t)
1475 ;; The process's output contains not just chars but also binary
1476 ;; escape codes, so we need to see the raw output. We will have to
1477 ;; do the decoding by hand on the parts that are made of chars.
1478 (coding-system-for-read 'binary))
1479 (apply 'start-process name buffer
1480 "/bin/sh" "-c"
1481 (format "stty -nl echo rows %d columns %d sane 2>/dev/null;\
1482 if [ $1 = .. ]; then shift; fi; exec \"$@\""
1483 term-height term-width)
1484 ".."
1485 command switches)))
1486
1487 \f
1488 ;;; Input history processing in a buffer
1489 ;;; ===========================================================================
1490 ;;; Useful input history functions, courtesy of the Ergo group.
1491
1492 ;;; Eleven commands:
1493 ;;; term-dynamic-list-input-ring List history in help buffer.
1494 ;;; term-previous-input Previous input...
1495 ;;; term-previous-matching-input ...matching a string.
1496 ;;; term-previous-matching-input-from-input ... matching the current input.
1497 ;;; term-next-input Next input...
1498 ;;; term-next-matching-input ...matching a string.
1499 ;;; term-next-matching-input-from-input ... matching the current input.
1500 ;;; term-backward-matching-input Backwards input...
1501 ;;; term-forward-matching-input ...matching a string.
1502 ;;; term-replace-by-expanded-history Expand history at point;
1503 ;;; replace with expanded history.
1504 ;;; term-magic-space Expand history and insert space.
1505 ;;;
1506 ;;; Three functions:
1507 ;;; term-read-input-ring Read into term-input-ring...
1508 ;;; term-write-input-ring Write to term-input-ring-file-name.
1509 ;;; term-replace-by-expanded-history-before-point Workhorse function.
1510
1511 (defun term-read-input-ring (&optional silent)
1512 "Sets the buffer's `term-input-ring' from a history file.
1513 The name of the file is given by the variable `term-input-ring-file-name'.
1514 The history ring is of size `term-input-ring-size', regardless of file size.
1515 If `term-input-ring-file-name' is nil this function does nothing.
1516
1517 If the optional argument SILENT is non-nil, we say nothing about a
1518 failure to read the history file.
1519
1520 This function is useful for major mode commands and mode hooks.
1521
1522 The structure of the history file should be one input command per line,
1523 with the most recent command last.
1524 See also `term-input-ignoredups' and `term-write-input-ring'."
1525 (cond ((or (null term-input-ring-file-name)
1526 (equal term-input-ring-file-name ""))
1527 nil)
1528 ((not (file-readable-p term-input-ring-file-name))
1529 (or silent
1530 (message "Cannot read history file %s"
1531 term-input-ring-file-name)))
1532 (t
1533 (let ((history-buf (get-buffer-create " *temp*"))
1534 (file term-input-ring-file-name)
1535 (count 0)
1536 (ring (make-ring term-input-ring-size)))
1537 (unwind-protect
1538 (save-excursion
1539 (set-buffer history-buf)
1540 (widen)
1541 (erase-buffer)
1542 (insert-file-contents file)
1543 ;; Save restriction in case file is already visited...
1544 ;; Watch for those date stamps in history files!
1545 (goto-char (point-max))
1546 (while (and (< count term-input-ring-size)
1547 (re-search-backward "^[ \t]*\\([^#\n].*\\)[ \t]*$"
1548 nil t))
1549 (let ((history (buffer-substring (match-beginning 1)
1550 (match-end 1))))
1551 (when (or (null term-input-ignoredups)
1552 (ring-empty-p ring)
1553 (not (string-equal (ring-ref ring 0) history)))
1554 (ring-insert-at-beginning ring history)))
1555 (setq count (1+ count))))
1556 (kill-buffer history-buf))
1557 (setq term-input-ring ring
1558 term-input-ring-index nil)))))
1559
1560 (defun term-write-input-ring ()
1561 "Writes the buffer's `term-input-ring' to a history file.
1562 The name of the file is given by the variable `term-input-ring-file-name'.
1563 The original contents of the file are lost if `term-input-ring' is not empty.
1564 If `term-input-ring-file-name' is nil this function does nothing.
1565
1566 Useful within process sentinels.
1567
1568 See also `term-read-input-ring'."
1569 (cond ((or (null term-input-ring-file-name)
1570 (equal term-input-ring-file-name "")
1571 (null term-input-ring) (ring-empty-p term-input-ring))
1572 nil)
1573 ((not (file-writable-p term-input-ring-file-name))
1574 (message "Cannot write history file %s" term-input-ring-file-name))
1575 (t
1576 (let* ((history-buf (get-buffer-create " *Temp Input History*"))
1577 (ring term-input-ring)
1578 (file term-input-ring-file-name)
1579 (index (ring-length ring)))
1580 ;; Write it all out into a buffer first. Much faster, but messier,
1581 ;; than writing it one line at a time.
1582 (save-excursion
1583 (set-buffer history-buf)
1584 (erase-buffer)
1585 (while (> index 0)
1586 (setq index (1- index))
1587 (insert (ring-ref ring index) ?\n))
1588 (write-region (buffer-string) nil file nil 'no-message)
1589 (kill-buffer nil))))))
1590
1591
1592 (defun term-dynamic-list-input-ring ()
1593 "List in help buffer the buffer's input history."
1594 (interactive)
1595 (if (or (not (ring-p term-input-ring))
1596 (ring-empty-p term-input-ring))
1597 (message "No history")
1598 (let ((history nil)
1599 (history-buffer " *Input History*")
1600 (index (1- (ring-length term-input-ring)))
1601 (conf (current-window-configuration)))
1602 ;; We have to build up a list ourselves from the ring vector.
1603 (while (>= index 0)
1604 (setq history (cons (ring-ref term-input-ring index) history)
1605 index (1- index)))
1606 ;; Change "completion" to "history reference"
1607 ;; to make the display accurate.
1608 (with-output-to-temp-buffer history-buffer
1609 (display-completion-list history)
1610 (set-buffer history-buffer)
1611 (forward-line 3)
1612 (while (search-backward "completion" nil 'move)
1613 (replace-match "history reference")))
1614 (sit-for 0)
1615 (message "Hit space to flush")
1616 (let ((ch (read-event)))
1617 (if (eq ch ?\s)
1618 (set-window-configuration conf)
1619 (setq unread-command-events (list ch)))))))
1620
1621
1622 (defun term-regexp-arg (prompt)
1623 ;; Return list of regexp and prefix arg using PROMPT.
1624 (let* (;; Don't clobber this.
1625 (last-command last-command)
1626 (regexp (read-from-minibuffer prompt nil nil nil
1627 'minibuffer-history-search-history)))
1628 (list (if (string-equal regexp "")
1629 (setcar minibuffer-history-search-history
1630 (nth 1 minibuffer-history-search-history))
1631 regexp)
1632 (prefix-numeric-value current-prefix-arg))))
1633
1634 (defun term-search-arg (arg)
1635 ;; First make sure there is a ring and that we are after the process mark
1636 (cond ((not (term-after-pmark-p))
1637 (error "Not at command line"))
1638 ((or (null term-input-ring)
1639 (ring-empty-p term-input-ring))
1640 (error "Empty input ring"))
1641 ((zerop arg)
1642 ;; arg of zero resets search from beginning, and uses arg of 1
1643 (setq term-input-ring-index nil)
1644 1)
1645 (t
1646 arg)))
1647
1648 (defun term-search-start (arg)
1649 ;; Index to start a directional search, starting at term-input-ring-index
1650 (if term-input-ring-index
1651 ;; If a search is running, offset by 1 in direction of arg
1652 (mod (+ term-input-ring-index (if (> arg 0) 1 -1))
1653 (ring-length term-input-ring))
1654 ;; For a new search, start from beginning or end, as appropriate
1655 (if (>= arg 0)
1656 0 ; First elt for forward search
1657 (1- (ring-length term-input-ring))))) ; Last elt for backward search
1658
1659 (defun term-previous-input-string (arg)
1660 "Return the string ARG places along the input ring.
1661 Moves relative to `term-input-ring-index'."
1662 (ring-ref term-input-ring (if term-input-ring-index
1663 (mod (+ arg term-input-ring-index)
1664 (ring-length term-input-ring))
1665 arg)))
1666
1667 (defun term-previous-input (arg)
1668 "Cycle backwards through input history."
1669 (interactive "*p")
1670 (term-previous-matching-input "." arg))
1671
1672 (defun term-next-input (arg)
1673 "Cycle forwards through input history."
1674 (interactive "*p")
1675 (term-previous-input (- arg)))
1676
1677 (defun term-previous-matching-input-string (regexp arg)
1678 "Return the string matching REGEXP ARG places along the input ring.
1679 Moves relative to `term-input-ring-index'."
1680 (let* ((pos (term-previous-matching-input-string-position regexp arg)))
1681 (when pos (ring-ref term-input-ring pos))))
1682
1683 (defun term-previous-matching-input-string-position
1684 (regexp arg &optional start)
1685 "Return the index matching REGEXP ARG places along the input ring.
1686 Moves relative to START, or `term-input-ring-index'."
1687 (when (or (not (ring-p term-input-ring))
1688 (ring-empty-p term-input-ring))
1689 (error "No history"))
1690 (let* ((len (ring-length term-input-ring))
1691 (motion (if (> arg 0) 1 -1))
1692 (n (mod (- (or start (term-search-start arg)) motion) len))
1693 (tried-each-ring-item nil)
1694 (prev nil))
1695 ;; Do the whole search as many times as the argument says.
1696 (while (and (/= arg 0) (not tried-each-ring-item))
1697 ;; Step once.
1698 (setq prev n
1699 n (mod (+ n motion) len))
1700 ;; If we haven't reached a match, step some more.
1701 (while (and (< n len) (not tried-each-ring-item)
1702 (not (string-match regexp (ring-ref term-input-ring n))))
1703 (setq n (mod (+ n motion) len)
1704 ;; If we have gone all the way around in this search.
1705 tried-each-ring-item (= n prev)))
1706 (setq arg (if (> arg 0) (1- arg) (1+ arg))))
1707 ;; Now that we know which ring element to use, if we found it, return that.
1708 (when (string-match regexp (ring-ref term-input-ring n))
1709 n)))
1710
1711 (defun term-previous-matching-input (regexp arg)
1712 "Search backwards through input history for match for REGEXP.
1713 \(Previous history elements are earlier commands.)
1714 With prefix argument N, search for Nth previous match.
1715 If N is negative, find the next or Nth next match."
1716 (interactive (term-regexp-arg "Previous input matching (regexp): "))
1717 (setq arg (term-search-arg arg))
1718 (let ((pos (term-previous-matching-input-string-position regexp arg)))
1719 ;; Has a match been found?
1720 (if (null pos)
1721 (error "Not found")
1722 (setq term-input-ring-index pos)
1723 (message "History item: %d" (1+ pos))
1724 (delete-region
1725 ;; Can't use kill-region as it sets this-command
1726 (process-mark (get-buffer-process (current-buffer))) (point))
1727 (insert (ring-ref term-input-ring pos)))))
1728
1729 (defun term-next-matching-input (regexp arg)
1730 "Search forwards through input history for match for REGEXP.
1731 \(Later history elements are more recent commands.)
1732 With prefix argument N, search for Nth following match.
1733 If N is negative, find the previous or Nth previous match."
1734 (interactive (term-regexp-arg "Next input matching (regexp): "))
1735 (term-previous-matching-input regexp (- arg)))
1736
1737 (defun term-previous-matching-input-from-input (arg)
1738 "Search backwards through input history for match for current input.
1739 \(Previous history elements are earlier commands.)
1740 With prefix argument N, search for Nth previous match.
1741 If N is negative, search forwards for the -Nth following match."
1742 (interactive "p")
1743 (when (not (memq last-command '(term-previous-matching-input-from-input
1744 term-next-matching-input-from-input)))
1745 ;; Starting a new search
1746 (setq term-matching-input-from-input-string
1747 (buffer-substring
1748 (process-mark (get-buffer-process (current-buffer)))
1749 (point))
1750 term-input-ring-index nil))
1751 (term-previous-matching-input
1752 (concat "^" (regexp-quote term-matching-input-from-input-string))
1753 arg))
1754
1755 (defun term-next-matching-input-from-input (arg)
1756 "Search forwards through input history for match for current input.
1757 \(Following history elements are more recent commands.)
1758 With prefix argument N, search for Nth following match.
1759 If N is negative, search backwards for the -Nth previous match."
1760 (interactive "p")
1761 (term-previous-matching-input-from-input (- arg)))
1762
1763
1764 (defun term-replace-by-expanded-history (&optional silent)
1765 "Expand input command history references before point.
1766 Expansion is dependent on the value of `term-input-autoexpand'.
1767
1768 This function depends on the buffer's idea of the input history, which may not
1769 match the command interpreter's idea, assuming it has one.
1770
1771 Assumes history syntax is like typical Un*x shells'. However, since Emacs
1772 cannot know the interpreter's idea of input line numbers, assuming it has one,
1773 it cannot expand absolute input line number references.
1774
1775 If the optional argument SILENT is non-nil, never complain
1776 even if history reference seems erroneous.
1777
1778 See `term-magic-space' and `term-replace-by-expanded-history-before-point'.
1779
1780 Returns t if successful."
1781 (interactive)
1782 (when (and term-input-autoexpand
1783 (string-match "[!^]" (funcall term-get-old-input))
1784 (save-excursion (beginning-of-line)
1785 (looking-at term-prompt-regexp)))
1786 ;; Looks like there might be history references in the command.
1787 (let ((previous-modified-tick (buffer-modified-tick)))
1788 (message "Expanding history references...")
1789 (term-replace-by-expanded-history-before-point silent)
1790 (/= previous-modified-tick (buffer-modified-tick)))))
1791
1792
1793 (defun term-replace-by-expanded-history-before-point (silent)
1794 "Expand directory stack reference before point.
1795 See `term-replace-by-expanded-history'. Returns t if successful."
1796 (save-excursion
1797 (let ((toend (- (save-excursion (end-of-line nil) (point)) (point)))
1798 (start (progn (term-bol nil) (point))))
1799 (while (progn
1800 (skip-chars-forward "^!^"
1801 (save-excursion
1802 (end-of-line nil) (- (point) toend)))
1803 (< (point)
1804 (save-excursion
1805 (end-of-line nil) (- (point) toend))))
1806 ;; This seems a bit complex. We look for references such as !!, !-num,
1807 ;; !foo, !?foo, !{bar}, !?{bar}, ^oh, ^my^, ^god^it, ^never^ends^.
1808 ;; If that wasn't enough, the plings can be suffixed with argument
1809 ;; range specifiers.
1810 ;; Argument ranges are complex too, so we hive off the input line,
1811 ;; referenced with plings, with the range string to `term-args'.
1812 (setq term-input-ring-index nil)
1813 (cond ((or (= (preceding-char) ?\\)
1814 (term-within-quotes start (point)))
1815 ;; The history is quoted, or we're in quotes.
1816 (goto-char (1+ (point))))
1817 ((looking-at "![0-9]+\\($\\|[^-]\\)")
1818 ;; We cannot know the interpreter's idea of input line numbers.
1819 (goto-char (match-end 0))
1820 (message "Absolute reference cannot be expanded"))
1821 ((looking-at "!-\\([0-9]+\\)\\(:?[0-9^$*-]+\\)?")
1822 ;; Just a number of args from `number' lines backward.
1823 (let ((number (1- (string-to-number
1824 (buffer-substring (match-beginning 1)
1825 (match-end 1))))))
1826 (if (<= number (ring-length term-input-ring))
1827 (progn
1828 (replace-match
1829 (term-args (term-previous-input-string number)
1830 (match-beginning 2) (match-end 2))
1831 t t)
1832 (setq term-input-ring-index number)
1833 (message "History item: %d" (1+ number)))
1834 (goto-char (match-end 0))
1835 (message "Relative reference exceeds input history size"))))
1836 ((or (looking-at "!!?:?\\([0-9^$*-]+\\)") (looking-at "!!"))
1837 ;; Just a number of args from the previous input line.
1838 (replace-match
1839 (term-args (term-previous-input-string 0)
1840 (match-beginning 1) (match-end 1))
1841 t t)
1842 (message "History item: previous"))
1843 ((looking-at
1844 "!\\??\\({\\(.+\\)}\\|\\(\\sw+\\)\\)\\(:?[0-9^$*-]+\\)?")
1845 ;; Most recent input starting with or containing (possibly
1846 ;; protected) string, maybe just a number of args. Phew.
1847 (let* ((mb1 (match-beginning 1)) (me1 (match-end 1))
1848 (mb2 (match-beginning 2)) (me2 (match-end 2))
1849 (exp (buffer-substring (or mb2 mb1) (or me2 me1)))
1850 (pref (if (save-match-data (looking-at "!\\?")) "" "^"))
1851 (pos (save-match-data
1852 (term-previous-matching-input-string-position
1853 (concat pref (regexp-quote exp)) 1))))
1854 (if (null pos)
1855 (progn
1856 (goto-char (match-end 0))
1857 (or silent
1858 (progn (message "Not found")
1859 (ding))))
1860 (setq term-input-ring-index pos)
1861 (replace-match
1862 (term-args (ring-ref term-input-ring pos)
1863 (match-beginning 4) (match-end 4))
1864 t t)
1865 (message "History item: %d" (1+ pos)))))
1866 ((looking-at "\\^\\([^^]+\\)\\^?\\([^^]*\\)\\^?")
1867 ;; Quick substitution on the previous input line.
1868 (let ((old (buffer-substring (match-beginning 1) (match-end 1)))
1869 (new (buffer-substring (match-beginning 2) (match-end 2)))
1870 (pos nil))
1871 (replace-match (term-previous-input-string 0) t t)
1872 (setq pos (point))
1873 (goto-char (match-beginning 0))
1874 (if (not (search-forward old pos t))
1875 (or silent
1876 (error "Not found"))
1877 (replace-match new t t)
1878 (message "History item: substituted"))))
1879 (t
1880 (goto-char (match-end 0))))))))
1881
1882
1883 (defun term-magic-space (arg)
1884 "Expand input history references before point and insert ARG spaces.
1885 A useful command to bind to SPC. See `term-replace-by-expanded-history'."
1886 (interactive "p")
1887 (term-replace-by-expanded-history)
1888 (self-insert-command arg))
1889 \f
1890 (defun term-within-quotes (beg end)
1891 "Return t if the number of quotes between BEG and END is odd.
1892 Quotes are single and double."
1893 (let ((countsq (term-how-many-region "\\(^\\|[^\\\\]\\)\'" beg end))
1894 (countdq (term-how-many-region "\\(^\\|[^\\\\]\\)\"" beg end)))
1895 (or (= (mod countsq 2) 1) (= (mod countdq 2) 1))))
1896
1897 (defun term-how-many-region (regexp beg end)
1898 "Return number of matches for REGEXP from BEG to END."
1899 (let ((count 0))
1900 (save-excursion
1901 (save-match-data
1902 (goto-char beg)
1903 (while (re-search-forward regexp end t)
1904 (setq count (1+ count)))))
1905 count))
1906
1907 (defun term-args (string begin end)
1908 ;; From STRING, return the args depending on the range specified in the text
1909 ;; from BEGIN to END. If BEGIN is nil, assume all args. Ignore leading `:'.
1910 ;; Range can be x-y, x-, -y, where x/y can be [0-9], *, ^, $.
1911 (save-match-data
1912 (if (null begin)
1913 (term-arguments string 0 nil)
1914 (let* ((range (buffer-substring
1915 (if (eq (char-after begin) ?:) (1+ begin) begin) end))
1916 (nth (cond ((string-match "^[*^]" range) 1)
1917 ((string-match "^-" range) 0)
1918 ((string-equal range "$") nil)
1919 (t (string-to-number range))))
1920 (mth (cond ((string-match "[-*$]$" range) nil)
1921 ((string-match "-" range)
1922 (string-to-number (substring range (match-end 0))))
1923 (t nth))))
1924 (term-arguments string nth mth)))))
1925
1926 ;; Return a list of arguments from ARG. Break it up at the
1927 ;; delimiters in term-delimiter-argument-list. Returned list is backwards.
1928 (defun term-delim-arg (arg)
1929 (if (null term-delimiter-argument-list)
1930 (list arg)
1931 (let ((args nil)
1932 (pos 0)
1933 (len (length arg)))
1934 (while (< pos len)
1935 (let ((char (aref arg pos))
1936 (start pos))
1937 (if (memq char term-delimiter-argument-list)
1938 (while (and (< pos len) (eq (aref arg pos) char))
1939 (setq pos (1+ pos)))
1940 (while (and (< pos len)
1941 (not (memq (aref arg pos)
1942 term-delimiter-argument-list)))
1943 (setq pos (1+ pos))))
1944 (setq args (cons (substring arg start pos) args))))
1945 args)))
1946
1947 (defun term-arguments (string nth mth)
1948 "Return from STRING the NTH to MTH arguments.
1949 NTH and/or MTH can be nil, which means the last argument.
1950 Returned arguments are separated by single spaces.
1951 We assume whitespace separates arguments, except within quotes.
1952 Also, a run of one or more of a single character
1953 in `term-delimiter-argument-list' is a separate argument.
1954 Argument 0 is the command name."
1955 (let ((argpart "[^ \n\t\"'`]+\\|\\(\"[^\"]*\"\\|'[^']*'\\|`[^`]*`\\)")
1956 (args ()) (pos 0)
1957 (count 0)
1958 beg str quotes)
1959 ;; Build a list of all the args until we have as many as we want.
1960 (while (and (or (null mth) (<= count mth))
1961 (string-match argpart string pos))
1962 (if (and beg (= pos (match-beginning 0)))
1963 ;; It's contiguous, part of the same arg.
1964 (setq pos (match-end 0)
1965 quotes (or quotes (match-beginning 1)))
1966 ;; It's a new separate arg.
1967 (if beg
1968 ;; Put the previous arg, if there was one, onto ARGS.
1969 (setq str (substring string beg pos)
1970 args (if quotes (cons str args)
1971 (nconc (term-delim-arg str) args))
1972 count (1+ count)))
1973 (setq quotes (match-beginning 1))
1974 (setq beg (match-beginning 0))
1975 (setq pos (match-end 0))))
1976 (if beg
1977 (setq str (substring string beg pos)
1978 args (if quotes (cons str args)
1979 (nconc (term-delim-arg str) args))
1980 count (1+ count)))
1981 (let ((n (or nth (1- count)))
1982 (m (if mth (1- (- count mth)) 0)))
1983 (mapconcat
1984 (function (lambda (a) a)) (nthcdr n (nreverse (nthcdr m args))) " "))))
1985 \f
1986 ;;;
1987 ;;; Input processing stuff [line mode]
1988 ;;;
1989
1990 (defun term-send-input ()
1991 "Send input to process.
1992 After the process output mark, sends all text from the process mark to
1993 point as input to the process. Before the process output mark, calls value
1994 of variable term-get-old-input to retrieve old input, copies it to the
1995 process mark, and sends it. A terminal newline is also inserted into the
1996 buffer and sent to the process. The list of function names contained in the
1997 value of `term-input-filter-functions' is called on the input before sending
1998 it. The input is entered into the input history ring, if the value of variable
1999 term-input-filter returns non-nil when called on the input.
2000
2001 Any history reference may be expanded depending on the value of the variable
2002 `term-input-autoexpand'. The list of function names contained in the value
2003 of `term-input-filter-functions' is called on the input before sending it.
2004 The input is entered into the input history ring, if the value of variable
2005 `term-input-filter' returns non-nil when called on the input.
2006
2007 If variable `term-eol-on-send' is non-nil, then point is moved to the
2008 end of line before sending the input.
2009
2010 The values of `term-get-old-input', `term-input-filter-functions', and
2011 `term-input-filter' are chosen according to the command interpreter running
2012 in the buffer. E.g.,
2013
2014 If the interpreter is the csh,
2015 term-get-old-input is the default: take the current line, discard any
2016 initial string matching regexp term-prompt-regexp.
2017 term-input-filter-functions monitors input for \"cd\", \"pushd\", and
2018 \"popd\" commands. When it sees one, it cd's the buffer.
2019 term-input-filter is the default: returns t if the input isn't all white
2020 space.
2021
2022 If the term is Lucid Common Lisp,
2023 term-get-old-input snarfs the sexp ending at point.
2024 term-input-filter-functions does nothing.
2025 term-input-filter returns nil if the input matches input-filter-regexp,
2026 which matches (1) all whitespace (2) :a, :c, etc.
2027
2028 Similarly for Soar, Scheme, etc."
2029 (interactive)
2030 ;; Note that the input string does not include its terminal newline.
2031 (let ((proc (get-buffer-process (current-buffer))))
2032 (if (not proc) (error "Current buffer has no process")
2033 (let* ((pmark (process-mark proc))
2034 (pmark-val (marker-position pmark))
2035 (input-is-new (>= (point) pmark-val))
2036 (intxt (if input-is-new
2037 (progn (if term-eol-on-send (end-of-line))
2038 (buffer-substring pmark (point)))
2039 (funcall term-get-old-input)))
2040 (input (if (not (eq term-input-autoexpand 'input))
2041 ;; Just whatever's already there
2042 intxt
2043 ;; Expand and leave it visible in buffer
2044 (term-replace-by-expanded-history t)
2045 (buffer-substring pmark (point))))
2046 (history (if (not (eq term-input-autoexpand 'history))
2047 input
2048 ;; This is messy 'cos ultimately the original
2049 ;; functions used do insertion, rather than return
2050 ;; strings. We have to expand, then insert back.
2051 (term-replace-by-expanded-history t)
2052 (let ((copy (buffer-substring pmark (point))))
2053 (delete-region pmark (point))
2054 (insert input)
2055 copy))))
2056 (when (term-pager-enabled)
2057 (save-excursion
2058 (goto-char (process-mark proc))
2059 (setq term-pager-count (term-current-row))))
2060 (when (and (funcall term-input-filter history)
2061 (or (null term-input-ignoredups)
2062 (not (ring-p term-input-ring))
2063 (ring-empty-p term-input-ring)
2064 (not (string-equal (ring-ref term-input-ring 0)
2065 history))))
2066 (ring-insert term-input-ring history))
2067 (let ((functions term-input-filter-functions))
2068 (while functions
2069 (funcall (car functions) (concat input "\n"))
2070 (setq functions (cdr functions))))
2071 (setq term-input-ring-index nil)
2072
2073 ;; Update the markers before we send the input
2074 ;; in case we get output amidst sending the input.
2075 (set-marker term-last-input-start pmark)
2076 (set-marker term-last-input-end (point))
2077 (when input-is-new
2078 ;; Set up to delete, because inferior should echo.
2079 (when (marker-buffer term-pending-delete-marker)
2080 (delete-region term-pending-delete-marker pmark))
2081 (set-marker term-pending-delete-marker pmark-val)
2082 (set-marker (process-mark proc) (point)))
2083 (goto-char pmark)
2084 (funcall term-input-sender proc input)))))
2085
2086 (defun term-get-old-input-default ()
2087 "Default for `term-get-old-input'.
2088 Take the current line, and discard any initial text matching
2089 `term-prompt-regexp'."
2090 (save-excursion
2091 (beginning-of-line)
2092 (term-skip-prompt)
2093 (let ((beg (point)))
2094 (end-of-line)
2095 (buffer-substring beg (point)))))
2096
2097 (defun term-copy-old-input ()
2098 "Insert after prompt old input at point as new input to be edited.
2099 Calls `term-get-old-input' to get old input."
2100 (interactive)
2101 (let ((input (funcall term-get-old-input))
2102 (process (get-buffer-process (current-buffer))))
2103 (if (not process)
2104 (error "Current buffer has no process")
2105 (goto-char (process-mark process))
2106 (insert input))))
2107
2108 (defun term-skip-prompt ()
2109 "Skip past the text matching regexp `term-prompt-regexp'.
2110 If this takes us past the end of the current line, don't skip at all."
2111 (let ((eol (save-excursion (end-of-line) (point))))
2112 (when (and (looking-at term-prompt-regexp)
2113 (<= (match-end 0) eol))
2114 (goto-char (match-end 0)))))
2115
2116
2117 (defun term-after-pmark-p ()
2118 "Is point after the process output marker?"
2119 ;; Since output could come into the buffer after we looked at the point
2120 ;; but before we looked at the process marker's value, we explicitly
2121 ;; serialise. This is just because I don't know whether or not Emacs
2122 ;; services input during execution of lisp commands.
2123 (let ((proc-pos (marker-position
2124 (process-mark (get-buffer-process (current-buffer))))))
2125 (<= proc-pos (point))))
2126
2127 (defun term-simple-send (proc string)
2128 "Default function for sending to PROC input STRING.
2129 This just sends STRING plus a newline. To override this,
2130 set the hook `term-input-sender'."
2131 (term-send-string proc string)
2132 (term-send-string proc "\n"))
2133
2134 (defun term-bol (arg)
2135 "Goes to the beginning of line, then skips past the prompt, if any.
2136 If a prefix argument is given (\\[universal-argument]), then no prompt skip
2137 -- go straight to column 0.
2138
2139 The prompt skip is done by skipping text matching the regular expression
2140 `term-prompt-regexp', a buffer local variable."
2141 (interactive "P")
2142 (beginning-of-line)
2143 (when (null arg) (term-skip-prompt)))
2144
2145 ;;; These two functions are for entering text you don't want echoed or
2146 ;;; saved -- typically passwords to ftp, telnet, or somesuch.
2147 ;;; Just enter m-x term-send-invisible and type in your line.
2148
2149 (defun term-read-noecho (prompt &optional stars)
2150 "Read a single line of text from user without echoing, and return it.
2151 Prompt with argument PROMPT, a string. Optional argument STARS causes
2152 input to be echoed with '*' characters on the prompt line. Input ends with
2153 RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. C-g aborts (if
2154 `inhibit-quit' is set because e.g. this function was called from a process
2155 filter and C-g is pressed, this function returns nil rather than a string).
2156
2157 Note that the keystrokes comprising the text can still be recovered
2158 \(temporarily) with \\[view-lossage]. This may be a security bug for some
2159 applications."
2160 (let ((ans "")
2161 (c 0)
2162 (echo-keystrokes 0)
2163 (cursor-in-echo-area t)
2164 (done nil))
2165 (while (not done)
2166 (if stars
2167 (message "%s%s" prompt (make-string (length ans) ?*))
2168 (message "%s" prompt))
2169 (setq c (read-char))
2170 (cond ((= c ?\C-g)
2171 ;; This function may get called from a process filter, where
2172 ;; inhibit-quit is set. In later versions of Emacs read-char
2173 ;; may clear quit-flag itself and return C-g. That would make
2174 ;; it impossible to quit this loop in a simple way, so
2175 ;; re-enable it here (for backward-compatibility the check for
2176 ;; quit-flag below would still be necessary, so this seems
2177 ;; like the simplest way to do things).
2178 (setq quit-flag t
2179 done t))
2180 ((or (= c ?\r) (= c ?\n) (= c ?\e))
2181 (setq done t))
2182 ((= c ?\C-u)
2183 (setq ans ""))
2184 ((and (/= c ?\b) (/= c ?\177))
2185 (setq ans (concat ans (char-to-string c))))
2186 ((> (length ans) 0)
2187 (setq ans (substring ans 0 -1)))))
2188 (if quit-flag
2189 ;; Emulate a true quit, except that we have to return a value.
2190 (prog1
2191 (setq quit-flag nil)
2192 (message "Quit")
2193 (beep t))
2194 (message "")
2195 ans)))
2196
2197 (defun term-send-invisible (str &optional proc)
2198 "Read a string without echoing.
2199 Then send it to the process running in the current buffer. A new-line
2200 is additionally sent. String is not saved on term input history list.
2201 Security bug: your string can still be temporarily recovered with
2202 \\[view-lossage]."
2203 (interactive "P") ; Defeat snooping via C-x esc
2204 (when (not (stringp str))
2205 (setq str (term-read-noecho "Non-echoed text: " t)))
2206 (when (not proc)
2207 (setq proc (get-buffer-process (current-buffer))))
2208 (if (not proc) (error "Current buffer has no process")
2209 (setq term-kill-echo-list (nconc term-kill-echo-list
2210 (cons str nil)))
2211 (term-send-string proc str)
2212 (term-send-string proc "\n")))
2213
2214 \f
2215 ;;; Low-level process communication
2216
2217 (defvar term-input-chunk-size 512
2218 "*Long inputs send to term processes are broken up into chunks of this size.
2219 If your process is choking on big inputs, try lowering the value.")
2220
2221 (defun term-send-string (proc str)
2222 "Send to PROC the contents of STR as input.
2223 This is equivalent to `process-send-string', except that long input strings
2224 are broken up into chunks of size `term-input-chunk-size'. Processes
2225 are given a chance to output between chunks. This can help prevent processes
2226 from hanging when you send them long inputs on some OS's."
2227 (let* ((len (length str))
2228 (i (min len term-input-chunk-size)))
2229 (process-send-string proc (substring str 0 i))
2230 (while (< i len)
2231 (let ((next-i (+ i term-input-chunk-size)))
2232 (accept-process-output)
2233 (process-send-string proc (substring str i (min len next-i)))
2234 (setq i next-i)))))
2235
2236 (defun term-send-region (proc start end)
2237 "Send to PROC the region delimited by START and END.
2238 This is a replacement for `process-send-region' that tries to keep
2239 your process from hanging on long inputs. See `term-send-string'."
2240 (term-send-string proc (buffer-substring start end)))
2241
2242 \f
2243 ;;; Random input hackage
2244
2245 (defun term-kill-output ()
2246 "Kill all output from interpreter since last input."
2247 (interactive)
2248 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
2249 (kill-region term-last-input-end pmark)
2250 (goto-char pmark)
2251 (insert "*** output flushed ***\n")
2252 (set-marker pmark (point))))
2253
2254 (defun term-show-output ()
2255 "Display start of this batch of interpreter output at top of window.
2256 Sets mark to the value of point when this command is run."
2257 (interactive)
2258 (goto-char term-last-input-end)
2259 (backward-char)
2260 (beginning-of-line)
2261 (set-window-start (selected-window) (point))
2262 (end-of-line))
2263
2264 (defun term-interrupt-subjob ()
2265 "Interrupt the current subjob."
2266 (interactive)
2267 (interrupt-process nil term-ptyp))
2268
2269 (defun term-kill-subjob ()
2270 "Send kill signal to the current subjob."
2271 (interactive)
2272 (kill-process nil term-ptyp))
2273
2274 (defun term-quit-subjob ()
2275 "Send quit signal to the current subjob."
2276 (interactive)
2277 (quit-process nil term-ptyp))
2278
2279 (defun term-stop-subjob ()
2280 "Stop the current subjob.
2281 WARNING: if there is no current subjob, you can end up suspending
2282 the top-level process running in the buffer. If you accidentally do
2283 this, use \\[term-continue-subjob] to resume the process. (This
2284 is not a problem with most shells, since they ignore this signal.)"
2285 (interactive)
2286 (stop-process nil term-ptyp))
2287
2288 (defun term-continue-subjob ()
2289 "Send CONT signal to process buffer's process group.
2290 Useful if you accidentally suspend the top-level process."
2291 (interactive)
2292 (continue-process nil term-ptyp))
2293
2294 (defun term-kill-input ()
2295 "Kill all text from last stuff output by interpreter to point."
2296 (interactive)
2297 (let* ((pmark (process-mark (get-buffer-process (current-buffer))))
2298 (p-pos (marker-position pmark)))
2299 (when (> (point) p-pos)
2300 (kill-region pmark (point)))))
2301
2302 (defun term-delchar-or-maybe-eof (arg)
2303 "Delete ARG characters forward, or send an EOF to process if at end of
2304 buffer."
2305 (interactive "p")
2306 (if (eobp)
2307 (process-send-eof)
2308 (delete-char arg)))
2309
2310 (defun term-send-eof ()
2311 "Send an EOF to the current buffer's process."
2312 (interactive)
2313 (process-send-eof))
2314
2315 (defun term-backward-matching-input (regexp arg)
2316 "Search backward through buffer for match for REGEXP.
2317 Matches are searched for on lines that match `term-prompt-regexp'.
2318 With prefix argument N, search for Nth previous match.
2319 If N is negative, find the next or Nth next match."
2320 (interactive (term-regexp-arg "Backward input matching (regexp): "))
2321 (let* ((re (concat term-prompt-regexp ".*" regexp))
2322 (pos (save-excursion (end-of-line (if (> arg 0) 0 1))
2323 (when (re-search-backward re nil t arg)
2324 (point)))))
2325 (if (null pos)
2326 (progn (message "Not found")
2327 (ding))
2328 (goto-char pos)
2329 (term-bol nil))))
2330
2331 (defun term-forward-matching-input (regexp arg)
2332 "Search forward through buffer for match for REGEXP.
2333 Matches are searched for on lines that match `term-prompt-regexp'.
2334 With prefix argument N, search for Nth following match.
2335 If N is negative, find the previous or Nth previous match."
2336 (interactive (term-regexp-arg "Forward input matching (regexp): "))
2337 (term-backward-matching-input regexp (- arg)))
2338
2339
2340 (defun term-next-prompt (n)
2341 "Move to end of Nth next prompt in the buffer.
2342 See `term-prompt-regexp'."
2343 (interactive "p")
2344 (let ((paragraph-start term-prompt-regexp))
2345 (end-of-line (if (> n 0) 1 0))
2346 (forward-paragraph n)
2347 (term-skip-prompt)))
2348
2349 (defun term-previous-prompt (n)
2350 "Move to end of Nth previous prompt in the buffer.
2351 See `term-prompt-regexp'."
2352 (interactive "p")
2353 (term-next-prompt (- n)))
2354 \f
2355 ;;; Support for source-file processing commands.
2356 ;;;============================================================================
2357 ;;; Many command-interpreters (e.g., Lisp, Scheme, Soar) have
2358 ;;; commands that process files of source text (e.g. loading or compiling
2359 ;;; files). So the corresponding process-in-a-buffer modes have commands
2360 ;;; for doing this (e.g., lisp-load-file). The functions below are useful
2361 ;;; for defining these commands.
2362 ;;;
2363 ;;; Alas, these guys don't do exactly the right thing for Lisp, Scheme
2364 ;;; and Soar, in that they don't know anything about file extensions.
2365 ;;; So the compile/load interface gets the wrong default occasionally.
2366 ;;; The load-file/compile-file default mechanism could be smarter -- it
2367 ;;; doesn't know about the relationship between filename extensions and
2368 ;;; whether the file is source or executable. If you compile foo.lisp
2369 ;;; with compile-file, then the next load-file should use foo.bin for
2370 ;;; the default, not foo.lisp. This is tricky to do right, particularly
2371 ;;; because the extension for executable files varies so much (.o, .bin,
2372 ;;; .lbin, .mo, .vo, .ao, ...).
2373
2374
2375 ;;; TERM-SOURCE-DEFAULT -- determines defaults for source-file processing
2376 ;;; commands.
2377 ;;;
2378 ;;; TERM-CHECK-SOURCE -- if FNAME is in a modified buffer, asks you if you
2379 ;;; want to save the buffer before issuing any process requests to the command
2380 ;;; interpreter.
2381 ;;;
2382 ;;; TERM-GET-SOURCE -- used by the source-file processing commands to prompt
2383 ;;; for the file to process.
2384
2385 ;;; (TERM-SOURCE-DEFAULT previous-dir/file source-modes)
2386 ;;;============================================================================
2387 ;;; This function computes the defaults for the load-file and compile-file
2388 ;;; commands for tea, soar, cmulisp, and cmuscheme modes.
2389 ;;;
2390 ;;; - PREVIOUS-DIR/FILE is a pair (directory . filename) from the last
2391 ;;; source-file processing command, or nil if there hasn't been one yet.
2392 ;;; - SOURCE-MODES is a list used to determine what buffers contain source
2393 ;;; files: if the major mode of the buffer is in SOURCE-MODES, it's source.
2394 ;;; Typically, (lisp-mode) or (scheme-mode).
2395 ;;;
2396 ;;; If the command is given while the cursor is inside a string, *and*
2397 ;;; the string is an existing filename, *and* the filename is not a directory,
2398 ;;; then the string is taken as default. This allows you to just position
2399 ;;; your cursor over a string that's a filename and have it taken as default.
2400 ;;;
2401 ;;; If the command is given in a file buffer whose major mode is in
2402 ;;; SOURCE-MODES, then the filename is the default file, and the
2403 ;;; file's directory is the default directory.
2404 ;;;
2405 ;;; If the buffer isn't a source file buffer (e.g., it's the process buffer),
2406 ;;; then the default directory & file are what was used in the last source-file
2407 ;;; processing command (i.e., PREVIOUS-DIR/FILE). If this is the first time
2408 ;;; the command has been run (PREVIOUS-DIR/FILE is nil), the default directory
2409 ;;; is the cwd, with no default file. (\"no default file\" = nil)
2410 ;;;
2411 ;;; SOURCE-REGEXP is typically going to be something like (tea-mode)
2412 ;;; for T programs, (lisp-mode) for Lisp programs, (soar-mode lisp-mode)
2413 ;;; for Soar programs, etc.
2414 ;;;
2415 ;;; The function returns a pair: (default-directory . default-file).
2416
2417 (defun term-source-default (previous-dir/file source-modes)
2418 (cond ((and buffer-file-name (memq major-mode source-modes))
2419 (cons (file-name-directory buffer-file-name)
2420 (file-name-nondirectory buffer-file-name)))
2421 (previous-dir/file)
2422 (t
2423 (cons default-directory nil))))
2424
2425
2426 ;;; (TERM-CHECK-SOURCE fname)
2427 ;;;============================================================================
2428 ;;; Prior to loading or compiling (or otherwise processing) a file (in the CMU
2429 ;;; process-in-a-buffer modes), this function can be called on the filename.
2430 ;;; If the file is loaded into a buffer, and the buffer is modified, the user
2431 ;;; is queried to see if he wants to save the buffer before proceeding with
2432 ;;; the load or compile.
2433
2434 (defun term-check-source (fname)
2435 (let ((buff (get-file-buffer fname)))
2436 (when (and buff
2437 (buffer-modified-p buff)
2438 (y-or-n-p (format "Save buffer %s first? "
2439 (buffer-name buff))))
2440 ;; save BUFF.
2441 (let ((old-buffer (current-buffer)))
2442 (set-buffer buff)
2443 (save-buffer)
2444 (set-buffer old-buffer)))))
2445
2446
2447 ;;; (TERM-GET-SOURCE prompt prev-dir/file source-modes mustmatch-p)
2448 ;;;============================================================================
2449 ;;; TERM-GET-SOURCE is used to prompt for filenames in command-interpreter
2450 ;;; commands that process source files (like loading or compiling a file).
2451 ;;; It prompts for the filename, provides a default, if there is one,
2452 ;;; and returns the result filename.
2453 ;;;
2454 ;;; See TERM-SOURCE-DEFAULT for more on determining defaults.
2455 ;;;
2456 ;;; PROMPT is the prompt string. PREV-DIR/FILE is the (directory . file) pair
2457 ;;; from the last source processing command. SOURCE-MODES is a list of major
2458 ;;; modes used to determine what file buffers contain source files. (These
2459 ;;; two arguments are used for determining defaults). If MUSTMATCH-P is true,
2460 ;;; then the filename reader will only accept a file that exists.
2461 ;;;
2462 ;;; A typical use:
2463 ;;; (interactive (term-get-source "Compile file: " prev-lisp-dir/file
2464 ;;; '(lisp-mode) t))
2465
2466 ;;; This is pretty stupid about strings. It decides we're in a string
2467 ;;; if there's a quote on both sides of point on the current line.
2468 (defun term-extract-string ()
2469 "Return string around `point' that starts the current line or nil."
2470 (save-excursion
2471 (let* ((point (point))
2472 (bol (progn (beginning-of-line) (point)))
2473 (eol (progn (end-of-line) (point)))
2474 (start (progn (goto-char point)
2475 (and (search-backward "\"" bol t)
2476 (1+ (point)))))
2477 (end (progn (goto-char point)
2478 (and (search-forward "\"" eol t)
2479 (1- (point))))))
2480 (and start end
2481 (buffer-substring start end)))))
2482
2483 (defun term-get-source (prompt prev-dir/file source-modes mustmatch-p)
2484 (let* ((def (term-source-default prev-dir/file source-modes))
2485 (stringfile (term-extract-string))
2486 (sfile-p (and stringfile
2487 (condition-case ()
2488 (file-exists-p stringfile)
2489 (error nil))
2490 (not (file-directory-p stringfile))))
2491 (defdir (if sfile-p (file-name-directory stringfile)
2492 (car def)))
2493 (deffile (if sfile-p (file-name-nondirectory stringfile)
2494 (cdr def)))
2495 (ans (read-file-name (if deffile (format "%s(default %s) "
2496 prompt deffile)
2497 prompt)
2498 defdir
2499 (concat defdir deffile)
2500 mustmatch-p)))
2501 (list (expand-file-name (substitute-in-file-name ans)))))
2502
2503 ;;; I am somewhat divided on this string-default feature. It seems
2504 ;;; to violate the principle-of-least-astonishment, in that it makes
2505 ;;; the default harder to predict, so you actually have to look and see
2506 ;;; what the default really is before choosing it. This can trip you up.
2507 ;;; On the other hand, it can be useful, I guess. I would appreciate feedback
2508 ;;; on this.
2509 ;;; -Olin
2510
2511 \f
2512 ;;; Simple process query facility.
2513 ;;; ===========================================================================
2514 ;;; This function is for commands that want to send a query to the process
2515 ;;; and show the response to the user. For example, a command to get the
2516 ;;; arglist for a Common Lisp function might send a "(arglist 'foo)" query
2517 ;;; to an inferior Common Lisp process.
2518 ;;;
2519 ;;; This simple facility just sends strings to the inferior process and pops
2520 ;;; up a window for the process buffer so you can see what the process
2521 ;;; responds with. We don't do anything fancy like try to intercept what the
2522 ;;; process responds with and put it in a pop-up window or on the message
2523 ;;; line. We just display the buffer. Low tech. Simple. Works good.
2524
2525 ;;; Send to the inferior process PROC the string STR. Pop-up but do not select
2526 ;;; a window for the inferior process so that its response can be seen.
2527 (defun term-proc-query (proc str)
2528 (let* ((proc-buf (process-buffer proc))
2529 (proc-mark (process-mark proc)))
2530 (display-buffer proc-buf)
2531 (set-buffer proc-buf) ; but it's not the selected *window*
2532 (let ((proc-win (get-buffer-window proc-buf))
2533 (proc-pt (marker-position proc-mark)))
2534 (term-send-string proc str) ; send the query
2535 (accept-process-output proc) ; wait for some output
2536 ;; Try to position the proc window so you can see the answer.
2537 ;; This is bogus code. If you delete the (sit-for 0), it breaks.
2538 ;; I don't know why. Wizards invited to improve it.
2539 (when (not (pos-visible-in-window-p proc-pt proc-win))
2540 (let ((opoint (window-point proc-win)))
2541 (set-window-point proc-win proc-mark) (sit-for 0)
2542 (if (not (pos-visible-in-window-p opoint proc-win))
2543 (push-mark opoint)
2544 (set-window-point proc-win opoint)))))))
2545 \f
2546 ;;; Returns the current column in the current screen line.
2547 ;;; Note: (current-column) yields column in buffer line.
2548
2549 (defun term-horizontal-column ()
2550 (- (term-current-column) (term-start-line-column)))
2551
2552 ;; Calls either vertical-motion or term-buffer-vertical-motion
2553 (defmacro term-vertical-motion (count)
2554 (list 'funcall 'term-vertical-motion count))
2555
2556 ;; An emulation of vertical-motion that is independent of having a window.
2557 ;; Instead, it uses the term-width variable as the logical window width.
2558
2559 (defun term-buffer-vertical-motion (count)
2560 (cond ((= count 0)
2561 (move-to-column (* term-width (/ (current-column) term-width)))
2562 0)
2563 ((> count 0)
2564 (let ((H)
2565 (todo (+ count (/ (current-column) term-width))))
2566 (end-of-line)
2567 ;; The loop iterates over buffer lines;
2568 ;; H is the number of screen lines in the current line, i.e.
2569 ;; the ceiling of dividing the buffer line width by term-width.
2570 (while (and (<= (setq H (max (/ (+ (current-column) term-width -1)
2571 term-width)
2572 1))
2573 todo)
2574 (not (eobp)))
2575 (setq todo (- todo H))
2576 (forward-char) ;; Move past the ?\n
2577 (end-of-line)) ;; and on to the end of the next line.
2578 (if (and (>= todo H) (> todo 0))
2579 (+ (- count todo) H -1) ;; Hit end of buffer.
2580 (move-to-column (* todo term-width))
2581 count)))
2582 (t ;; (< count 0) ;; Similar algorithm, but for upward motion.
2583 (let ((H)
2584 (todo (- count)))
2585 (while (and (<= (setq H (max (/ (+ (current-column) term-width -1)
2586 term-width)
2587 1))
2588 todo)
2589 (progn (beginning-of-line)
2590 (not (bobp))))
2591 (setq todo (- todo H))
2592 (backward-char)) ;; Move to end of previous line.
2593 (if (and (>= todo H) (> todo 0))
2594 (+ count todo (- 1 H)) ;; Hit beginning of buffer.
2595 (move-to-column (* (- H todo 1) term-width))
2596 count)))))
2597
2598 ;;; The term-start-line-column variable is used as a cache.
2599 (defun term-start-line-column ()
2600 (cond (term-start-line-column)
2601 ((let ((save-pos (point)))
2602 (term-vertical-motion 0)
2603 (setq term-start-line-column (current-column))
2604 (goto-char save-pos)
2605 term-start-line-column))))
2606
2607 ;;; Same as (current-column), but uses term-current-column as a cache.
2608 (defun term-current-column ()
2609 (cond (term-current-column)
2610 ((setq term-current-column (current-column)))))
2611
2612 ;;; Move DELTA column right (or left if delta < 0 limiting at column 0).
2613
2614 (defun term-move-columns (delta)
2615 (setq term-current-column (max 0 (+ (term-current-column) delta)))
2616 (let (point-at-eol)
2617 (save-excursion
2618 (end-of-line)
2619 (setq point-at-eol (point)))
2620 (move-to-column term-current-column t)
2621 ;; If move-to-column extends the current line it will use the face
2622 ;; from the last character on the line, set the face for the chars
2623 ;; to default.
2624 (when (> (point) point-at-eol)
2625 (put-text-property point-at-eol (point) 'face 'default))))
2626
2627 ;; Insert COUNT copies of CHAR in the default face.
2628 (defun term-insert-char (char count)
2629 (let ((old-point (point)))
2630 (insert-char char count)
2631 (put-text-property old-point (point) 'face 'default)))
2632
2633 (defun term-current-row ()
2634 (cond (term-current-row)
2635 ((setq term-current-row
2636 (save-restriction
2637 (save-excursion
2638 (narrow-to-region term-home-marker (point-max))
2639 (- (term-vertical-motion -9999))))))))
2640
2641 (defun term-adjust-current-row-cache (delta)
2642 (when term-current-row
2643 (setq term-current-row
2644 (max 0 (+ term-current-row delta)))))
2645
2646 (defun term-terminal-pos ()
2647 (save-excursion ; save-restriction
2648 (let ((save-col (term-current-column))
2649 x y)
2650 (term-vertical-motion 0)
2651 (setq x (- save-col (current-column)))
2652 (setq y (term-vertical-motion term-height))
2653 (cons x y))))
2654
2655 ;;;Function that handles term messages: code by rms ( and you can see the
2656 ;;;difference ;-) -mm
2657
2658 (defun term-handle-ansi-terminal-messages (message)
2659 ;; Is there a command here?
2660 (while (string-match "\eAnSiT.+\n" message)
2661 ;; Extract the command code and the argument.
2662 (let* ((start (match-beginning 0))
2663 (end (match-end 0))
2664 (command-code (aref message (+ start 6)))
2665 (argument
2666 (save-match-data
2667 (substring message
2668 (+ start 8)
2669 (string-match "\r?\n" message
2670 (+ start 8)))))
2671 ignore)
2672 ;; Delete this command from MESSAGE.
2673 (setq message (replace-match "" t t message))
2674
2675 ;; If we recognize the type of command, set the appropriate variable.
2676 (cond ((= command-code ?c)
2677 (setq term-ansi-at-dir argument))
2678 ((= command-code ?h)
2679 (setq term-ansi-at-host argument))
2680 ((= command-code ?u)
2681 (setq term-ansi-at-user argument))
2682 ;; Otherwise ignore this one.
2683 (t
2684 (setq ignore t)))
2685
2686 ;; Update default-directory based on the changes this command made.
2687 (if ignore
2688 nil
2689 (setq default-directory
2690 (file-name-as-directory
2691 (if (and (string= term-ansi-at-host (system-name))
2692 (string= term-ansi-at-user (user-real-login-name)))
2693 (expand-file-name term-ansi-at-dir)
2694 (if (string= term-ansi-at-user (user-real-login-name))
2695 (concat "/" term-ansi-at-host ":" term-ansi-at-dir)
2696 (concat "/" term-ansi-at-user "@" term-ansi-at-host ":"
2697 term-ansi-at-dir)))))
2698
2699 ;; I'm not sure this is necessary,
2700 ;; but it's best to be on the safe side.
2701 (if (string= term-ansi-at-host (system-name))
2702 (progn
2703 (setq ange-ftp-default-user term-ansi-at-save-user)
2704 (setq ange-ftp-default-password term-ansi-at-save-pwd)
2705 (setq ange-ftp-generate-anonymous-password term-ansi-at-save-anon))
2706 (setq term-ansi-at-save-user ange-ftp-default-user)
2707 (setq term-ansi-at-save-pwd ange-ftp-default-password)
2708 (setq term-ansi-at-save-anon ange-ftp-generate-anonymous-password)
2709 (setq ange-ftp-default-user nil)
2710 (setq ange-ftp-default-password nil)
2711 (setq ange-ftp-generate-anonymous-password nil)))))
2712 message)
2713
2714
2715 ;;; Terminal emulation
2716 ;;; This is the standard process filter for term buffers.
2717 ;;; It emulates (most of the features of) a VT100/ANSI-style terminal.
2718
2719 (defun term-emulate-terminal (proc str)
2720 (with-current-buffer (process-buffer proc)
2721 (let* ((i 0) char funny count save-point save-marker old-point temp win
2722 (buffer-undo-list t)
2723 (selected (selected-window))
2724 last-win
2725 handled-ansi-message
2726 (str-length (length str)))
2727 (save-selected-window
2728
2729 ;; Let's handle the messages. -mm
2730
2731 (let* ((newstr (term-handle-ansi-terminal-messages str)))
2732 (when (not (eq str newstr))
2733 (setq handled-ansi-message t
2734 str newstr)))
2735 (setq str-length (length str))
2736
2737 (when (marker-buffer term-pending-delete-marker)
2738 ;; Delete text following term-pending-delete-marker.
2739 (delete-region term-pending-delete-marker (process-mark proc))
2740 (set-marker term-pending-delete-marker nil))
2741
2742 (if (eq (window-buffer) (current-buffer))
2743 (progn
2744 (setq term-vertical-motion (symbol-function 'vertical-motion))
2745 (term-check-size proc))
2746 (setq term-vertical-motion
2747 (symbol-function 'term-buffer-vertical-motion)))
2748
2749 (setq save-marker (copy-marker (process-mark proc)))
2750
2751 (when (/= (point) (process-mark proc))
2752 (setq save-point (point-marker))
2753 (goto-char (process-mark proc)))
2754
2755 (save-restriction
2756 ;; If the buffer is in line mode, and there is a partial
2757 ;; input line, save the line (by narrowing to leave it
2758 ;; outside the restriction ) until we're done with output.
2759 (when (and (> (point-max) (process-mark proc))
2760 (term-in-line-mode))
2761 (narrow-to-region (point-min) (process-mark proc)))
2762
2763 (when term-log-buffer
2764 (princ str term-log-buffer))
2765 (cond ((eq term-terminal-state 4) ;; Have saved pending output.
2766 (setq str (concat term-terminal-parameter str))
2767 (setq term-terminal-parameter nil)
2768 (setq str-length (length str))
2769 (setq term-terminal-state 0)))
2770
2771 (while (< i str-length)
2772 (setq char (aref str i))
2773 (cond ((< term-terminal-state 2)
2774 ;; Look for prefix of regular chars
2775 (setq funny
2776 (string-match "[\r\n\000\007\033\t\b\032\016\017]"
2777 str i))
2778 (when (not funny) (setq funny str-length))
2779 (cond ((> funny i)
2780 (cond ((eq term-terminal-state 1)
2781 ;; We are in state 1, we need to wrap
2782 ;; around. Go to the beginning of
2783 ;; the next line and switch to state
2784 ;; 0.
2785 (term-down 1 t)
2786 (term-move-columns (- (term-current-column)))
2787 (setq term-terminal-state 0)))
2788 (setq count (- funny i))
2789 (setq temp (- (+ (term-horizontal-column) count)
2790 term-width))
2791 (cond ((<= temp 0)) ;; All count chars fit in line.
2792 ((> count temp) ;; Some chars fit.
2793 ;; This iteration, handle only what fits.
2794 (setq count (- count temp))
2795 (setq temp 0)
2796 (setq funny (+ count i)))
2797 ((or (not (or term-pager-count
2798 term-scroll-with-delete))
2799 (> (term-handle-scroll 1) 0))
2800 (term-adjust-current-row-cache 1)
2801 (setq count (min count term-width))
2802 (setq funny (+ count i))
2803 (setq term-start-line-column
2804 term-current-column))
2805 (t ;; Doing PAGER processing.
2806 (setq count 0 funny i)
2807 (setq term-current-column nil)
2808 (setq term-start-line-column nil)))
2809 (setq old-point (point))
2810
2811 ;; Insert a string, check how many columns
2812 ;; we moved, then delete that many columns
2813 ;; following point if not eob nor insert-mode.
2814 (let ((old-column (current-column))
2815 columns pos)
2816 (insert (decode-coding-string (substring str i funny) locale-coding-system))
2817 (setq term-current-column (current-column)
2818 columns (- term-current-column old-column))
2819 (when (not (or (eobp) term-insert-mode))
2820 (setq pos (point))
2821 (term-move-columns columns)
2822 (delete-region pos (point)))
2823 ;; In insert mode if the current line
2824 ;; has become too long it needs to be
2825 ;; chopped off.
2826 (when term-insert-mode
2827 (setq pos (point))
2828 (end-of-line)
2829 (when (> (current-column) term-width)
2830 (delete-region (- (point) (- (current-column) term-width))
2831 (point)))
2832 (goto-char pos)))
2833 (setq term-current-column nil)
2834
2835 (put-text-property old-point (point)
2836 'face term-current-face)
2837 ;; If the last char was written in last column,
2838 ;; back up one column, but remember we did so.
2839 ;; Thus we emulate xterm/vt100-style line-wrapping.
2840 (cond ((eq temp 0)
2841 (term-move-columns -1)
2842 (setq term-terminal-state 1)))
2843 (setq i (1- funny)))
2844 ((and (setq term-terminal-state 0)
2845 (eq char ?\^I)) ; TAB (terminfo: ht)
2846 (setq count (term-current-column))
2847 ;; The line cannot exceed term-width. TAB at
2848 ;; the end of a line should not cause wrapping.
2849 (setq count (min term-width
2850 (+ count 8 (- (mod count 8)))))
2851 (if (> term-width count)
2852 (progn
2853 (term-move-columns
2854 (- count (term-current-column)))
2855 (setq term-current-column count))
2856 (when (> term-width (term-current-column))
2857 (term-move-columns
2858 (1- (- term-width (term-current-column)))))
2859 (when (= term-width (term-current-column))
2860 (term-move-columns -1))))
2861 ((eq char ?\r) ;; (terminfo: cr)
2862 (term-vertical-motion 0)
2863 (setq term-current-column term-start-line-column))
2864 ((eq char ?\n) ;; (terminfo: cud1, ind)
2865 (unless (and term-kill-echo-list
2866 (term-check-kill-echo-list))
2867 (term-down 1 t)))
2868 ((eq char ?\b) ;; (terminfo: cub1)
2869 (term-move-columns -1))
2870 ((eq char ?\033) ; Escape
2871 (setq term-terminal-state 2))
2872 ((eq char 0)) ; NUL: Do nothing
2873 ((eq char ?\016)) ; Shift Out - ignored
2874 ((eq char ?\017)) ; Shift In - ignored
2875 ((eq char ?\^G) ;; (terminfo: bel)
2876 (beep t))
2877 ((and (eq char ?\032)
2878 (not handled-ansi-message))
2879 (let ((end (string-match "\r?$" str i)))
2880 (if end
2881 (funcall term-command-hook
2882 (prog1 (substring str (1+ i) end)
2883 (setq i (match-end 0))))
2884 (setq term-terminal-parameter (substring str i))
2885 (setq term-terminal-state 4)
2886 (setq i str-length))))
2887 (t ; insert char FIXME: Should never happen
2888 (term-move-columns 1)
2889 (backward-delete-char 1)
2890 (insert char))))
2891 ((eq term-terminal-state 2) ; Seen Esc
2892 (cond ((eq char ?\133) ;; ?\133 = ?[
2893
2894 ;;; Some modifications to cope with multiple settings like ^[[01;32;43m -mm
2895 ;;; Note that now the init value of term-terminal-previous-parameter has
2896 ;;; been changed to -1
2897
2898 (setq term-terminal-parameter 0)
2899 (setq term-terminal-previous-parameter -1)
2900 (setq term-terminal-previous-parameter-2 -1)
2901 (setq term-terminal-previous-parameter-3 -1)
2902 (setq term-terminal-previous-parameter-4 -1)
2903 (setq term-terminal-more-parameters 0)
2904 (setq term-terminal-state 3))
2905 ((eq char ?D) ;; scroll forward
2906 (term-handle-deferred-scroll)
2907 (term-down 1 t)
2908 (setq term-terminal-state 0))
2909 ;; ((eq char ?E) ;; (terminfo: nw), not used for
2910 ;; ;; now, but this is a working
2911 ;; ;; implementation
2912 ;; (term-down 1)
2913 ;; (term-goto term-current-row 0)
2914 ;; (setq term-terminal-state 0))
2915 ((eq char ?M) ;; scroll reversed (terminfo: ri)
2916 (if (or (< (term-current-row) term-scroll-start)
2917 (>= (1- (term-current-row))
2918 term-scroll-start))
2919 ;; Scrolling up will not move outside
2920 ;; the scroll region.
2921 (term-down -1)
2922 ;; Scrolling the scroll region is needed.
2923 (term-down -1 t))
2924 (setq term-terminal-state 0))
2925 ((eq char ?7) ;; Save cursor (terminfo: sc)
2926 (term-handle-deferred-scroll)
2927 (setq term-saved-cursor
2928 (list (term-current-row)
2929 (term-horizontal-column)
2930 term-ansi-current-bg-color
2931 term-ansi-current-bold
2932 term-ansi-current-color
2933 term-ansi-current-invisible
2934 term-ansi-current-reverse
2935 term-ansi-current-underline
2936 term-current-face)
2937 )
2938 (setq term-terminal-state 0))
2939 ((eq char ?8) ;; Restore cursor (terminfo: rc)
2940 (when term-saved-cursor
2941 (term-goto (nth 0 term-saved-cursor)
2942 (nth 1 term-saved-cursor))
2943 (setq term-ansi-current-bg-color
2944 (nth 2 term-saved-cursor)
2945 term-ansi-current-bold
2946 (nth 3 term-saved-cursor)
2947 term-ansi-current-color
2948 (nth 4 term-saved-cursor)
2949 term-ansi-current-invisible
2950 (nth 5 term-saved-cursor)
2951 term-ansi-current-reverse
2952 (nth 6 term-saved-cursor)
2953 term-ansi-current-underline
2954 (nth 7 term-saved-cursor)
2955 term-current-face
2956 (nth 8 term-saved-cursor)))
2957 (setq term-terminal-state 0))
2958 ((eq char ?c) ;; \Ec - Reset (terminfo: rs1)
2959 ;; This is used by the "clear" program.
2960 (setq term-terminal-state 0)
2961 (term-reset-terminal))
2962 ;; The \E#8 reset sequence for xterm. We
2963 ;; probably don't need to handle it, but this
2964 ;; is the code to parse it.
2965 ;; ((eq char ?#)
2966 ;; (when (eq (aref str (1+ i)) ?8)
2967 ;; (setq i (1+ i))
2968 ;; (setq term-scroll-start 0)
2969 ;; (setq term-scroll-end term-height)
2970 ;; (setq term-terminal-state 0)))
2971 ((setq term-terminal-state 0))))
2972 ((eq term-terminal-state 3) ; Seen Esc [
2973 (cond ((and (>= char ?0) (<= char ?9))
2974 (setq term-terminal-parameter
2975 (+ (* 10 term-terminal-parameter) (- char ?0))))
2976 ((eq char ?\;)
2977 ;;; Some modifications to cope with multiple settings like ^[[01;32;43m -mm
2978 (setq term-terminal-more-parameters 1)
2979 (setq term-terminal-previous-parameter-4
2980 term-terminal-previous-parameter-3)
2981 (setq term-terminal-previous-parameter-3
2982 term-terminal-previous-parameter-2)
2983 (setq term-terminal-previous-parameter-2
2984 term-terminal-previous-parameter)
2985 (setq term-terminal-previous-parameter
2986 term-terminal-parameter)
2987 (setq term-terminal-parameter 0))
2988 ((eq char ??)) ; Ignore ?
2989 (t
2990 (term-handle-ansi-escape proc char)
2991 (setq term-terminal-more-parameters 0)
2992 (setq term-terminal-previous-parameter-4 -1)
2993 (setq term-terminal-previous-parameter-3 -1)
2994 (setq term-terminal-previous-parameter-2 -1)
2995 (setq term-terminal-previous-parameter -1)
2996 (setq term-terminal-state 0)))))
2997 (when (term-handling-pager)
2998 ;; Finish stuff to get ready to handle PAGER.
2999 (if (> (% (current-column) term-width) 0)
3000 (setq term-terminal-parameter
3001 (substring str i))
3002 ;; We're at column 0. Goto end of buffer; to compensate,
3003 ;; prepend a ?\r for later. This looks more consistent.
3004 (if (zerop i)
3005 (setq term-terminal-parameter
3006 (concat "\r" (substring str i)))
3007 (setq term-terminal-parameter (substring str (1- i)))
3008 (aset term-terminal-parameter 0 ?\r))
3009 (goto-char (point-max)))
3010 (setq term-terminal-state 4)
3011 (make-local-variable 'term-pager-old-filter)
3012 (setq term-pager-old-filter (process-filter proc))
3013 (set-process-filter proc term-pager-filter)
3014 (setq i str-length))
3015 (setq i (1+ i))))
3016
3017 (when (>= (term-current-row) term-height)
3018 (term-handle-deferred-scroll))
3019
3020 (set-marker (process-mark proc) (point))
3021 (when save-point
3022 (goto-char save-point)
3023 (set-marker save-point nil))
3024
3025 ;; Check for a pending filename-and-line number to display.
3026 ;; We do this before scrolling, because we might create a new window.
3027 (when (and term-pending-frame
3028 (eq (window-buffer selected) (current-buffer)))
3029 (term-display-line (car term-pending-frame)
3030 (cdr term-pending-frame))
3031 (setq term-pending-frame nil)
3032 ;; We have created a new window, so check the window size.
3033 (term-check-size proc))
3034
3035 ;; Scroll each window displaying the buffer but (by default)
3036 ;; only if the point matches the process-mark we started with.
3037 (setq win selected)
3038 ;; Avoid infinite loop in strange case where minibuffer window
3039 ;; is selected but not active.
3040 (while (window-minibuffer-p win)
3041 (setq win (next-window win nil t)))
3042 (setq last-win win)
3043 (while (progn
3044 (setq win (next-window win nil t))
3045 (when (eq (window-buffer win) (process-buffer proc))
3046 (let ((scroll term-scroll-to-bottom-on-output))
3047 (select-window win)
3048 (when (or (= (point) save-marker)
3049 (eq scroll t) (eq scroll 'all)
3050 ;; Maybe user wants point to jump to the end.
3051 (and (eq selected win)
3052 (or (eq scroll 'this) (not save-point)))
3053 (and (eq scroll 'others)
3054 (not (eq selected win))))
3055 (goto-char term-home-marker)
3056 (recenter 0)
3057 (goto-char (process-mark proc))
3058 (if (not (pos-visible-in-window-p (point) win))
3059 (recenter -1)))
3060 ;; Optionally scroll so that the text
3061 ;; ends at the bottom of the window.
3062 (when (and term-scroll-show-maximum-output
3063 (>= (point) (process-mark proc)))
3064 (save-excursion
3065 (goto-char (point-max))
3066 (recenter -1)))))
3067 (not (eq win last-win))))
3068
3069 ;;; Stolen from comint.el and adapted -mm
3070 (when (> term-buffer-maximum-size 0)
3071 (save-excursion
3072 (goto-char (process-mark (get-buffer-process (current-buffer))))
3073 (forward-line (- term-buffer-maximum-size))
3074 (beginning-of-line)
3075 (delete-region (point-min) (point))))
3076 (set-marker save-marker nil)))
3077 ;; This might be expensive, but we need it to handle something
3078 ;; like `sleep 5 | less -c' in more-or-less real time.
3079 (when (get-buffer-window (current-buffer))
3080 (redisplay))))
3081
3082 (defun term-handle-deferred-scroll ()
3083 (let ((count (- (term-current-row) term-height)))
3084 (when (>= count 0)
3085 (save-excursion
3086 (goto-char term-home-marker)
3087 (term-vertical-motion (1+ count))
3088 (set-marker term-home-marker (point))
3089 (setq term-current-row (1- term-height))))))
3090
3091 ;;; Reset the terminal, delete all the content and set the face to the
3092 ;;; default one.
3093 (defun term-reset-terminal ()
3094 (erase-buffer)
3095 (setq term-current-row 0)
3096 (setq term-current-column 1)
3097 (setq term-scroll-start 0)
3098 (setq term-scroll-end term-height)
3099 (setq term-insert-mode nil)
3100 (setq term-current-face (list :background term-default-bg-color
3101 :foreground term-default-fg-color))
3102 (setq term-ansi-current-underline nil)
3103 (setq term-ansi-current-bold nil)
3104 (setq term-ansi-current-reverse nil)
3105 (setq term-ansi-current-color 0)
3106 (setq term-ansi-current-invisible nil)
3107 (setq term-ansi-face-already-done nil)
3108 (setq term-ansi-current-bg-color 0))
3109
3110 ;;; New function to deal with ansi colorized output, as you can see you can
3111 ;;; have any bold/underline/fg/bg/reverse combination. -mm
3112
3113 (defun term-handle-colors-array (parameter)
3114 (cond
3115
3116 ;;; Bold (terminfo: bold)
3117 ((eq parameter 1)
3118 (setq term-ansi-current-bold t))
3119
3120 ;;; Underline
3121 ((eq parameter 4)
3122 (setq term-ansi-current-underline t))
3123
3124 ;;; Blink (unsupported by Emacs), will be translated to bold.
3125 ;;; This may change in the future though.
3126 ((eq parameter 5)
3127 (setq term-ansi-current-bold t))
3128
3129 ;;; Reverse (terminfo: smso)
3130 ((eq parameter 7)
3131 (setq term-ansi-current-reverse t))
3132
3133 ;;; Invisible
3134 ((eq parameter 8)
3135 (setq term-ansi-current-invisible t))
3136
3137 ;;; Reset underline (terminfo: rmul)
3138 ((eq parameter 24)
3139 (setq term-ansi-current-underline nil))
3140
3141 ;;; Reset reverse (terminfo: rmso)
3142 ((eq parameter 27)
3143 (setq term-ansi-current-reverse nil))
3144
3145 ;;; Foreground
3146 ((and (>= parameter 30) (<= parameter 37))
3147 (setq term-ansi-current-color (- parameter 29)))
3148
3149 ;;; Reset foreground
3150 ((eq parameter 39)
3151 (setq term-ansi-current-color 0))
3152
3153 ;;; Background
3154 ((and (>= parameter 40) (<= parameter 47))
3155 (setq term-ansi-current-bg-color (- parameter 39)))
3156
3157 ;;; Reset background
3158 ((eq parameter 49)
3159 (setq term-ansi-current-bg-color 0))
3160
3161 ;;; 0 (Reset) or unknown (reset anyway)
3162 (t
3163 (setq term-current-face (list :background term-default-bg-color
3164 :foreground term-default-fg-color))
3165 (setq term-ansi-current-underline nil)
3166 (setq term-ansi-current-bold nil)
3167 (setq term-ansi-current-reverse nil)
3168 (setq term-ansi-current-color 0)
3169 (setq term-ansi-current-invisible nil)
3170 (setq term-ansi-face-already-done t)
3171 (setq term-ansi-current-bg-color 0)))
3172
3173 ; (message "Debug: U-%d R-%d B-%d I-%d D-%d F-%d B-%d"
3174 ; term-ansi-current-underline
3175 ; term-ansi-current-reverse
3176 ; term-ansi-current-bold
3177 ; term-ansi-current-invisible
3178 ; term-ansi-face-already-done
3179 ; term-ansi-current-color
3180 ; term-ansi-current-bg-color)
3181
3182
3183 (unless term-ansi-face-already-done
3184 (if term-ansi-current-reverse
3185 (if term-ansi-current-invisible
3186 (setq term-current-face
3187 (if (= term-ansi-current-color 0)
3188 (list :background
3189 term-default-fg-color
3190 :foreground
3191 term-default-fg-color)
3192 (list :background
3193 (elt ansi-term-color-vector term-ansi-current-color)
3194 :foreground
3195 (elt ansi-term-color-vector term-ansi-current-color)))
3196 ;; No need to bother with anything else if it's invisible
3197 )
3198 (setq term-current-face
3199 (list :background
3200 (if (= term-ansi-current-color 0)
3201 term-default-fg-color
3202 (elt ansi-term-color-vector term-ansi-current-color))
3203 :foreground
3204 (if (= term-ansi-current-bg-color 0)
3205 term-default-bg-color
3206 (elt ansi-term-color-vector term-ansi-current-bg-color))))
3207 (when term-ansi-current-bold
3208 (setq term-current-face
3209 (append '(:weight bold) term-current-face)))
3210 (when term-ansi-current-underline
3211 (setq term-current-face
3212 (append '(:underline t) term-current-face))))
3213 (if term-ansi-current-invisible
3214 (setq term-current-face
3215 (if (= term-ansi-current-bg-color 0)
3216 (list :background
3217 term-default-bg-color
3218 :foreground
3219 term-default-bg-color)
3220 (list :foreground
3221 (elt ansi-term-color-vector term-ansi-current-bg-color)
3222 :background
3223 (elt ansi-term-color-vector term-ansi-current-bg-color)))
3224 ;; No need to bother with anything else if it's invisible
3225 )
3226 (setq term-current-face
3227 (list :foreground
3228 (if (= term-ansi-current-color 0)
3229 term-default-fg-color
3230 (elt ansi-term-color-vector term-ansi-current-color))
3231 :background
3232 (if (= term-ansi-current-bg-color 0)
3233 term-default-bg-color
3234 (elt ansi-term-color-vector term-ansi-current-bg-color))))
3235 (when term-ansi-current-bold
3236 (setq term-current-face
3237 (append '(:weight bold) term-current-face)))
3238 (when term-ansi-current-underline
3239 (setq term-current-face
3240 (append '(:underline t) term-current-face))))))
3241
3242 ;;; (message "Debug %S" term-current-face)
3243 (setq term-ansi-face-already-done nil))
3244
3245
3246 ;;; Handle a character assuming (eq terminal-state 2) -
3247 ;;; i.e. we have previously seen Escape followed by ?[.
3248
3249 (defun term-handle-ansi-escape (proc char)
3250 (cond
3251 ((or (eq char ?H) ;; cursor motion (terminfo: cup,home)
3252 ;; (eq char ?f) ;; xterm seems to handle this sequence too, not
3253 ;; needed for now
3254 )
3255 (when (<= term-terminal-parameter 0)
3256 (setq term-terminal-parameter 1))
3257 (when (<= term-terminal-previous-parameter 0)
3258 (setq term-terminal-previous-parameter 1))
3259 (when (> term-terminal-previous-parameter term-height)
3260 (setq term-terminal-previous-parameter term-height))
3261 (when (> term-terminal-parameter term-width)
3262 (setq term-terminal-parameter term-width))
3263 (term-goto
3264 (1- term-terminal-previous-parameter)
3265 (1- term-terminal-parameter)))
3266 ;; \E[A - cursor up (terminfo: cuu, cuu1)
3267 ((eq char ?A)
3268 (term-handle-deferred-scroll)
3269 (let ((tcr (term-current-row)))
3270 (term-down
3271 (if (< (- tcr term-terminal-parameter) term-scroll-start)
3272 ;; If the amount to move is before scroll start, move
3273 ;; to scroll start.
3274 (- term-scroll-start tcr)
3275 (if (>= term-terminal-parameter tcr)
3276 (- tcr)
3277 (- (max 1 term-terminal-parameter)))) t)))
3278 ;; \E[B - cursor down (terminfo: cud)
3279 ((eq char ?B)
3280 (let ((tcr (term-current-row)))
3281 (unless (= tcr (1- term-scroll-end))
3282 (term-down
3283 (if (> (+ tcr term-terminal-parameter) term-scroll-end)
3284 (- term-scroll-end 1 tcr)
3285 (max 1 term-terminal-parameter)) t))))
3286 ;; \E[C - cursor right (terminfo: cuf, cuf1)
3287 ((eq char ?C)
3288 (term-move-columns
3289 (max 1
3290 (if (>= (+ term-terminal-parameter (term-current-column)) term-width)
3291 (- term-width (term-current-column) 1)
3292 term-terminal-parameter))))
3293 ;; \E[D - cursor left (terminfo: cub)
3294 ((eq char ?D)
3295 (term-move-columns (- (max 1 term-terminal-parameter))))
3296 ;; \E[J - clear to end of screen (terminfo: ed, clear)
3297 ((eq char ?J)
3298 (term-erase-in-display term-terminal-parameter))
3299 ;; \E[K - clear to end of line (terminfo: el, el1)
3300 ((eq char ?K)
3301 (term-erase-in-line term-terminal-parameter))
3302 ;; \E[L - insert lines (terminfo: il, il1)
3303 ((eq char ?L)
3304 (term-insert-lines (max 1 term-terminal-parameter)))
3305 ;; \E[M - delete lines (terminfo: dl, dl1)
3306 ((eq char ?M)
3307 (term-delete-lines (max 1 term-terminal-parameter)))
3308 ;; \E[P - delete chars (terminfo: dch, dch1)
3309 ((eq char ?P)
3310 (term-delete-chars (max 1 term-terminal-parameter)))
3311 ;; \E[@ - insert spaces (terminfo: ich)
3312 ((eq char ?@)
3313 (term-insert-spaces (max 1 term-terminal-parameter)))
3314 ;; \E[?h - DEC Private Mode Set
3315 ((eq char ?h)
3316 (cond ((eq term-terminal-parameter 4) ;; (terminfo: smir)
3317 (setq term-insert-mode t))
3318 ;; ((eq term-terminal-parameter 47) ;; (terminfo: smcup)
3319 ;; (term-switch-to-alternate-sub-buffer t))
3320 ))
3321 ;; \E[?l - DEC Private Mode Reset
3322 ((eq char ?l)
3323 (cond ((eq term-terminal-parameter 4) ;; (terminfo: rmir)
3324 (setq term-insert-mode nil))
3325 ;; ((eq term-terminal-parameter 47) ;; (terminfo: rmcup)
3326 ;; (term-switch-to-alternate-sub-buffer nil))
3327 ))
3328
3329 ;;; Modified to allow ansi coloring -mm
3330 ;; \E[m - Set/reset modes, set bg/fg
3331 ;;(terminfo: smso,rmso,smul,rmul,rev,bold,sgr0,invis,op,setab,setaf)
3332 ((eq char ?m)
3333 (when (= term-terminal-more-parameters 1)
3334 (when (>= term-terminal-previous-parameter-4 0)
3335 (term-handle-colors-array term-terminal-previous-parameter-4))
3336 (when (>= term-terminal-previous-parameter-3 0)
3337 (term-handle-colors-array term-terminal-previous-parameter-3))
3338 (when (>= term-terminal-previous-parameter-2 0)
3339 (term-handle-colors-array term-terminal-previous-parameter-2))
3340 (term-handle-colors-array term-terminal-previous-parameter))
3341 (term-handle-colors-array term-terminal-parameter))
3342
3343 ;; \E[6n - Report cursor position
3344 ((eq char ?n)
3345 (term-handle-deferred-scroll)
3346 (process-send-string proc
3347 (format "\e[%s;%sR"
3348 (1+ (term-current-row))
3349 (1+ (term-horizontal-column)))))
3350 ;; \E[r - Set scrolling region (terminfo: csr)
3351 ((eq char ?r)
3352 (term-set-scroll-region
3353 (1- term-terminal-previous-parameter)
3354 (1- term-terminal-parameter)))
3355 (t)))
3356
3357 (defun term-set-scroll-region (top bottom)
3358 "Set scrolling region.
3359 TOP is the top-most line (inclusive) of the new scrolling region,
3360 while BOTTOM is the line following the new scrolling region (e.g. exclusive).
3361 The top-most line is line 0."
3362 (setq term-scroll-start
3363 (if (or (< top 0) (>= top term-height))
3364 0
3365 top))
3366 (setq term-scroll-end
3367 (if (or (<= bottom term-scroll-start) (> bottom term-height))
3368 term-height
3369 bottom))
3370 (setq term-scroll-with-delete
3371 (or (term-using-alternate-sub-buffer)
3372 (not (and (= term-scroll-start 0)
3373 (= term-scroll-end term-height)))))
3374 (term-move-columns (- (term-current-column)))
3375 (term-goto 0 0))
3376
3377 ;; (defun term-switch-to-alternate-sub-buffer (set)
3378 ;; ;; If asked to switch to (from) the alternate sub-buffer, and already (not)
3379 ;; ;; using it, do nothing. This test is needed for some programs (including
3380 ;; ;; Emacs) that emit the ti termcap string twice, for unknown reason.
3381 ;; (term-handle-deferred-scroll)
3382 ;; (if (eq set (not (term-using-alternate-sub-buffer)))
3383 ;; (let ((row (term-current-row))
3384 ;; (col (term-horizontal-column)))
3385 ;; (cond (set
3386 ;; (goto-char (point-max))
3387 ;; (if (not (eq (preceding-char) ?\n))
3388 ;; (term-insert-char ?\n 1))
3389 ;; (setq term-scroll-with-delete t)
3390 ;; (setq term-saved-home-marker (copy-marker term-home-marker))
3391 ;; (set-marker term-home-marker (point)))
3392 ;; (t
3393 ;; (setq term-scroll-with-delete
3394 ;; (not (and (= term-scroll-start 0)
3395 ;; (= term-scroll-end term-height))))
3396 ;; (set-marker term-home-marker term-saved-home-marker)
3397 ;; (set-marker term-saved-home-marker nil)
3398 ;; (setq term-saved-home-marker nil)
3399 ;; (goto-char term-home-marker)))
3400 ;; (setq term-current-column nil)
3401 ;; (setq term-current-row 0)
3402 ;; (term-goto row col))))
3403
3404 ;; Default value for the symbol term-command-hook.
3405
3406 (defun term-command-hook (string)
3407 (cond ((equal string "")
3408 t)
3409 ((= (aref string 0) ?\032)
3410 ;; gdb (when invoked with -fullname) prints:
3411 ;; \032\032FULLFILENAME:LINENUMBER:CHARPOS:BEG_OR_MIDDLE:PC\n
3412 (let* ((first-colon (string-match ":" string 1))
3413 (second-colon
3414 (string-match ":" string (1+ first-colon)))
3415 (filename (substring string 1 first-colon))
3416 (fileline (string-to-number
3417 (substring string (1+ first-colon) second-colon))))
3418 (setq term-pending-frame (cons filename fileline))))
3419 ((= (aref string 0) ?/)
3420 (cd (substring string 1)))
3421 ;; Allowing the inferior to call functions in Emacs is
3422 ;; probably too big a security hole.
3423 ;; ((= (aref string 0) ?!)
3424 ;; (eval (car (read-from-string string 1))))
3425 (t)));; Otherwise ignore it
3426
3427 ;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen
3428 ;; and that its line LINE is visible.
3429 ;; Put the overlay-arrow on the line LINE in that buffer.
3430 ;; This is mainly used by gdb.
3431
3432 (defun term-display-line (true-file line)
3433 (term-display-buffer-line (find-file-noselect true-file) line))
3434
3435 (defun term-display-buffer-line (buffer line)
3436 (let* ((window (display-buffer buffer t))
3437 (pos))
3438 (save-excursion
3439 (set-buffer buffer)
3440 (save-restriction
3441 (widen)
3442 (goto-line line)
3443 (setq pos (point))
3444 (setq overlay-arrow-string "=>")
3445 (or overlay-arrow-position
3446 (setq overlay-arrow-position (make-marker)))
3447 (set-marker overlay-arrow-position (point) (current-buffer)))
3448 (cond ((or (< pos (point-min)) (> pos (point-max)))
3449 (widen)
3450 (goto-char pos))))
3451 (set-window-point window overlay-arrow-position)))
3452
3453 ;;; The buffer-local marker term-home-marker defines the "home position"
3454 ;;; (in terms of cursor motion). However, we move the term-home-marker
3455 ;;; "down" as needed so that is no more that a window-full above (point-max).
3456
3457 (defun term-goto-home ()
3458 (term-handle-deferred-scroll)
3459 (goto-char term-home-marker)
3460 (setq term-current-row 0)
3461 (setq term-current-column (current-column))
3462 (setq term-start-line-column term-current-column))
3463
3464 (defun term-goto (row col)
3465 (term-handle-deferred-scroll)
3466 (cond ((and term-current-row (>= row term-current-row))
3467 ;; I assume this is a worthwhile optimization.
3468 (term-vertical-motion 0)
3469 (setq term-current-column term-start-line-column)
3470 (setq row (- row term-current-row)))
3471 (t
3472 (term-goto-home)))
3473 (term-down row)
3474 (term-move-columns col))
3475
3476 ; The page is full, so enter "pager" mode, and wait for input.
3477
3478 (defun term-process-pager ()
3479 (when (not term-pager-break-map)
3480 (let* ((map (make-keymap))
3481 (i 0) tmp)
3482 ; (while (< i 128)
3483 ; (define-key map (make-string 1 i) 'term-send-raw)
3484 ; (setq i (1+ i)))
3485 (define-key map "\e"
3486 (lookup-key (current-global-map) "\e"))
3487 (define-key map "\C-x"
3488 (lookup-key (current-global-map) "\C-x"))
3489 (define-key map "\C-u"
3490 (lookup-key (current-global-map) "\C-u"))
3491 (define-key map " " 'term-pager-page)
3492 (define-key map "\r" 'term-pager-line)
3493 (define-key map "?" 'term-pager-help)
3494 (define-key map "h" 'term-pager-help)
3495 (define-key map "b" 'term-pager-back-page)
3496 (define-key map "\177" 'term-pager-back-line)
3497 (define-key map "q" 'term-pager-discard)
3498 (define-key map "D" 'term-pager-disable)
3499 (define-key map "<" 'term-pager-bob)
3500 (define-key map ">" 'term-pager-eob)
3501
3502 ;; Add menu bar.
3503 (unless (featurep 'xemacs)
3504 (define-key map [menu-bar terminal] term-terminal-menu)
3505 (define-key map [menu-bar signals] term-signals-menu)
3506 (setq tmp (make-sparse-keymap "More pages?"))
3507 (define-key tmp [help] '("Help" . term-pager-help))
3508 (define-key tmp [disable]
3509 '("Disable paging" . term-fake-pager-disable))
3510 (define-key tmp [discard]
3511 '("Discard remaining output" . term-pager-discard))
3512 (define-key tmp [eob] '("Goto to end" . term-pager-eob))
3513 (define-key tmp [bob] '("Goto to beginning" . term-pager-bob))
3514 (define-key tmp [line] '("1 line forwards" . term-pager-line))
3515 (define-key tmp [bline] '("1 line backwards" . term-pager-back-line))
3516 (define-key tmp [back] '("1 page backwards" . term-pager-back-page))
3517 (define-key tmp [page] '("1 page forwards" . term-pager-page))
3518 (define-key map [menu-bar page] (cons "More pages?" tmp))
3519 )
3520
3521 (setq term-pager-break-map map)))
3522 ; (let ((process (get-buffer-process (current-buffer))))
3523 ; (stop-process process))
3524 (setq term-pager-old-local-map (current-local-map))
3525 (use-local-map term-pager-break-map)
3526 (make-local-variable 'term-old-mode-line-format)
3527 (setq term-old-mode-line-format mode-line-format)
3528 (setq mode-line-format
3529 (list "-- **MORE** "
3530 mode-line-buffer-identification
3531 " [Type ? for help] "
3532 "%-"))
3533 (force-mode-line-update))
3534
3535 (defun term-pager-line (lines)
3536 (interactive "p")
3537 (let* ((moved (vertical-motion (1+ lines)))
3538 (deficit (- lines moved)))
3539 (when (> moved lines)
3540 (backward-char))
3541 (cond ((<= deficit 0) ;; OK, had enough in the buffer for request.
3542 (recenter (1- term-height)))
3543 ((term-pager-continue deficit)))))
3544
3545 (defun term-pager-page (arg)
3546 "Proceed past the **MORE** break, allowing the next page of output to appear."
3547 (interactive "p")
3548 (term-pager-line (* arg term-height)))
3549
3550 ; Pager mode command to go to beginning of buffer
3551 (defun term-pager-bob ()
3552 (interactive)
3553 (goto-char (point-min))
3554 (when (= (vertical-motion term-height) term-height)
3555 (backward-char))
3556 (recenter (1- term-height)))
3557
3558 ; pager mode command to go to end of buffer
3559 (defun term-pager-eob ()
3560 (interactive)
3561 (goto-char term-home-marker)
3562 (recenter 0)
3563 (goto-char (process-mark (get-buffer-process (current-buffer)))))
3564
3565 (defun term-pager-back-line (lines)
3566 (interactive "p")
3567 (vertical-motion (- 1 lines))
3568 (if (not (bobp))
3569 (backward-char)
3570 (beep)
3571 ;; Move cursor to end of window.
3572 (vertical-motion term-height)
3573 (backward-char))
3574 (recenter (1- term-height)))
3575
3576 (defun term-pager-back-page (arg)
3577 (interactive "p")
3578 (term-pager-back-line (* arg term-height)))
3579
3580 (defun term-pager-discard ()
3581 (interactive)
3582 (setq term-terminal-parameter "")
3583 (interrupt-process nil t)
3584 (term-pager-continue term-height))
3585
3586 ; Disable pager processing.
3587 ; Only callable while in pager mode. (Contrast term-disable-pager.)
3588 (defun term-pager-disable ()
3589 (interactive)
3590 (if (term-handling-pager)
3591 (term-pager-continue nil)
3592 (setq term-pager-count nil))
3593 (term-update-mode-line))
3594
3595 ; Enable pager processing.
3596 (defun term-pager-enable ()
3597 (interactive)
3598 (or (term-pager-enabled)
3599 (setq term-pager-count 0)) ;; Or maybe set to (term-current-row) ??
3600 (term-update-mode-line))
3601
3602 (defun term-pager-toggle ()
3603 (interactive)
3604 (if (term-pager-enabled) (term-pager-disable) (term-pager-enable)))
3605
3606 (unless (featurep 'xemacs)
3607 (defalias 'term-fake-pager-enable 'term-pager-toggle)
3608 (defalias 'term-fake-pager-disable 'term-pager-toggle)
3609 (put 'term-char-mode 'menu-enable '(term-in-line-mode))
3610 (put 'term-line-mode 'menu-enable '(term-in-char-mode))
3611 (put 'term-fake-pager-enable 'menu-enable '(not term-pager-count))
3612 (put 'term-fake-pager-disable 'menu-enable 'term-pager-count))
3613
3614 (defun term-pager-help ()
3615 "Provide help on commands available in a terminal-emulator **MORE** break."
3616 (interactive)
3617 (message "Terminal-emulator pager break help...")
3618 (sit-for 0)
3619 (with-electric-help
3620 (function (lambda ()
3621 (princ (substitute-command-keys
3622 "\\<term-pager-break-map>\
3623 Terminal-emulator MORE break.\n\
3624 Type one of the following keys:\n\n\
3625 \\[term-pager-page]\t\tMove forward one page.\n\
3626 \\[term-pager-line]\t\tMove forward one line.\n\
3627 \\[universal-argument] N \\[term-pager-page]\tMove N pages forward.\n\
3628 \\[universal-argument] N \\[term-pager-line]\tMove N lines forward.\n\
3629 \\[universal-argument] N \\[term-pager-back-line]\tMove N lines back.\n\
3630 \\[universal-argument] N \\[term-pager-back-page]\t\tMove N pages back.\n\
3631 \\[term-pager-bob]\t\tMove to the beginning of the buffer.\n\
3632 \\[term-pager-eob]\t\tMove to the end of the buffer.\n\
3633 \\[term-pager-discard]\t\tKill pending output and kill process.\n\
3634 \\[term-pager-disable]\t\tDisable PAGER handling.\n\n\
3635 \\{term-pager-break-map}\n\
3636 Any other key is passed through to the program
3637 running under the terminal emulator and disables pager processing until
3638 all pending output has been dealt with."))
3639 nil))))
3640
3641 (defun term-pager-continue (new-count)
3642 (let ((process (get-buffer-process (current-buffer))))
3643 (use-local-map term-pager-old-local-map)
3644 (setq term-pager-old-local-map nil)
3645 (setq mode-line-format term-old-mode-line-format)
3646 (force-mode-line-update)
3647 (setq term-pager-count new-count)
3648 (set-process-filter process term-pager-old-filter)
3649 (funcall term-pager-old-filter process "")
3650 (continue-process process)))
3651
3652 ;; Make sure there are DOWN blank lines below the current one.
3653 ;; Return 0 if we're unable (because of PAGER handling), else return DOWN.
3654
3655 (defun term-handle-scroll (down)
3656 (let ((scroll-needed
3657 (- (+ (term-current-row) down)
3658 (if (< down 0) term-scroll-start term-scroll-end))))
3659 (when (or (and (< down 0) (< scroll-needed 0))
3660 (and (> down 0) (> scroll-needed 0)))
3661 (let ((save-point (copy-marker (point))) (save-top))
3662 (goto-char term-home-marker)
3663 (cond (term-scroll-with-delete
3664 (if (< down 0)
3665 (progn
3666 ;; Delete scroll-needed lines at term-scroll-end,
3667 ;; then insert scroll-needed lines.
3668 (term-vertical-motion term-scroll-end)
3669 (end-of-line)
3670 (setq save-top (point))
3671 (term-vertical-motion scroll-needed)
3672 (end-of-line)
3673 (delete-region save-top (point))
3674 (goto-char save-point)
3675 (setq down (- scroll-needed down))
3676 (term-vertical-motion down))
3677 ;; Delete scroll-needed lines at term-scroll-start.
3678 (term-vertical-motion term-scroll-start)
3679 (setq save-top (point))
3680 (term-vertical-motion scroll-needed)
3681 (delete-region save-top (point))
3682 (goto-char save-point)
3683 (term-vertical-motion down)
3684 (term-adjust-current-row-cache (- scroll-needed)))
3685 (setq term-current-column nil)
3686 (term-insert-char ?\n (abs scroll-needed)))
3687 ((and (numberp term-pager-count)
3688 (< (setq term-pager-count (- term-pager-count down))
3689 0))
3690 (setq down 0)
3691 (term-process-pager))
3692 (t
3693 (term-adjust-current-row-cache (- scroll-needed))
3694 (term-vertical-motion scroll-needed)
3695 (set-marker term-home-marker (point))))
3696 (goto-char save-point)
3697 (set-marker save-point nil))))
3698 down)
3699
3700 (defun term-down (down &optional check-for-scroll)
3701 "Move down DOWN screen lines vertically."
3702 (let ((start-column (term-horizontal-column)))
3703 (when (and check-for-scroll (or term-scroll-with-delete term-pager-count))
3704 (setq down (term-handle-scroll down)))
3705 (unless (and (= term-current-row 0) (< down 0))
3706 (term-adjust-current-row-cache down)
3707 (when (or (/= (point) (point-max)) (< down 0))
3708 (setq down (- down (term-vertical-motion down)))))
3709 (cond ((>= down 0)
3710 ;; Extend buffer with extra blank lines if needed.
3711 (term-insert-char ?\n down)
3712 (setq term-current-column 0)
3713 (setq term-start-line-column 0))
3714 (t
3715 (when (= term-current-row 0)
3716 ;; Insert lines if at the beginning.
3717 (save-excursion (term-insert-char ?\n (- down)))
3718 (save-excursion
3719 (let (p)
3720 ;; Delete lines from the end.
3721 (forward-line term-height)
3722 (setq p (point))
3723 (forward-line (- down))
3724 (delete-region p (point)))))
3725 (setq term-current-column 0)
3726 (setq term-start-line-column (current-column))))
3727 (when start-column
3728 (term-move-columns start-column))))
3729
3730 ;; Assuming point is at the beginning of a screen line,
3731 ;; if the line above point wraps around, add a ?\n to undo the wrapping.
3732 ;; FIXME: Probably should be called more than it is.
3733 (defun term-unwrap-line ()
3734 (when (not (bolp)) (insert-before-markers ?\n)))
3735
3736 (defun term-erase-in-line (kind)
3737 (when (= kind 1) ;; erase left of point
3738 (let ((cols (term-horizontal-column)) (saved-point (point)))
3739 (term-vertical-motion 0)
3740 (delete-region (point) saved-point)
3741 (term-insert-char ? cols)))
3742 (when (not (eq kind 1)) ;; erase right of point
3743 (let ((saved-point (point))
3744 (wrapped (and (zerop (term-horizontal-column))
3745 (not (zerop (term-current-column))))))
3746 (term-vertical-motion 1)
3747 (delete-region saved-point (point))
3748 ;; wrapped is true if we're at the beginning of screen line,
3749 ;; but not a buffer line. If we delete the current screen line
3750 ;; that will make the previous line no longer wrap, and (because
3751 ;; of the way Emacs display works) point will be at the end of
3752 ;; the previous screen line rather then the beginning of the
3753 ;; current one. To avoid that, we make sure that current line
3754 ;; contain a space, to force the previous line to continue to wrap.
3755 ;; We could do this always, but it seems preferable to not add the
3756 ;; extra space when wrapped is false.
3757 (when wrapped
3758 (insert ? ))
3759 (insert ?\n)
3760 (put-text-property saved-point (point) 'face 'default)
3761 (goto-char saved-point))))
3762
3763 (defun term-erase-in-display (kind)
3764 "Erases (that is blanks out) part of the window.
3765 If KIND is 0, erase from (point) to (point-max);
3766 if KIND is 1, erase from home to point; else erase from home to point-max."
3767 (term-handle-deferred-scroll)
3768 (cond ((eq term-terminal-parameter 0)
3769 (let ((need-unwrap (bolp)))
3770 (delete-region (point) (point-max))
3771 (when need-unwrap (term-unwrap-line))))
3772 ((let ((row (term-current-row))
3773 (col (term-horizontal-column))
3774 (start-region term-home-marker)
3775 (end-region (if (eq kind 1) (point) (point-max))))
3776 (delete-region start-region end-region)
3777 (term-unwrap-line)
3778 (when (eq kind 1)
3779 (term-insert-char ?\n row))
3780 (setq term-current-column nil)
3781 (setq term-current-row nil)
3782 (term-goto row col)))))
3783
3784 (defun term-delete-chars (count)
3785 (let ((save-point (point)))
3786 (term-vertical-motion 1)
3787 (term-unwrap-line)
3788 (goto-char save-point)
3789 (move-to-column (+ (term-current-column) count) t)
3790 (delete-region save-point (point))))
3791
3792 ;;; Insert COUNT spaces after point, but do not change any of
3793 ;;; following screen lines. Hence we may have to delete characters
3794 ;;; at the end of this screen line to make room.
3795
3796 (defun term-insert-spaces (count)
3797 (let ((save-point (point)) (save-eol) (pnt-at-eol))
3798 (term-vertical-motion 1)
3799 (when (bolp)
3800 (backward-char))
3801 (setq save-eol (point))
3802 (save-excursion
3803 (end-of-line)
3804 (setq pnt-at-eol (point)))
3805 (move-to-column (+ (term-start-line-column) (- term-width count)) t)
3806 ;; If move-to-column extends the current line it will use the face
3807 ;; from the last character on the line, set the face for the chars
3808 ;; to default.
3809 (when (>= (point) pnt-at-eol)
3810 (put-text-property pnt-at-eol (point) 'face 'default))
3811 (when (> save-eol (point))
3812 (delete-region (point) save-eol))
3813 (goto-char save-point)
3814 (term-insert-char ? count)
3815 (goto-char save-point)))
3816
3817 (defun term-delete-lines (lines)
3818 (let ((start (point))
3819 (save-current-column term-current-column)
3820 (save-start-line-column term-start-line-column)
3821 (save-current-row (term-current-row)))
3822 ;; The number of inserted lines shouldn't exceed the scroll region end.
3823 ;; The `term-scroll-end' line is part of the scrolling region, so
3824 ;; we need to go one line past it in order to ensure correct
3825 ;; scrolling.
3826 (when (> (+ save-current-row lines) (1+ term-scroll-end))
3827 (setq lines (- lines (- (+ save-current-row lines) (1+ term-scroll-end)))))
3828 (term-down lines)
3829 (delete-region start (point))
3830 (term-down (- (1+ term-scroll-end) save-current-row lines))
3831 (term-insert-char ?\n lines)
3832 (setq term-current-column save-current-column)
3833 (setq term-start-line-column save-start-line-column)
3834 (setq term-current-row save-current-row)
3835 (goto-char start)))
3836
3837 (defun term-insert-lines (lines)
3838 (let ((start (point))
3839 (start-deleted)
3840 (save-current-column term-current-column)
3841 (save-start-line-column term-start-line-column)
3842 (save-current-row (term-current-row)))
3843 ;; Inserting lines should take into account the scroll region.
3844 ;; The `term-scroll-end' line is part of the scrolling region, so
3845 ;; we need to go one line past it in order to ensure correct
3846 ;; scrolling.
3847 (if (< save-current-row term-scroll-start)
3848 ;; If point is before scroll start,
3849 (progn
3850 (setq lines (- lines (- term-scroll-start save-current-row)))
3851 (term-down (- term-scroll-start save-current-row))
3852 (setq start (point)))
3853 ;; The number of inserted lines shouldn't exceed the scroll region end.
3854 (when (> (+ save-current-row lines) (1+ term-scroll-end))
3855 (setq lines (- lines (- (+ save-current-row lines)(1+ term-scroll-end)))))
3856 (term-down (- (1+ term-scroll-end) save-current-row lines)))
3857 (setq start-deleted (point))
3858 (term-down lines)
3859 (delete-region start-deleted (point))
3860 (goto-char start)
3861 (setq term-current-column save-current-column)
3862 (setq term-start-line-column save-start-line-column)
3863 (setq term-current-row save-current-row)
3864 (term-insert-char ?\n lines)
3865 (goto-char start)))
3866 \f
3867 (defun term-start-output-log (name)
3868 "Record raw inferior process output in a buffer."
3869 (interactive (list (if term-log-buffer
3870 nil
3871 (read-buffer "Record output in buffer: "
3872 (format "%s output-log"
3873 (buffer-name (current-buffer)))
3874 nil))))
3875 (if (or (null name) (equal name ""))
3876 (progn (setq term-log-buffer nil)
3877 (message "Output logging off."))
3878 (if (get-buffer name)
3879 nil
3880 (save-excursion
3881 (set-buffer (get-buffer-create name))
3882 (fundamental-mode)
3883 (buffer-disable-undo (current-buffer))
3884 (erase-buffer)))
3885 (setq term-log-buffer (get-buffer name))
3886 (message "Recording terminal emulator output into buffer \"%s\""
3887 (buffer-name term-log-buffer))))
3888
3889 (defun term-stop-output-log ()
3890 "Discontinue raw inferior process logging."
3891 (interactive)
3892 (term-start-output-log nil))
3893
3894 (defun term-show-maximum-output ()
3895 "Put the end of the buffer at the bottom of the window."
3896 (interactive)
3897 (goto-char (point-max))
3898 (recenter -1))
3899 \f
3900 ;;; Do the user's customisation...
3901
3902 (defvar term-load-hook nil
3903 "This hook is run when term is loaded in.
3904 This is a good place to put keybindings.")
3905
3906 (run-hooks 'term-load-hook)
3907
3908 \f
3909 ;;; Filename/command/history completion in a buffer
3910 ;;; ===========================================================================
3911 ;;; Useful completion functions, courtesy of the Ergo group.
3912
3913 ;;; Six commands:
3914 ;;; term-dynamic-complete Complete or expand command, filename,
3915 ;;; history at point.
3916 ;;; term-dynamic-complete-filename Complete filename at point.
3917 ;;; term-dynamic-list-filename-completions List completions in help buffer.
3918 ;;; term-replace-by-expanded-filename Expand and complete filename at point;
3919 ;;; replace with expanded/completed name.
3920 ;;; term-dynamic-simple-complete Complete stub given candidates.
3921
3922 ;;; These are not installed in the term-mode keymap. But they are
3923 ;;; available for people who want them. Shell-mode installs them:
3924 ;;; (define-key shell-mode-map "\t" 'term-dynamic-complete)
3925 ;;; (define-key shell-mode-map "\M-?"
3926 ;;; 'term-dynamic-list-filename-completions)))
3927 ;;;
3928 ;;; Commands like this are fine things to put in load hooks if you
3929 ;;; want them present in specific modes.
3930
3931 (defvar term-completion-autolist nil
3932 "*If non-nil, automatically list possibilities on partial completion.
3933 This mirrors the optional behavior of tcsh.")
3934
3935 (defvar term-completion-addsuffix t
3936 "*If non-nil, add a `/' to completed directories, ` ' to file names.
3937 If a cons pair, it should be of the form (DIRSUFFIX . FILESUFFIX) where
3938 DIRSUFFIX and FILESUFFIX are strings added on unambiguous or exact
3939 completion. This mirrors the optional behavior of tcsh.")
3940
3941 (defvar term-completion-recexact nil
3942 "*If non-nil, use shortest completion if characters cannot be added.
3943 This mirrors the optional behavior of tcsh.
3944
3945 A non-nil value is useful if `term-completion-autolist' is non-nil too.")
3946
3947 (defvar term-completion-fignore nil
3948 "*List of suffixes to be disregarded during file completion.
3949 This mirrors the optional behavior of bash and tcsh.
3950
3951 Note that this applies to `term-dynamic-complete-filename' only.")
3952
3953 (defvar term-file-name-prefix ""
3954 "Prefix prepended to absolute file names taken from process input.
3955 This is used by term's and shell's completion functions, and by shell's
3956 directory tracking functions.")
3957
3958
3959 (defun term-directory (directory)
3960 ;; Return expanded DIRECTORY, with `term-file-name-prefix' if absolute.
3961 (expand-file-name (if (file-name-absolute-p directory)
3962 (concat term-file-name-prefix directory)
3963 directory)))
3964
3965
3966 (defun term-word (word-chars)
3967 "Return the word of WORD-CHARS at point, or nil if none is found.
3968 Word constituents are considered to be those in WORD-CHARS, which is like the
3969 inside of a \"[...]\" (see `skip-chars-forward')."
3970 (save-excursion
3971 (let ((limit (point))
3972 (word (concat "[" word-chars "]"))
3973 (non-word (concat "[^" word-chars "]")))
3974 (when (re-search-backward non-word nil 'move)
3975 (forward-char 1))
3976 ;; Anchor the search forwards.
3977 (if (or (eolp) (looking-at non-word))
3978 nil
3979 (re-search-forward (concat word "+") limit)
3980 (buffer-substring (match-beginning 0) (match-end 0))))))
3981
3982
3983 (defun term-match-partial-filename ()
3984 "Return the filename at point, or nil if none is found.
3985 Environment variables are substituted. See `term-word'."
3986 (let ((filename (term-word "~/A-Za-z0-9+@:_.$#,={}-")))
3987 (and filename (substitute-in-file-name filename))))
3988
3989
3990 (defun term-dynamic-complete ()
3991 "Dynamically perform completion at point.
3992 Calls the functions in `term-dynamic-complete-functions' to perform
3993 completion until a function returns non-nil, at which point completion is
3994 assumed to have occurred."
3995 (interactive)
3996 (let ((functions term-dynamic-complete-functions))
3997 (while (and functions (null (funcall (car functions))))
3998 (setq functions (cdr functions)))))
3999
4000
4001 (defun term-dynamic-complete-filename ()
4002 "Dynamically complete the filename at point.
4003 Completes if after a filename. See `term-match-partial-filename' and
4004 `term-dynamic-complete-as-filename'.
4005 This function is similar to `term-replace-by-expanded-filename', except that
4006 it won't change parts of the filename already entered in the buffer; it just
4007 adds completion characters to the end of the filename. A completions listing
4008 may be shown in a help buffer if completion is ambiguous.
4009
4010 Completion is dependent on the value of `term-completion-addsuffix',
4011 `term-completion-recexact' and `term-completion-fignore', and the timing of
4012 completions listing is dependent on the value of `term-completion-autolist'.
4013
4014 Returns t if successful."
4015 (interactive)
4016 (when (term-match-partial-filename)
4017 (prog2 (or (eq (selected-window) (minibuffer-window))
4018 (message "Completing file name..."))
4019 (term-dynamic-complete-as-filename))))
4020
4021 (defun term-dynamic-complete-as-filename ()
4022 "Dynamically complete at point as a filename.
4023 See `term-dynamic-complete-filename'. Returns t if successful."
4024 (let* ((completion-ignore-case nil)
4025 (completion-ignored-extensions term-completion-fignore)
4026 (success t)
4027 (dirsuffix (cond ((not term-completion-addsuffix) "")
4028 ((not (consp term-completion-addsuffix)) "/")
4029 (t (car term-completion-addsuffix))))
4030 (filesuffix (cond ((not term-completion-addsuffix) "")
4031 ((not (consp term-completion-addsuffix)) " ")
4032 (t (cdr term-completion-addsuffix))))
4033 (filename (or (term-match-partial-filename) ""))
4034 (pathdir (file-name-directory filename))
4035 (pathnondir (file-name-nondirectory filename))
4036 (directory (if pathdir (term-directory pathdir) default-directory))
4037 (completion (file-name-completion pathnondir directory))
4038 (mini-flag (eq (selected-window) (minibuffer-window))))
4039 (cond ((null completion)
4040 (message "No completions of %s" filename)
4041 (setq success nil))
4042 ((eq completion t) ; Means already completed "file".
4043 (when term-completion-addsuffix (insert " "))
4044 (or mini-flag (message "Sole completion")))
4045 ((string-equal completion "") ; Means completion on "directory/".
4046 (term-dynamic-list-filename-completions))
4047 (t ; Completion string returned.
4048 (let ((file (concat (file-name-as-directory directory) completion)))
4049 (insert (substring (directory-file-name completion)
4050 (length pathnondir)))
4051 (cond ((symbolp (file-name-completion completion directory))
4052 ;; We inserted a unique completion.
4053 (insert (if (file-directory-p file) dirsuffix filesuffix))
4054 (or mini-flag (message "Completed")))
4055 ((and term-completion-recexact term-completion-addsuffix
4056 (string-equal pathnondir completion)
4057 (file-exists-p file))
4058 ;; It's not unique, but user wants shortest match.
4059 (insert (if (file-directory-p file) dirsuffix filesuffix))
4060 (or mini-flag (message "Completed shortest")))
4061 ((or term-completion-autolist
4062 (string-equal pathnondir completion))
4063 ;; It's not unique, list possible completions.
4064 (term-dynamic-list-filename-completions))
4065 (t
4066 (or mini-flag (message "Partially completed")))))))
4067 success))
4068
4069
4070 (defun term-replace-by-expanded-filename ()
4071 "Dynamically expand and complete the filename at point.
4072 Replace the filename with an expanded, canonicalized and completed replacement.
4073 \"Expanded\" means environment variables (e.g., $HOME) and `~'s are replaced
4074 with the corresponding directories. \"Canonicalized\" means `..' and `.' are
4075 removed, and the filename is made absolute instead of relative. For expansion
4076 see `expand-file-name' and `substitute-in-file-name'. For completion see
4077 `term-dynamic-complete-filename'."
4078 (interactive)
4079 (replace-match (expand-file-name (term-match-partial-filename)) t t)
4080 (term-dynamic-complete-filename))
4081
4082
4083 (defun term-dynamic-simple-complete (stub candidates)
4084 "Dynamically complete STUB from CANDIDATES list.
4085 This function inserts completion characters at point by completing STUB from
4086 the strings in CANDIDATES. A completions listing may be shown in a help buffer
4087 if completion is ambiguous.
4088
4089 Returns nil if no completion was inserted.
4090 Returns `sole' if completed with the only completion match.
4091 Returns `shortest' if completed with the shortest of the completion matches.
4092 Returns `partial' if completed as far as possible with the completion matches.
4093 Returns `listed' if a completion listing was shown.
4094
4095 See also `term-dynamic-complete-filename'."
4096 (let* ((completion-ignore-case nil)
4097 (candidates (mapcar (function (lambda (x) (list x))) candidates))
4098 (completions (all-completions stub candidates)))
4099 (cond ((null completions)
4100 (message "No completions of %s" stub)
4101 nil)
4102 ((= 1 (length completions)) ; Gotcha!
4103 (let ((completion (car completions)))
4104 (if (string-equal completion stub)
4105 (message "Sole completion")
4106 (insert (substring completion (length stub)))
4107 (message "Completed"))
4108 (when term-completion-addsuffix (insert " "))
4109 'sole))
4110 (t ; There's no unique completion.
4111 (let ((completion (try-completion stub candidates)))
4112 ;; Insert the longest substring.
4113 (insert (substring completion (length stub)))
4114 (cond ((and term-completion-recexact term-completion-addsuffix
4115 (string-equal stub completion)
4116 (member completion completions))
4117 ;; It's not unique, but user wants shortest match.
4118 (insert " ")
4119 (message "Completed shortest")
4120 'shortest)
4121 ((or term-completion-autolist
4122 (string-equal stub completion))
4123 ;; It's not unique, list possible completions.
4124 (term-dynamic-list-completions completions)
4125 'listed)
4126 (t
4127 (message "Partially completed")
4128 'partial)))))))
4129
4130
4131 (defun term-dynamic-list-filename-completions ()
4132 "List in help buffer possible completions of the filename at point."
4133 (interactive)
4134 (let* ((completion-ignore-case nil)
4135 (filename (or (term-match-partial-filename) ""))
4136 (pathdir (file-name-directory filename))
4137 (pathnondir (file-name-nondirectory filename))
4138 (directory (if pathdir (term-directory pathdir) default-directory))
4139 (completions (file-name-all-completions pathnondir directory)))
4140 (if completions
4141 (term-dynamic-list-completions completions)
4142 (message "No completions of %s" filename))))
4143
4144
4145 (defun term-dynamic-list-completions (completions)
4146 "List in help buffer sorted COMPLETIONS.
4147 Typing SPC flushes the help buffer."
4148 (let ((conf (current-window-configuration)))
4149 (with-output-to-temp-buffer "*Completions*"
4150 (display-completion-list (sort completions 'string-lessp)))
4151 (message "Hit space to flush")
4152 (let (key first)
4153 (if (save-excursion
4154 (set-buffer (get-buffer "*Completions*"))
4155 (setq key (read-key-sequence nil)
4156 first (aref key 0))
4157 (and (consp first)
4158 (eq (window-buffer (posn-window (event-start first)))
4159 (get-buffer "*Completions*"))
4160 (eq (key-binding key) 'mouse-choose-completion)))
4161 ;; If the user does mouse-choose-completion with the mouse,
4162 ;; execute the command, then delete the completion window.
4163 (progn
4164 (mouse-choose-completion first)
4165 (set-window-configuration conf))
4166 (if (eq first ?\s)
4167 (set-window-configuration conf)
4168 (setq unread-command-events (listify-key-sequence key)))))))
4169
4170 ;;; I need a make-term that doesn't surround with *s -mm
4171 (defun term-ansi-make-term (name program &optional startfile &rest switches)
4172 "Make a term process NAME in a buffer, running PROGRAM.
4173 The name of the buffer is NAME.
4174 If there is already a running process in that buffer, it is not restarted.
4175 Optional third arg STARTFILE is the name of a file to send the contents of to
4176 the process. Any more args are arguments to PROGRAM."
4177 (let ((buffer (get-buffer-create name )))
4178 ;; If no process, or nuked process, crank up a new one and put buffer in
4179 ;; term mode. Otherwise, leave buffer and existing process alone.
4180 (cond ((not (term-check-proc buffer))
4181 (save-excursion
4182 (set-buffer buffer)
4183 (term-mode)) ; Install local vars, mode, keymap, ...
4184 (term-exec buffer name program startfile switches)))
4185 buffer))
4186
4187 (defvar term-ansi-buffer-name nil)
4188 (defvar term-ansi-default-program nil)
4189 (defvar term-ansi-buffer-base-name nil)
4190
4191 ;;;###autoload
4192 (defun ansi-term (program &optional new-buffer-name)
4193 "Start a terminal-emulator in a new buffer."
4194 (interactive (list (read-from-minibuffer "Run program: "
4195 (or explicit-shell-file-name
4196 (getenv "ESHELL")
4197 (getenv "SHELL")
4198 "/bin/sh"))))
4199
4200 ;; Pick the name of the new buffer.
4201 (setq term-ansi-buffer-name
4202 (if new-buffer-name
4203 new-buffer-name
4204 (if term-ansi-buffer-base-name
4205 (if (eq term-ansi-buffer-base-name t)
4206 (file-name-nondirectory program)
4207 term-ansi-buffer-base-name)
4208 "ansi-term")))
4209
4210 (setq term-ansi-buffer-name (concat "*" term-ansi-buffer-name "*"))
4211
4212 ;; In order to have more than one term active at a time
4213 ;; I'd like to have the term names have the *term-ansi-term<?>* form,
4214 ;; for now they have the *term-ansi-term*<?> form but we'll see...
4215
4216 (setq term-ansi-buffer-name (generate-new-buffer-name term-ansi-buffer-name))
4217 (setq term-ansi-buffer-name (term-ansi-make-term term-ansi-buffer-name program))
4218
4219 (set-buffer term-ansi-buffer-name)
4220 (term-mode)
4221 (term-char-mode)
4222
4223 ;; I wanna have find-file on C-x C-f -mm
4224 ;; your mileage may definitely vary, maybe it's better to put this in your
4225 ;; .emacs ...
4226
4227 (term-set-escape-char ?\C-x)
4228
4229 (switch-to-buffer term-ansi-buffer-name))
4230
4231 \f
4232 ;;; Serial terminals
4233 ;;; ===========================================================================
4234 (defun serial-port-is-file-p ()
4235 "Guess whether serial ports are files on this system.
4236 Return t if this is a Unix-based system, where serial ports are
4237 files, such as /dev/ttyS0.
4238 Return nil if this is Windows or DOS, where serial ports have
4239 special identifiers such as COM1."
4240 (not (member system-type (list 'windows-nt 'cygwin 'ms-dos))))
4241
4242 (defvar serial-name-history
4243 (if (serial-port-is-file-p)
4244 (or (when (file-exists-p "/dev/ttys0") (list "/dev/ttys0"))
4245 (when (file-exists-p "/dev/ttyS0") (list "/dev/ttyS0")))
4246 (list "COM1"))
4247 "History of serial ports used by `serial-read-name'.")
4248
4249 (defvar serial-speed-history
4250 ;; Initialised with reasonable values for newbies.
4251 (list "9600" ;; Given twice because 9600 b/s is the most common speed
4252 "1200" "2400" "4800" "9600" "14400" "19200"
4253 "28800" "38400" "57600" "115200")
4254 "History of serial port speeds used by `serial-read-speed'.")
4255
4256 (defun serial-nice-speed-history ()
4257 "Return `serial-speed-history' cleaned up for a mouse-menu."
4258 (let ((x) (y))
4259 (setq x
4260 (sort
4261 (copy-sequence serial-speed-history)
4262 '(lambda (a b) (when (and (stringp a) (stringp b))
4263 (> (string-to-number a) (string-to-number b))))))
4264 (dolist (i x) (when (not (equal i (car y))) (push i y)))
4265 y))
4266
4267 (defconst serial-no-speed "nil"
4268 "String for `serial-read-speed' for special serial ports.
4269 If `serial-read-speed' reads this string from the user, it
4270 returns nil, which is recognized by `serial-process-configure'
4271 for special serial ports that cannot be configured.")
4272
4273 (defun serial-supported-or-barf ()
4274 "Signal an error if serial processes are not supported"
4275 (unless (fboundp 'make-serial-process)
4276 (error "Serial processes are not supported on this system")))
4277
4278 (defun serial-read-name ()
4279 "Read a serial port name from the user.
4280 Try to be nice by providing useful defaults and history.
4281 On Windows, prepend \\.\ to the port name unless it already
4282 contains a backslash. This handles the legacy ports COM1-COM9 as
4283 well as the newer ports COM10 and higher."
4284 (serial-supported-or-barf)
4285 (let* ((file-name-history serial-name-history)
4286 (h (car file-name-history))
4287 (x (if (serial-port-is-file-p)
4288 (read-file-name
4289 ;; `prompt': The most recently used port is provided as
4290 ;; the default value, which is used when the user
4291 ;; simply presses return.
4292 (if (stringp h) (format "Serial port (default %s): " h)
4293 "Serial port: ")
4294 ;; `directory': Most systems have their serial ports
4295 ;; in the same directory, so start in the directory
4296 ;; of the most recently used port, or in a reasonable
4297 ;; default directory.
4298 (or (and h (file-name-directory h))
4299 (and (file-exists-p "/dev/") "/dev/")
4300 (and (file-exists-p "/") "/"))
4301 ;; `default': This causes (read-file-name) to return
4302 ;; the empty string if he user simply presses return.
4303 ;; Using nil here may result in a default directory
4304 ;; of the current buffer, which is not useful for
4305 ;; serial port.
4306 "")
4307 (read-from-minibuffer
4308 (if (stringp h) (format "Serial port (default %s): " h)
4309 "Serial port: ")
4310 nil nil nil '(file-name-history . 1) nil nil))))
4311 (if (or (null x) (and (stringp x) (zerop (length x))))
4312 (setq x h)
4313 (setq serial-name-history file-name-history))
4314 (when (or (null x) (and (stringp x) (zerop (length x))))
4315 (error "No serial port selected"))
4316 (when (and (not (serial-port-is-file-p))
4317 (not (string-match "\\\\" x)))
4318 (set 'x (concat "\\\\.\\" x)))
4319 x))
4320
4321 (defun serial-read-speed ()
4322 "Read a serial port speed (in bits per second) from the user.
4323 Try to be nice by providing useful defaults and history."
4324 (serial-supported-or-barf)
4325 (let* ((history serial-speed-history)
4326 (h (car history))
4327 (x (read-from-minibuffer
4328 (cond ((string= h serial-no-speed)
4329 "Speed (default nil = set by port): ")
4330 (h
4331 (format "Speed (default %s b/s): " h))
4332 (t
4333 (format "Speed (b/s): ")))
4334 nil nil nil '(history . 1) nil nil)))
4335 (when (or (null x) (and (stringp x) (zerop (length x))))
4336 (setq x h))
4337 (when (or (null x) (not (stringp x)) (zerop (length x)))
4338 (error "Invalid speed"))
4339 (if (string= x serial-no-speed)
4340 (setq x nil)
4341 (setq x (string-to-number x))
4342 (when (or (null x) (not (integerp x)) (<= x 0))
4343 (error "Invalid speed")))
4344 (setq serial-speed-history history)
4345 x))
4346
4347 ;;;###autoload
4348 (defun serial-term (port speed)
4349 "Start a terminal-emulator for a serial port in a new buffer.
4350 PORT is the path or name of the serial port. For example, this
4351 could be \"/dev/ttyS0\" on Unix. On Windows, this could be
4352 \"COM1\" or \"\\\\.\\COM10\".
4353 SPEED is the speed of the serial port in bits per second. 9600
4354 is a common value. SPEED can be nil, see
4355 `serial-process-configure' for details.
4356 The buffer is in Term mode; see `term-mode' for the commands to
4357 use in that buffer.
4358 \\<term-raw-map>Type \\[switch-to-buffer] to switch to another buffer."
4359 (interactive (list (serial-read-name) (serial-read-speed)))
4360 (serial-supported-or-barf)
4361 (let* ((process (make-serial-process
4362 :port port
4363 :speed speed
4364 :coding 'no-conversion
4365 :noquery t))
4366 (buffer (process-buffer process)))
4367 (save-excursion
4368 (set-buffer buffer)
4369 (term-mode)
4370 (term-char-mode)
4371 (goto-char (point-max))
4372 (set-marker (process-mark process) (point))
4373 (set-process-filter process 'term-emulate-terminal)
4374 (set-process-sentinel process 'term-sentinel))
4375 (switch-to-buffer buffer)
4376 buffer))
4377
4378 (defvar serial-mode-line-speed-menu nil)
4379 (defvar serial-mode-line-config-menu nil)
4380
4381 (defun serial-speed ()
4382 "Return the speed of the serial port of the current buffer's process.
4383 The return value may be nil for a special serial port."
4384 (process-contact (get-buffer-process (current-buffer)) :speed))
4385
4386 (defun serial-mode-line-speed-menu-1 (event)
4387 (interactive "e")
4388 (save-selected-window
4389 (select-window (posn-window (event-start event)))
4390 (serial-update-speed-menu)
4391 (let* ((selection (serial-mode-line-speed-menu event))
4392 (binding (and selection (lookup-key serial-mode-line-speed-menu
4393 (vector (car selection))))))
4394 (when binding (call-interactively binding)))))
4395
4396 (defun serial-mode-line-speed-menu (event)
4397 (x-popup-menu event serial-mode-line-speed-menu))
4398
4399 (defun serial-update-speed-menu ()
4400 (setq serial-mode-line-speed-menu (make-sparse-keymap "Speed (b/s)"))
4401 (define-key serial-mode-line-speed-menu [serial-mode-line-speed-menu-other]
4402 '(menu-item "Other..."
4403 (lambda (event) (interactive "e")
4404 (let ((speed (serial-read-speed)))
4405 (serial-process-configure :speed speed)
4406 (term-update-mode-line)
4407 (message "Speed set to %d b/s" speed)))))
4408 (dolist (str (serial-nice-speed-history))
4409 (let ((num (or (and (stringp str) (string-to-number str)) 0)))
4410 (define-key
4411 serial-mode-line-speed-menu
4412 (vector (make-symbol (format "serial-mode-line-speed-menu-%s" str)))
4413 `(menu-item
4414 ,str
4415 (lambda (event) (interactive "e")
4416 (serial-process-configure :speed ,num)
4417 (term-update-mode-line)
4418 (message "Speed set to %d b/s" ,num))
4419 :button (:toggle . (= (serial-speed) ,num)))))))
4420
4421 (defun serial-mode-line-config-menu-1 (event)
4422 (interactive "e")
4423 (save-selected-window
4424 (select-window (posn-window (event-start event)))
4425 (serial-update-config-menu)
4426 (let* ((selection (serial-mode-line-config-menu event))
4427 (binding (and selection (lookup-key serial-mode-line-config-menu
4428 (vector (car selection))))))
4429 (when binding (call-interactively binding)))))
4430
4431 (defun serial-mode-line-config-menu (event)
4432 (x-popup-menu event serial-mode-line-config-menu))
4433
4434 (defun serial-update-config-menu ()
4435 (setq serial-mode-line-config-menu (make-sparse-keymap "Configuration"))
4436 (let ((config (process-contact
4437 (get-buffer-process (current-buffer)) t))
4438 (y)
4439 (str))
4440 (dolist (y '((:flowcontrol hw "Hardware flowcontrol (RTS/CTS)")
4441 (:flowcontrol sw "Software flowcontrol (XON/XOFF)")
4442 (:flowcontrol nil "No flowcontrol")
4443 (:stopbits 2 "2 stopbits")
4444 (:stopbits 1 "1 stopbit")
4445 (:parity odd "Odd parity")
4446 (:parity even "Even parity")
4447 (:parity nil "No parity")
4448 (:bytesize 7 "7 bits per byte")
4449 (:bytesize 8 "8 bits per byte")))
4450 (define-key serial-mode-line-config-menu
4451 (vector (make-symbol (format "%s-%s" (nth 0 y) (nth 1 y))))
4452 `(menu-item
4453 ,(nth 2 y)
4454 (lambda (event) (interactive "e")
4455 (serial-process-configure ,(nth 0 y) ',(nth 1 y))
4456 (term-update-mode-line)
4457 (message "%s" ,(nth 2 y)))
4458 ;; Use :toggle instead of :radio because a non-standard port
4459 ;; configuration may not match any menu items.
4460 :button (:toggle . ,(equal (plist-get config (nth 0 y))
4461 (nth 1 y))))))))
4462
4463 \f
4464 ;;; Converting process modes to use term mode
4465 ;;; ===========================================================================
4466 ;;; Renaming variables
4467 ;;; Most of the work is renaming variables and functions. These are the common
4468 ;;; ones:
4469 ;;; Local variables:
4470 ;;; last-input-start term-last-input-start
4471 ;;; last-input-end term-last-input-end
4472 ;;; shell-prompt-pattern term-prompt-regexp
4473 ;;; shell-set-directory-error-hook <no equivalent>
4474 ;;; Miscellaneous:
4475 ;;; shell-set-directory <unnecessary>
4476 ;;; shell-mode-map term-mode-map
4477 ;;; Commands:
4478 ;;; shell-send-input term-send-input
4479 ;;; shell-send-eof term-delchar-or-maybe-eof
4480 ;;; kill-shell-input term-kill-input
4481 ;;; interrupt-shell-subjob term-interrupt-subjob
4482 ;;; stop-shell-subjob term-stop-subjob
4483 ;;; quit-shell-subjob term-quit-subjob
4484 ;;; kill-shell-subjob term-kill-subjob
4485 ;;; kill-output-from-shell term-kill-output
4486 ;;; show-output-from-shell term-show-output
4487 ;;; copy-last-shell-input Use term-previous-input/term-next-input
4488 ;;;
4489 ;;; SHELL-SET-DIRECTORY is gone, its functionality taken over by
4490 ;;; SHELL-DIRECTORY-TRACKER, the shell mode's term-input-filter-functions.
4491 ;;; Term mode does not provide functionality equivalent to
4492 ;;; shell-set-directory-error-hook; it is gone.
4493 ;;;
4494 ;;; term-last-input-start is provided for modes which want to munge
4495 ;;; the buffer after input is sent, perhaps because the inferior
4496 ;;; insists on echoing the input. The LAST-INPUT-START variable in
4497 ;;; the old shell package was used to implement a history mechanism,
4498 ;;; but you should think twice before using term-last-input-start
4499 ;;; for this; the input history ring often does the job better.
4500 ;;;
4501 ;;; If you are implementing some process-in-a-buffer mode, called foo-mode, do
4502 ;;; *not* create the term-mode local variables in your foo-mode function.
4503 ;;; This is not modular. Instead, call term-mode, and let *it* create the
4504 ;;; necessary term-specific local variables. Then create the
4505 ;;; foo-mode-specific local variables in foo-mode. Set the buffer's keymap to
4506 ;;; be foo-mode-map, and its mode to be foo-mode. Set the term-mode hooks
4507 ;;; (term-{prompt-regexp, input-filter, input-filter-functions,
4508 ;;; get-old-input) that need to be different from the defaults. Call
4509 ;;; foo-mode-hook, and you're done. Don't run the term-mode hook yourself;
4510 ;;; term-mode will take care of it. The following example, from shell.el,
4511 ;;; is typical:
4512 ;;;
4513 ;;; (defvar shell-mode-map '())
4514 ;;; (cond ((not shell-mode-map)
4515 ;;; (setq shell-mode-map (copy-keymap term-mode-map))
4516 ;;; (define-key shell-mode-map "\C-c\C-f" 'shell-forward-command)
4517 ;;; (define-key shell-mode-map "\C-c\C-b" 'shell-backward-command)
4518 ;;; (define-key shell-mode-map "\t" 'term-dynamic-complete)
4519 ;;; (define-key shell-mode-map "\M-?"
4520 ;;; 'term-dynamic-list-filename-completions)))
4521 ;;;
4522 ;;; (defun shell-mode ()
4523 ;;; (interactive)
4524 ;;; (term-mode)
4525 ;;; (setq term-prompt-regexp shell-prompt-pattern)
4526 ;;; (setq major-mode 'shell-mode)
4527 ;;; (setq mode-name "Shell")
4528 ;;; (use-local-map shell-mode-map)
4529 ;;; (make-local-variable 'shell-directory-stack)
4530 ;;; (setq shell-directory-stack nil)
4531 ;;; (add-hook 'term-input-filter-functions 'shell-directory-tracker)
4532 ;;; (run-mode-hooks 'shell-mode-hook))
4533 ;;;
4534 ;;;
4535 ;;; Completion for term-mode users
4536 ;;;
4537 ;;; For modes that use term-mode, term-dynamic-complete-functions is the
4538 ;;; hook to add completion functions to. Functions on this list should return
4539 ;;; non-nil if completion occurs (i.e., further completion should not occur).
4540 ;;; You could use term-dynamic-simple-complete to do the bulk of the
4541 ;;; completion job.
4542 \f
4543 (provide 'term)
4544
4545 ;; arch-tag: eee16bc8-2cd7-4147-9534-a5694752f716
4546 ;;; term.el ends here