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