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