1 ;;; term.el --- general command interpreter in a window stuff
3 ;; Copyright (C) 1988, 1990, 1992, 1994-1995, 2001-2012
4 ;; Free Software Foundation, Inc.
6 ;; Author: Per Bothner <per@bothner.com>
7 ;; Maintainer: Dan Nicolaescu <dann@ics.uci.edu>, Per Bothner <per@bothner.com>
8 ;; Based on comint mode written by: Olin Shivers <shivers@cs.cmu.edu>
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
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'
36 ;; Speed considerations and a few caveats
37 ;; --------------------------------------
39 ;; While the message passing and the colorization surely introduce some
40 ;; overhead this has became so small that IMHO it is surely outweighed by
41 ;; the benefits you get but, as usual, YMMV.
43 ;; Important caveat, when deciding the cursor/'gray 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 ;; incomprehensible 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:
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"))
59 ;; IMPORTANT: additions & changes
60 ;; ------------------------------
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 :).
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.
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!)
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
83 ;; allow root 127.0.0.1
85 ;; # By default nobody can't do anything
89 ;; ----------------------------------------
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...
95 ;; ----------------------------------------
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
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.
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
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 ;; ----------------------------------------
133 ;; - Add hooks to allow raw-mode keys to be configurable
134 ;; - Which keys are better ? \eOA or \e[A ?
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.
147 ;; - Now all the supportable ANSI commands work well.
148 ;; - Reworked a little the code: much less jsh-inspired stuff
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
159 ;; - Implemented a maximum limit for the scroll buffer (stolen from
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
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.
206 ;; # Below, there should be one TERM entry for each termtype that is
210 ;; # EIGHTBIT, followed by '1' for on, '0' for off. (8-bit output)
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
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:
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
245 ;; .jpg 01;35 # image formats
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 ;; ----------------------------------------
262 ;; set host = `hostname`
265 ;; # su does not change this but I'd like it to
267 ;; set user = `whoami`
271 ;; if ( eterm =~ $TERM ) then
273 ;; echo --------------------------------------------------------------
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
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 favorite editor
299 ;; foreach temp (cd pushd)
300 ;; alias $temp "$temp \!* ; echo '\eAnSiTc' $cwd_hack"
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"
312 ;; # Start up & use color ls
314 ;; echo "\eAnSiTh" $host
315 ;; echo "\eAnSiTu" $user
316 ;; echo "\eAnSiTc" $cwd
318 ;; # some housekeeping
325 ;; eval `/bin/dircolors /home/marco/.emacs_dircolors`
330 ;; # Let's not clutter user space
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
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.
397 ;; This is passed to the inferior in the EMACS environment variable,
398 ;; so it is important to increase it if there are protocol-relevant changes.
399 (defconst term-protocol-version
"0.96")
408 "General command interpreter in a window."
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
439 "When using alternate sub-buffer,
440 contains saved term-home-marker from original sub-buffer.")
441 (defvar term-start-line-column
0
442 "(current-column) at start of screen line, or nil if unknown.")
443 (defvar term-current-column
0 "If non-nil, is cache for (current-column).")
444 (defvar term-current-row
0
445 "Current vertical row (relative to home-marker) or nil if unknown.")
446 (defvar term-insert-mode nil
)
447 (defvar term-vertical-motion
)
448 (defvar term-terminal-state
0
449 "State of the terminal emulator:
450 state 0: Normal state
451 state 1: Last character was a graphic in the last column.
452 If next char is graphic, first move one column right
453 \(and line warp) before displaying it.
454 This emulates (more or less) the behavior of xterm.
456 state 3: seen ESC [ (or ESC [ ?)
457 state 4: term-terminal-parameter contains pending output.")
458 (defvar term-kill-echo-list nil
459 "A queue of strings whose echo we want suppressed.")
460 (defvar term-terminal-parameter
)
461 (defvar term-terminal-previous-parameter
)
462 (defvar term-current-face
'default
)
463 (defvar term-scroll-start
0 "Top-most line (inclusive) of scrolling region.")
464 (defvar term-scroll-end
) ; Number of line (zero-based) after scrolling region.
465 (defvar term-pager-count nil
466 "Number of lines before we need to page; if nil, paging is disabled.")
467 (defvar term-saved-cursor nil
)
468 (defvar term-command-hook
)
469 (defvar term-log-buffer nil
)
470 (defvar term-scroll-with-delete nil
471 "If t, forward scrolling should be implemented by delete to
472 top-most line(s); and if nil, scrolling should be implemented
473 by moving term-home-marker. It is set to t if there is a
474 \(non-default) scroll-region OR the alternate buffer is used.")
475 (defvar term-pending-delete-marker
) ; New user input in line mode
476 ; needs to be deleted, because it gets echoed by the inferior.
477 ; To reduce flicker, we defer the delete until the next output.
478 (defvar term-old-mode-map nil
"Saves the old keymap when in char mode.")
479 (defvar term-old-mode-line-format
) ; Saves old mode-line-format while paging.
480 (defvar term-pager-old-local-map nil
"Saves old keymap while paging.")
481 (defvar term-pager-old-filter
) ; Saved process-filter while paging.
483 (defcustom explicit-shell-file-name nil
484 "If non-nil, is file name to use for explicitly requested inferior shell."
485 :type
'(choice (const nil
) file
)
488 (defvar term-prompt-regexp
"^"
489 "Regexp to recognize prompts in the inferior process.
490 Defaults to \"^\", the null string at BOL.
493 Canonical Lisp: \"^[^> \\n]*>+:? *\" (Lucid, franz, kcl, T, cscheme, oaklisp)
494 Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\"
495 franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\"
497 shell: \"^[^#$%>\\n]*[#$%>] *\"
500 This is a good thing to set in mode hooks.")
502 (defvar term-delimiter-argument-list
()
503 "List of characters to recognize as separate arguments in input.
504 Strings comprising a character in this list will separate the arguments
505 surrounding them, and also be regarded as arguments in their own right
506 \(unlike whitespace). See `term-arguments'.
507 Defaults to the empty list.
509 For shells, a good value is (?\\| ?& ?< ?> ?\\( ?\\) ?\\;).
511 This is a good thing to set in mode hooks.")
513 (defcustom term-input-autoexpand nil
514 "If non-nil, expand input command history references on completion.
515 This mirrors the optional behavior of tcsh (its autoexpand and histlit).
517 If the value is `input', then the expansion is seen on input.
518 If the value is `history', then the expansion is only when inserting
519 into the buffer's input ring. See also `term-magic-space' and
520 `term-dynamic-complete'.
522 This variable is buffer-local."
523 :type
'(choice (const nil
) (const t
) (const input
) (const history
))
526 (defcustom term-input-ignoredups nil
527 "If non-nil, don't add input matching the last on the input ring.
528 This mirrors the optional behavior of bash.
530 This variable is buffer-local."
534 (defcustom term-input-ring-file-name nil
535 "If non-nil, name of the file to read/write input history.
536 See also `term-read-input-ring' and `term-write-input-ring'.
538 This variable is buffer-local, and is a good thing to set in mode hooks."
542 (defcustom term-scroll-to-bottom-on-output nil
543 "Controls whether interpreter output causes window to scroll.
544 If nil, then do not scroll. If t or `all', scroll all windows showing buffer.
545 If `this', scroll only the selected window.
546 If `others', scroll only those that are not the selected window.
550 See variable `term-scroll-show-maximum-output'.
551 This variable is buffer-local."
555 (defcustom term-scroll-show-maximum-output nil
556 "Controls how interpreter output causes window to scroll.
557 If non-nil, then show the maximum output when the window is scrolled.
559 See variable `term-scroll-to-bottom-on-output'.
560 This variable is buffer-local."
564 ;; Where gud-display-frame should put the debugging arrow. This is
565 ;; set by the marker-filter, which scans the debugger's output for
566 ;; indications of the current pc.
567 (defvar term-pending-frame nil
)
569 ;;; Here are the per-interpreter hooks.
570 (defvar term-get-old-input
(function term-get-old-input-default
)
571 "Function that submits old text in term mode.
572 This function is called when return is typed while the point is in old text.
573 It returns the text to be submitted as process input. The default is
574 `term-get-old-input-default', which grabs the current line, and strips off
575 leading text matching `term-prompt-regexp'.")
577 (defvar term-dynamic-complete-functions
578 '(term-replace-by-expanded-history term-dynamic-complete-filename
)
579 "List of functions called to perform completion.
580 Functions should return non-nil if completion was performed.
581 See also `term-dynamic-complete'.
583 This is a good thing to set in mode hooks.")
585 (defvar term-input-filter
586 (function (lambda (str) (not (string-match "\\`\\s *\\'" str
))))
587 "Predicate for filtering additions to input history.
588 Only inputs answering true to this function are saved on the input
589 history list. Default is to save anything that isn't all whitespace.")
591 (defvar term-input-filter-functions
'()
592 "Functions to call before input is sent to the process.
593 These functions get one argument, a string containing the text to send.
595 This variable is buffer-local.")
597 (defvar term-input-sender
(function term-simple-send
)
598 "Function to actually send to PROCESS the STRING submitted by user.
599 Usually this is just `term-simple-send', but if your mode needs to
600 massage the input string, this is your hook. This is called from
601 the user command `term-send-input'. `term-simple-send' just sends
602 the string plus a newline.")
604 (defcustom term-eol-on-send t
605 "Non-nil means go to the end of the line before sending input.
606 See `term-send-input'."
610 (defcustom term-mode-hook
'()
611 "Called upon entry into term mode.
612 This is run before the process is cranked up."
616 (defcustom term-exec-hook
'()
617 "Called each time a process is exec'd by `term-exec'.
618 This is called after the process is cranked up. It is useful for things that
619 must be done each time a process is executed in a term mode buffer (e.g.,
620 `process-kill-without-query'). In contrast, `term-mode-hook' is only
621 executed once when the buffer is created."
625 (defvar term-signals-menu
626 (let ((map (make-sparse-keymap "Signals")))
627 (define-key map
[eof]
628 '(menu-item "EOF" term-send-eof
629 :help "Send an EOF to the current buffer's process"))
630 (define-key map [kill]
631 '(menu-item "KILL" term-kill-subjob
632 :help "Send kill signal to the current subjob"))
633 (define-key map [quit]
634 '(menu-item "QUIT" term-quit-subjob
635 :help "Send quit signal to the current subjob."))
636 (define-key map [cont]
637 '(menu-item "CONT" term-continue-subjob
638 :help "Send CONT signal to process buffer's process group"))
639 (define-key map [stop]
640 '(menu-item "STOP" term-stop-subjob
641 :help "Stop the current subjob"))
642 (define-key map [brk]
643 '(menu-item "BREAK" term-interrupt-subjob
644 :help "Interrupt the current subjob"))
645 (cons "Signals" map)))
647 (defvar term-mode-map
648 (let ((map (make-sparse-keymap)))
649 (define-key map "\ep" 'term-previous-input)
650 (define-key map "\en" 'term-next-input)
651 (define-key map "\er" 'term-previous-matching-input)
652 (define-key map "\es" 'term-next-matching-input)
653 (unless (featurep 'xemacs)
654 (define-key map [?\A-\M-r]
655 'term-previous-matching-input-from-input)
656 (define-key map [?\A-\M-s] 'term-next-matching-input-from-input))
657 (define-key map "\e\C-l" 'term-show-output)
658 (define-key map "\C-m" 'term-send-input)
659 (define-key map "\C-d" 'term-delchar-or-maybe-eof)
660 (define-key map "\C-c\C-a" 'term-bol)
661 (define-key map "\C-c\C-u" 'term-kill-input)
662 (define-key map "\C-c\C-w" 'backward-kill-word)
663 (define-key map "\C-c\C-c" 'term-interrupt-subjob)
664 (define-key map "\C-c\C-z" 'term-stop-subjob)
665 (define-key map "\C-c\C-\\" 'term-quit-subjob)
666 (define-key map "\C-c\C-m" 'term-copy-old-input)
667 (define-key map "\C-c\C-o" 'term-kill-output)
668 (define-key map "\C-c\C-r" 'term-show-output)
669 (define-key map "\C-c\C-e" 'term-show-maximum-output)
670 (define-key map "\C-c\C-l" 'term-dynamic-list-input-ring)
671 (define-key map "\C-c\C-n" 'term-next-prompt)
672 (define-key map "\C-c\C-p" 'term-previous-prompt)
673 (define-key map "\C-c\C-d" 'term-send-eof)
674 (define-key map "\C-c\C-k" 'term-char-mode)
675 (define-key map "\C-c\C-j" 'term-line-mode)
676 (define-key map "\C-c\C-q" 'term-pager-toggle)
678 ;; completion: (line mode only)
679 (let ((completion-menu (make-sparse-keymap "Complete")))
680 (define-key map [menu-bar completion]
681 (cons "Complete" completion-menu))
682 (define-key completion-menu [complete-expand]
683 '("Expand File Name" . term-replace-by-expanded-filename))
684 (define-key completion-menu [complete-listing]
685 '("File Completion Listing" . term-dynamic-list-filename-completions))
686 (define-key completion-menu [complete-file]
687 '("Complete File Name" . term-dynamic-complete-filename))
688 (define-key completion-menu [complete]
689 '("Complete Before Point" . term-dynamic-complete)))
691 ;; Input history: (line mode only)
692 (let ((inout-menu (make-sparse-keymap "In/Out")))
693 (define-key map [menu-bar inout]
694 (cons "In/Out" inout-menu))
695 (define-key inout-menu [kill-output]
696 '("Kill Current Output Group" . term-kill-output))
697 (define-key inout-menu [next-prompt]
698 '("Forward Output Group" . term-next-prompt))
699 (define-key inout-menu [previous-prompt]
700 '("Backward Output Group" . term-previous-prompt))
701 (define-key inout-menu [show-maximum-output]
702 '("Show Maximum Output" . term-show-maximum-output))
703 (define-key inout-menu [show-output]
704 '("Show Current Output Group" . term-show-output))
705 (define-key inout-menu [kill-input]
706 '("Kill Current Input" . term-kill-input))
707 (define-key inout-menu [copy-input]
708 '("Copy Old Input" . term-copy-old-input))
709 (define-key inout-menu [forward-matching-history]
710 '("Forward Matching Input..." . term-forward-matching-input))
711 (define-key inout-menu [backward-matching-history]
712 '("Backward Matching Input..." . term-backward-matching-input))
713 (define-key inout-menu [next-matching-history]
714 '("Next Matching Input..." . term-next-matching-input))
715 (define-key inout-menu [previous-matching-history]
716 '("Previous Matching Input..." . term-previous-matching-input))
717 (define-key inout-menu [next-matching-history-from-input]
718 '("Next Matching Current Input" . term-next-matching-input-from-input))
719 (define-key inout-menu [previous-matching-history-from-input]
720 '("Previous Matching Current Input" .
721 term-previous-matching-input-from-input))
722 (define-key inout-menu [next-history]
723 '("Next Input" . term-next-input))
724 (define-key inout-menu [previous-history]
725 '("Previous Input" . term-previous-input))
726 (define-key inout-menu [list-history]
727 '("List Input History" . term-dynamic-list-input-ring))
728 (define-key inout-menu [expand-history]
729 '("Expand History Before Point" . term-replace-by-expanded-history)))
731 (define-key map [menu-bar signals] term-signals-menu)
735 (defvar term-escape-char nil
736 "Escape character for char sub-mode of term mode.
737 Do not change it directly; use `term-set-escape-char' instead.")
739 (defvar term-pager-break-map nil)
742 "True if communications via pty; false if by pipe. Buffer local.
743 This is to work around a bug in Emacs process signaling.")
745 (defvar term-last-input-match ""
746 "Last string searched for by term input history search, for defaulting.
747 Buffer local variable.")
749 (defvar term-input-ring nil)
750 (defvar term-last-input-start)
751 (defvar term-last-input-end)
752 (defvar term-input-ring-index nil
753 "Index of last matched history element.")
754 (defvar term-matching-input-from-input-string ""
755 "Input previously used to match input history.")
756 ; This argument to set-process-filter disables reading from the process,
757 ; assuming this is Emacs 19.20 or newer.
758 (defvar term-pager-filter t)
760 (put 'term-replace-by-expanded-history 'menu-enable 'term-input-autoexpand)
761 (put 'term-input-ring 'permanent-local t)
762 (put 'term-input-ring-index 'permanent-local t)
763 (put 'term-input-autoexpand 'permanent-local t)
764 (put 'term-input-filter-functions 'permanent-local t)
765 (put 'term-scroll-to-bottom-on-output 'permanent-local t)
766 (put 'term-scroll-show-maximum-output 'permanent-local t)
767 (put 'term-ptyp 'permanent-local t)
769 (defmacro term-in-char-mode () '(eq (current-local-map) term-raw-map))
770 (defmacro term-in-line-mode () '(not (term-in-char-mode)))
771 ;; True if currently doing PAGER handling.
772 (defmacro term-pager-enabled () 'term-pager-count)
773 (defmacro term-handling-pager () 'term-pager-old-local-map)
774 (defmacro term-using-alternate-sub-buffer () 'term-saved-home-marker)
776 ;; Let's silence the byte-compiler -mm
777 (defvar term-ansi-at-host nil)
778 (defvar term-ansi-at-dir nil)
779 (defvar term-ansi-at-user nil)
780 (defvar term-ansi-at-message nil)
781 (defvar term-ansi-at-save-user nil)
782 (defvar term-ansi-at-save-pwd nil)
783 (defvar term-ansi-at-save-anon nil)
784 (defvar term-ansi-current-bold nil)
785 (defvar term-ansi-current-color 0)
786 (defvar term-ansi-face-already-done nil)
787 (defvar term-ansi-current-bg-color 0)
788 (defvar term-ansi-current-underline nil)
789 (defvar term-ansi-current-reverse nil)
790 (defvar term-ansi-current-invisible nil)
792 ;; Four should be enough, if you want more, just add. -mm
793 (defvar term-terminal-more-parameters 0)
794 (defvar term-terminal-previous-parameter-2 -1)
795 (defvar term-terminal-previous-parameter-3 -1)
796 (defvar term-terminal-previous-parameter-4 -1)
800 (defcustom term-default-fg-color
801 ;; FIXME: This depends on the current frame, so depending on when
802 ;; it's loaded, the result may be different.
803 (face-foreground term-current-face)
804 "Default color for foreground in `term'."
808 (defcustom term-default-bg-color
809 ;; FIXME: This depends on the current frame, so depending on when
810 ;; it's loaded, the result may be different.
811 (face-background term-current-face)
812 "Default color for background in `term'."
816 ;; Use the same colors that xterm uses, see `xterm-standard-colors'.
817 (defvar ansi-term-color-vector
818 [unspecified "black" "red3" "green3" "yellow3" "blue2"
819 "magenta3" "cyan3" "white"])
821 ;; Inspiration came from comint.el -mm
822 (defcustom term-buffer-maximum-size 2048
823 "The maximum size in lines for term buffers.
824 Term buffers are truncated from the top to be no greater than this number.
825 Notice that a setting of 0 means \"don't truncate anything\". This variable
830 (defvar term-terminal-menu
831 (if (featurep 'xemacs)
833 [ "Character mode" term-char-mode (term-in-line-mode)]
834 [ "Line mode" term-line-mode (term-in-char-mode)]
835 [ "Enable paging" term-pager-toggle (not term-pager-count)]
836 [ "Disable paging" term-pager-toggle term-pager-count])
837 (let ((map (make-sparse-keymap "Terminal")))
838 (define-key map [terminal-pager-enable]
839 '(menu-item "Enable paging" term-fake-pager-enable
840 :help "Enable paging feature"))
841 (define-key map [terminal-pager-disable]
842 '(menu-item "Disable paging" term-fake-pager-disable
843 :help "Disable paging feature"))
844 (define-key map [terminal-char-mode]
845 '(menu-item "Character mode" term-char-mode
846 :help "Switch to char (raw) sub-mode of term mode"))
847 (define-key map [terminal-line-mode]
848 '(menu-item "Line mode" term-line-mode
849 :help "Switch to line (cooked) sub-mode of term mode"))
850 (cons "Terminal" map))))
852 ;; Set up term-raw-map, etc.
855 (let* ((map (make-keymap))
856 (esc-map (make-keymap))
859 (define-key map (make-string 1 i) 'term-send-raw)
860 ;; Avoid O and [. They are used in escape sequences for various keys.
861 (unless (or (eq i ?O) (eq i 91))
862 (define-key esc-map (make-string 1 i) 'term-send-raw-meta))
864 (define-key map [remap self-insert-command] 'term-send-raw)
865 (define-key map "\e" esc-map)
867 ;; Added nearly all the 'gray keys' -mm
869 (if (featurep 'xemacs)
870 (define-key map [button2] 'term-mouse-paste)
871 (define-key map [mouse-2] 'term-mouse-paste)
872 (define-key map [menu-bar terminal] term-terminal-menu)
873 (define-key map [menu-bar signals] term-signals-menu))
874 (define-key map [up] 'term-send-up)
875 (define-key map [down] 'term-send-down)
876 (define-key map [right] 'term-send-right)
877 (define-key map [left] 'term-send-left)
878 (define-key map [delete] 'term-send-del)
879 (define-key map [deletechar] 'term-send-del)
880 (define-key map [backspace] 'term-send-backspace)
881 (define-key map [home] 'term-send-home)
882 (define-key map [end] 'term-send-end)
883 (define-key map [insert] 'term-send-insert)
884 (define-key map [S-prior] 'scroll-down)
885 (define-key map [S-next] 'scroll-up)
886 (define-key map [S-insert] 'term-paste)
887 (define-key map [prior] 'term-send-prior)
888 (define-key map [next] 'term-send-next)
890 "Keyboard map for sending characters directly to the inferior process.")
892 (defvar term-raw-escape-map
893 (let ((map (make-sparse-keymap)))
894 (set-keymap-parent map 'Control-X-prefix)
895 ;; Define standard bindings in term-raw-escape-map.
896 (define-key map "\C-v" (lookup-key (current-global-map) "\C-v"))
897 (define-key map "\C-u" (lookup-key (current-global-map) "\C-u"))
898 (define-key map "\C-q" 'term-pager-toggle)
899 ;; The keybinding for term-char-mode is needed by the menubar code.
900 (define-key map "\C-k" 'term-char-mode)
901 (define-key map "\C-j" 'term-line-mode)
902 ;; It's convenient to have execute-extended-command here.
903 (define-key map [?\M-x] 'execute-extended-command)
906 (defun term-set-escape-char (key)
907 "Change `term-escape-char' and keymaps that depend on it."
908 (when term-escape-char
909 ;; Undo previous term-set-escape-char.
910 (define-key term-raw-map term-escape-char 'term-send-raw))
911 (setq term-escape-char (vector key))
912 (define-key term-raw-map term-escape-char term-raw-escape-map)
913 ;; FIXME: If we later call term-set-escape-char again with another key,
914 ;; we should undo this binding.
915 (define-key term-raw-escape-map term-escape-char 'term-send-raw))
917 (term-set-escape-char (or term-escape-char ?\C-c))
919 (defvar overflow-newline-into-fringe)
921 (defun term-window-width ()
922 (if (featurep 'xemacs)
924 (if (and window-system overflow-newline-into-fringe)
926 (1- (window-width)))))
929 (put 'term-mode 'mode-class 'special)
932 ;; Use this variable as a display table for `term-mode'.
933 (defvar term-display-table
934 (let ((dt (or (copy-sequence standard-display-table)
935 (make-display-table)))
937 ;; avoid changing the display table for ^J
940 (aset dt i (vector i))
944 (aset dt i (vector i))
948 (aset dt i (vector i))
952 (defun term-ansi-reset ()
953 (setq term-current-face (nconc
954 (if term-default-bg-color
955 (list :background term-default-bg-color))
956 (if term-default-fg-color
957 (list :foreground term-default-fg-color))))
958 (setq term-ansi-current-underline nil)
959 (setq term-ansi-current-bold nil)
960 (setq term-ansi-current-reverse nil)
961 (setq term-ansi-current-color 0)
962 (setq term-ansi-current-invisible nil)
963 (setq term-ansi-face-already-done t)
964 (setq term-ansi-current-bg-color 0))
967 "Major mode for interacting with an inferior interpreter.
968 The interpreter name is same as buffer name, sans the asterisks.
970 There are two submodes: line mode and char mode. By default, you are
971 in char mode. In char sub-mode, each character (except
972 `term-escape-char') is sent immediately to the subprocess.
973 The escape character is equivalent to the usual meaning of C-x.
975 In line mode, you send a line of input at a time; use
976 \\[term-send-input] to send.
978 In line mode, this maintains an input history of size
979 `term-input-ring-size', and you can access it with the commands
980 \\[term-next-input], \\[term-previous-input], and
981 \\[term-dynamic-list-input-ring]. Input ring history expansion can be
982 achieved with the commands \\[term-replace-by-expanded-history] or
983 \\[term-magic-space]. Input ring expansion is controlled by the
984 variable `term-input-autoexpand', and addition is controlled by the
985 variable `term-input-ignoredups'.
987 Input to, and output from, the subprocess can cause the window to scroll to
988 the end of the buffer. See variables `term-scroll-to-bottom-on-input',
989 and `term-scroll-to-bottom-on-output'.
991 If you accidentally suspend your process, use \\[term-continue-subjob]
994 This mode can be customized to create specific modes for running
995 particular subprocesses. This can be done by setting the hooks
996 `term-input-filter-functions', `term-input-filter',
997 `term-input-sender' and `term-get-old-input' to appropriate functions,
998 and the variable `term-prompt-regexp' to the appropriate regular
1001 Commands in raw mode:
1005 Commands in line mode:
1009 Entry to this mode runs the hooks on `term-mode-hook'."
1011 ;; Do not remove this. All major modes must do this.
1012 (kill-all-local-variables)
1013 (setq major-mode 'term-mode)
1014 (setq mode-name "Term")
1015 (use-local-map term-mode-map)
1016 ;; we do not want indent to sneak in any tabs
1017 (setq indent-tabs-mode nil)
1018 (setq buffer-display-table term-display-table)
1019 (make-local-variable 'term-home-marker)
1020 (setq term-home-marker (copy-marker 0))
1021 (make-local-variable 'term-saved-home-marker)
1022 (make-local-variable 'term-height)
1023 (make-local-variable 'term-width)
1024 (setq term-width (term-window-width))
1025 (setq term-height (1- (window-height)))
1026 (make-local-variable 'term-terminal-parameter)
1027 (make-local-variable 'term-saved-cursor)
1028 (make-local-variable 'term-last-input-start)
1029 (setq term-last-input-start (make-marker))
1030 (make-local-variable 'term-last-input-end)
1031 (setq term-last-input-end (make-marker))
1032 (make-local-variable 'term-last-input-match)
1033 (setq term-last-input-match "")
1034 (make-local-variable 'term-prompt-regexp) ; Don't set; default
1035 (make-local-variable 'term-input-ring-size) ; ...to global val.
1036 (make-local-variable 'term-input-ring)
1037 (make-local-variable 'term-input-ring-file-name)
1038 (or (and (boundp 'term-input-ring) term-input-ring)
1039 (setq term-input-ring (make-ring term-input-ring-size)))
1040 (make-local-variable 'term-input-ring-index)
1041 (or (and (boundp 'term-input-ring-index) term-input-ring-index)
1042 (setq term-input-ring-index nil))
1044 (make-local-variable 'term-command-hook)
1045 (setq term-command-hook (symbol-function 'term-command-hook))
1047 ;; I'm not sure these saves are necessary but, since I
1048 ;; haven't tested the whole thing on a net connected machine with
1049 ;; a properly configured ange-ftp, I've decided to be conservative
1050 ;; and put them in. -mm
1052 (make-local-variable 'term-ansi-at-host)
1053 (setq term-ansi-at-host (system-name))
1055 (make-local-variable 'term-ansi-at-dir)
1056 (setq term-ansi-at-dir default-directory)
1058 (make-local-variable 'term-ansi-at-message)
1059 (setq term-ansi-at-message nil)
1061 ;; For user tracking purposes -mm
1062 (make-local-variable 'ange-ftp-default-user)
1063 (make-local-variable 'ange-ftp-default-password)
1064 (make-local-variable 'ange-ftp-generate-anonymous-password)
1066 ;; You may want to have different scroll-back sizes -mm
1067 (make-local-variable 'term-buffer-maximum-size)
1069 ;; Of course these have to be buffer-local -mm
1070 (make-local-variable 'term-ansi-current-bold)
1071 (make-local-variable 'term-ansi-current-color)
1072 (make-local-variable 'term-ansi-face-already-done)
1073 (make-local-variable 'term-ansi-current-bg-color)
1074 (make-local-variable 'term-ansi-current-underline)
1075 (make-local-variable 'term-ansi-current-reverse)
1076 (make-local-variable 'term-ansi-current-invisible)
1078 (make-local-variable 'term-terminal-parameter)
1079 (make-local-variable 'term-terminal-previous-parameter)
1080 (make-local-variable 'term-terminal-previous-parameter-2)
1081 (make-local-variable 'term-terminal-previous-parameter-3)
1082 (make-local-variable 'term-terminal-previous-parameter-4)
1083 (make-local-variable 'term-terminal-more-parameters)
1085 (make-local-variable 'term-terminal-state)
1086 (make-local-variable 'term-kill-echo-list)
1087 (make-local-variable 'term-start-line-column)
1088 (make-local-variable 'term-current-column)
1089 (make-local-variable 'term-current-row)
1090 (make-local-variable 'term-log-buffer)
1091 (make-local-variable 'term-scroll-start)
1092 (make-local-variable 'term-scroll-end)
1093 (setq term-scroll-end term-height)
1094 (make-local-variable 'term-scroll-with-delete)
1095 (make-local-variable 'term-pager-count)
1096 (make-local-variable 'term-pager-old-local-map)
1097 (make-local-variable 'term-old-mode-map)
1098 (make-local-variable 'term-insert-mode)
1099 (make-local-variable 'term-dynamic-complete-functions)
1100 (make-local-variable 'term-completion-fignore)
1101 (make-local-variable 'term-get-old-input)
1102 (make-local-variable 'term-matching-input-from-input-string)
1103 (make-local-variable 'term-input-autoexpand)
1104 (make-local-variable 'term-input-ignoredups)
1105 (make-local-variable 'term-delimiter-argument-list)
1106 (make-local-variable 'term-input-filter-functions)
1107 (make-local-variable 'term-input-filter)
1108 (make-local-variable 'term-input-sender)
1109 (make-local-variable 'term-eol-on-send)
1110 (make-local-variable 'term-scroll-to-bottom-on-output)
1111 (make-local-variable 'term-scroll-show-maximum-output)
1112 (make-local-variable 'term-ptyp)
1113 (make-local-variable 'term-exec-hook)
1114 (make-local-variable 'term-vertical-motion)
1115 (make-local-variable 'term-pending-delete-marker)
1116 (setq term-pending-delete-marker (make-marker))
1117 (make-local-variable 'term-current-face)
1119 (make-local-variable 'term-pending-frame)
1120 (setq term-pending-frame nil)
1121 ;; Cua-mode's keybindings interfere with the term keybindings, disable it.
1122 (set (make-local-variable 'cua-mode) nil)
1123 (run-mode-hooks 'term-mode-hook)
1124 (when (featurep 'xemacs)
1126 (append current-menubar (list term-terminal-menu))))
1128 (setq term-input-ring (make-ring term-input-ring-size)))
1129 (term-update-mode-line))
1131 (defun term-reset-size (height width)
1132 (setq term-height height)
1133 (setq term-width width)
1134 (setq term-start-line-column nil)
1135 (setq term-current-row nil)
1136 (setq term-current-column nil)
1137 (term-set-scroll-region 0 height))
1139 ;; Recursive routine used to check if any string in term-kill-echo-list
1140 ;; matches part of the buffer before point.
1141 ;; If so, delete that matched part of the buffer - this suppresses echo.
1142 ;; Also, remove that string from the term-kill-echo-list.
1143 ;; We *also* remove any older string on the list, as a sanity measure,
1144 ;; in case something gets out of sync. (Except for type-ahead, there
1145 ;; should only be one element in the list.)
1147 (defun term-check-kill-echo-list ()
1148 (let ((cur term-kill-echo-list) (found nil) (save-point (point)))
1153 (let* ((str (car cur)) (len (length str)) (start (- (point) len)))
1154 (if (and (>= start (point-min))
1155 (string= str (buffer-substring start (point))))
1156 (progn (delete-char (- len))
1157 (setq term-kill-echo-list (cdr cur))
1158 (setq term-current-column nil)
1159 (setq term-current-row nil)
1160 (setq term-start-line-column nil)
1161 (setq cur nil found t))
1162 (setq cur (cdr cur))))))
1164 (goto-char save-point)))
1167 (defun term-check-size (process)
1168 (when (or (/= term-height (1- (window-height)))
1169 (/= term-width (term-window-width)))
1170 (term-reset-size (1- (window-height)) (term-window-width))
1171 (set-process-window-size process term-height term-width)))
1173 (defun term-send-raw-string (chars)
1175 (let ((proc (get-buffer-process (current-buffer))))
1177 (error "Current buffer has no process")
1178 ;; Note that (term-current-row) must be called *after*
1179 ;; (point) has been updated to (process-mark proc).
1180 (goto-char (process-mark proc))
1181 (when (term-pager-enabled)
1182 (setq term-pager-count (term-current-row)))
1183 (process-send-string proc chars))))
1185 (defun term-send-raw ()
1186 "Send the last character typed through the terminal-emulator
1187 without any interpretation."
1189 (let ((keys (this-command-keys)))
1190 (term-send-raw-string (string (aref keys (1- (length keys)))))))
1192 (defun term-send-raw-meta ()
1194 (let ((char last-input-event))
1195 (when (symbolp last-input-event)
1196 ;; Convert `return' to C-m, etc.
1197 (let ((tmp (get char 'event-symbol-elements)))
1199 (setq char (car tmp)))
1200 (when (symbolp char)
1201 (setq tmp (get char 'ascii-character))
1204 (setq char (event-basic-type char))
1205 (term-send-raw-string (if (and (numberp char)
1208 (make-string 1 char)
1209 (format "\e%c" char)))))
1211 (defun term-mouse-paste (click)
1212 "Insert the primary selection at the position clicked on."
1214 (if (featurep 'xemacs)
1215 (term-send-raw-string
1216 (or (condition-case () (x-get-selection) (error ()))
1217 (error "No selection available")))
1218 ;; Give temporary modes such as isearch a chance to turn off.
1219 (run-hooks 'mouse-leave-buffer-hook)
1220 (setq this-command 'yank)
1221 (mouse-set-point click)
1222 (term-send-raw-string
1223 (or (cond ; From `mouse-yank-primary':
1224 ((eq system-type 'windows-nt)
1225 (or (x-get-selection 'PRIMARY)
1226 (x-get-selection-value)))
1227 ((fboundp 'x-get-selection-value)
1228 (or (x-get-selection-value)
1229 (x-get-selection 'PRIMARY)))
1231 (x-get-selection 'PRIMARY)))
1232 (error "No selection is available")))))
1234 (defun term-paste ()
1235 "Insert the last stretch of killed text at point."
1237 (term-send-raw-string (current-kill 0)))
1239 ;; Which would be better: "\e[A" or "\eOA"? readline accepts either.
1240 ;; For my configuration it's definitely better \eOA but YMMV. -mm
1241 ;; For example: vi works with \eOA while elm wants \e[A ...
1242 ;; (terminfo: kcuu1, kcud1, kcuf1, kcub1, khome, kend, kpp, knp, kdch1, kbs)
1243 (defun term-send-up () (interactive) (term-send-raw-string "\eOA"))
1244 (defun term-send-down () (interactive) (term-send-raw-string "\eOB"))
1245 (defun term-send-right () (interactive) (term-send-raw-string "\eOC"))
1246 (defun term-send-left () (interactive) (term-send-raw-string "\eOD"))
1247 (defun term-send-home () (interactive) (term-send-raw-string "\e[1~"))
1248 (defun term-send-insert() (interactive) (term-send-raw-string "\e[2~"))
1249 (defun term-send-end () (interactive) (term-send-raw-string "\e[4~"))
1250 (defun term-send-prior () (interactive) (term-send-raw-string "\e[5~"))
1251 (defun term-send-next () (interactive) (term-send-raw-string "\e[6~"))
1252 (defun term-send-del () (interactive) (term-send-raw-string "\e[3~"))
1253 (defun term-send-backspace () (interactive) (term-send-raw-string "\C-?"))
1255 (defun term-char-mode ()
1256 "Switch to char (\"raw\") sub-mode of term mode.
1257 Each character you type is sent directly to the inferior without
1258 intervention from Emacs, except for the escape character (usually C-c)."
1260 ;; FIXME: Emit message? Cfr ilisp-raw-message
1261 (when (term-in-line-mode)
1262 (setq term-old-mode-map (current-local-map))
1263 (use-local-map term-raw-map)
1265 ;; Send existing partial line to inferior (without newline).
1266 (let ((pmark (process-mark (get-buffer-process (current-buffer))))
1267 (save-input-sender term-input-sender))
1268 (when (> (point) pmark)
1271 (setq term-input-sender
1272 (symbol-function 'term-send-string))
1275 (setq term-input-sender save-input-sender))))
1276 (term-update-mode-line)))
1278 (defun term-line-mode ()
1279 "Switch to line (\"cooked\") sub-mode of term mode.
1280 This means that Emacs editing commands work as normally, until
1281 you type \\[term-send-input] which sends the current line to the inferior."
1283 (when (term-in-char-mode)
1284 (use-local-map term-old-mode-map)
1285 (term-update-mode-line)))
1287 (defun term-update-mode-line ()
1288 (let ((term-mode (if (term-in-char-mode) "char" "line"))
1289 (term-page (when (term-pager-enabled) " page"))
1291 (serial-item-config)
1292 (proc (get-buffer-process (current-buffer))))
1293 (when (and (term-check-proc (current-buffer))
1294 (equal (process-type nil) 'serial))
1295 (let ((temp (serial-speed)))
1296 (setq serial-item-speed
1298 ,(or (and temp (format " %d" temp)) "")
1299 help-echo "mouse-1: Change the speed of the serial port"
1300 mouse-face mode-line-highlight
1301 local-map (keymap (mode-line keymap
1302 (down-mouse-1 . serial-mode-line-speed-menu-1))))))
1303 (let ((temp (process-contact proc :summary)))
1304 (setq serial-item-config
1306 ,(or (and temp (format " %s" temp)) "")
1307 help-echo "mouse-1: Change the configuration of the serial port"
1308 mouse-face mode-line-highlight
1309 local-map (keymap (mode-line keymap
1310 (down-mouse-1 . serial-mode-line-config-menu-1)))))))
1311 (setq mode-line-process
1312 (list ": " term-mode term-page
1316 (force-mode-line-update))
1318 (defun term-check-proc (buffer)
1319 "True if there is a process associated w/buffer BUFFER, and it
1320 is alive. BUFFER can be either a buffer or the name of one."
1321 (let ((proc (get-buffer-process buffer)))
1322 (and proc (memq (process-status proc) '(run stop open listen connect)))))
1325 (defun make-term (name program &optional startfile &rest switches)
1326 "Make a term process NAME in a buffer, running PROGRAM.
1327 The name of the buffer is made by surrounding NAME with `*'s.
1328 If there is already a running process in that buffer, it is not restarted.
1329 Optional third arg STARTFILE is the name of a file to send the contents of to
1330 the process. Any more args are arguments to PROGRAM."
1331 (let ((buffer (get-buffer-create (concat "*" name "*"))))
1332 ;; If no process, or nuked process, crank up a new one and put buffer in
1333 ;; term mode. Otherwise, leave buffer and existing process alone.
1334 (cond ((not (term-check-proc buffer))
1335 (with-current-buffer buffer
1336 (term-mode)) ; Install local vars, mode, keymap, ...
1337 (term-exec buffer name program startfile switches)))
1341 (defun term (program)
1342 "Start a terminal-emulator in a new buffer.
1343 The buffer is in Term mode; see `term-mode' for the
1344 commands to use in that buffer.
1346 \\<term-raw-map>Type \\[switch-to-buffer] to switch to another buffer."
1347 (interactive (list (read-from-minibuffer "Run program: "
1348 (or explicit-shell-file-name
1352 (set-buffer (make-term "terminal" program))
1355 (switch-to-buffer "*terminal*"))
1357 (defun term-exec (buffer name command startfile switches)
1358 "Start up a process in buffer for term modes.
1359 Blasts any old process running in the buffer. Doesn't set the buffer mode.
1360 You can use this to cheaply run a series of processes in the same term
1361 buffer. The hook `term-exec-hook' is run after each exec."
1362 (with-current-buffer buffer
1363 (let ((proc (get-buffer-process buffer))) ; Blast any old process.
1364 (when proc (delete-process proc)))
1365 ;; Crank up a new process
1366 (let ((proc (term-exec-1 name buffer command switches)))
1367 (make-local-variable 'term-ptyp)
1368 (setq term-ptyp process-connection-type) ; t if pty, nil if pipe.
1369 ;; Jump to the end, and set the process mark.
1370 (goto-char (point-max))
1371 (set-marker (process-mark proc) (point))
1372 (set-process-filter proc 'term-emulate-terminal)
1373 (set-process-sentinel proc 'term-sentinel)
1374 ;; Feed it the startfile.
1376 ;;This is guaranteed to wait long enough
1377 ;;but has bad results if the term does not prompt at all
1378 ;; (while (= size (buffer-size))
1380 ;;I hope 1 second is enough!
1382 (goto-char (point-max))
1383 (insert-file-contents startfile)
1385 proc (delete-and-extract-region (point) (point-max)))))
1386 (run-hooks 'term-exec-hook)
1389 (defun term-sentinel (proc msg)
1390 "Sentinel for term buffers.
1391 The main purpose is to get rid of the local keymap."
1392 (let ((buffer (process-buffer proc)))
1393 (when (memq (process-status proc) '(signal exit))
1394 (if (null (buffer-name buffer))
1396 (set-process-buffer proc nil)
1397 (with-current-buffer buffer
1398 ;; Write something in the compilation buffer
1399 ;; and hack its mode line.
1400 ;; Get rid of local keymap.
1402 (term-handle-exit (process-name proc) msg)
1403 ;; Since the buffer and mode line will show that the
1404 ;; process is dead, we can delete it now. Otherwise it
1405 ;; will stay around until M-x list-processes.
1406 (delete-process proc))))))
1408 (defun term-handle-exit (process-name msg)
1409 "Write process exit (or other change) message MSG in the current buffer."
1410 (let ((buffer-read-only nil)
1413 ;; Record where we put the message, so we can ignore it
1416 (insert ?\n "Process " process-name " " msg)
1417 ;; Force mode line redisplay soon.
1418 (force-mode-line-update)
1419 (when (and opoint (< opoint omax))
1420 (goto-char opoint))))
1423 (defvar term-term-name "eterm-color"
1424 "Name to use for TERM.
1425 Using \"emacs\" loses, because bash disables editing if $TERM == emacs.")
1426 ;; Format string, usage:
1427 ;; (format term-termcap-string emacs-term-name "TERMCAP=" 24 80)
1428 (defvar term-termcap-format
1429 "%s%s:li#%d:co#%d:cl=\\E[H\\E[J:cd=\\E[J:bs:am:xn:cm=\\E[%%i%%d;%%dH\
1430 :nd=\\E[C:up=\\E[A:ce=\\E[K:ho=\\E[H:pt\
1431 :al=\\E[L:dl=\\E[M:DL=\\E[%%dM:AL=\\E[%%dL:cs=\\E[%%i%%d;%%dr:sf=^J\
1432 :dc=\\E[P:DC=\\E[%%dP:IC=\\E[%%d@:im=\\E[4h:ei=\\E[4l:mi:\
1433 :so=\\E[7m:se=\\E[m:us=\\E[4m:ue=\\E[m:md=\\E[1m:mr=\\E[7m:me=\\E[m\
1434 :UP=\\E[%%dA:DO=\\E[%%dB:LE=\\E[%%dD:RI=\\E[%%dC\
1435 :kl=\\EOD:kd=\\EOB:kr=\\EOC:ku=\\EOA:kN=\\E[6~:kP=\\E[5~:@7=\\E[4~:kh=\\E[1~\
1436 :mk=\\E[8m:cb=\\E[1K:op=\\E[39;49m:Co#8:pa#64:AB=\\E[4%%dm:AF=\\E[3%%dm:cr=^M\
1437 :bl=^G:do=^J:le=^H:ta=^I:se=\\E[27m:ue=\\E24m\
1438 :kb=^?:kD=^[[3~:sc=\\E7:rc=\\E8:r1=\\Ec:"
1440 ;; don't define :te=\\E[2J\\E[?47l\\E8:ti=\\E7\\E[?47h\
1441 "Termcap capabilities supported.")
1443 ;; This auxiliary function cranks up the process for term-exec in
1444 ;; the appropriate environment.
1446 (defun term-exec-1 (name buffer command switches)
1447 ;; We need to do an extra (fork-less) exec to run stty.
1448 ;; (This would not be needed if we had suitable Emacs primitives.)
1449 ;; The 'if ...; then shift; fi' hack is because Bourne shell
1450 ;; loses one arg when called with -c, and newer shells (bash, ksh) don't.
1451 ;; Thus we add an extra dummy argument "..", and then remove it.
1452 (let ((process-environment
1455 (format "TERM=%s" term-term-name)
1456 (format "TERMINFO=%s" data-directory)
1457 (format term-termcap-format "TERMCAP="
1458 term-term-name term-height term-width)
1459 ;; We are going to get rid of the binding for EMACS,
1460 ;; probably in Emacs 23, because it breaks
1461 ;; `./configure' of some packages that expect it to
1462 ;; say where to find EMACS.
1463 (format "EMACS=%s (term:%s)" emacs-version term-protocol-version)
1464 (format "INSIDE_EMACS=%s,term:%s" emacs-version term-protocol-version)
1465 (format "LINES=%d" term-height)
1466 (format "COLUMNS=%d" term-width))
1467 process-environment))
1468 (process-connection-type t)
1469 ;; We should suppress conversion of end-of-line format.
1470 (inhibit-eol-conversion t)
1471 ;; The process's output contains not just chars but also binary
1472 ;; escape codes, so we need to see the raw output. We will have to
1473 ;; do the decoding by hand on the parts that are made of chars.
1474 (coding-system-for-read 'binary))
1475 (apply 'start-process name buffer
1477 (format "stty -nl echo rows %d columns %d sane 2>/dev/null;\
1478 if [ $1 = .. ]; then shift; fi; exec \"$@\""
1479 term-height term-width)
1484 ;;; Input history processing in a buffer
1485 ;; ===========================================================================
1486 ;; Useful input history functions, courtesy of the Ergo group.
1489 ;; term-dynamic-list-input-ring List history in help buffer.
1490 ;; term-previous-input Previous input...
1491 ;; term-previous-matching-input ...matching a string.
1492 ;; term-previous-matching-input-from-input ... matching the current input.
1493 ;; term-next-input Next input...
1494 ;; term-next-matching-input ...matching a string.
1495 ;; term-next-matching-input-from-input ... matching the current input.
1496 ;; term-backward-matching-input Backwards input...
1497 ;; term-forward-matching-input ...matching a string.
1498 ;; term-replace-by-expanded-history Expand history at point;
1499 ;; replace with expanded history.
1500 ;; term-magic-space Expand history and insert space.
1503 ;; term-read-input-ring Read into term-input-ring...
1504 ;; term-write-input-ring Write to term-input-ring-file-name.
1505 ;; term-replace-by-expanded-history-before-point Workhorse function.
1507 (defun term-read-input-ring (&optional silent)
1508 "Set the buffer's `term-input-ring' from a history file.
1509 The name of the file is given by the variable `term-input-ring-file-name'.
1510 The history ring is of size `term-input-ring-size', regardless of file size.
1511 If `term-input-ring-file-name' is nil this function does nothing.
1513 If the optional argument SILENT is non-nil, we say nothing about a
1514 failure to read the history file.
1516 This function is useful for major mode commands and mode hooks.
1518 The structure of the history file should be one input command per line,
1519 with the most recent command last.
1520 See also `term-input-ignoredups' and `term-write-input-ring'."
1521 (cond ((or (null term-input-ring-file-name)
1522 (equal term-input-ring-file-name ""))
1524 ((not (file-readable-p term-input-ring-file-name))
1526 (message "Cannot read history file %s"
1527 term-input-ring-file-name)))
1529 (let ((file term-input-ring-file-name)
1531 (ring (make-ring term-input-ring-size)))
1533 (insert-file-contents file)
1534 ;; Save restriction in case file is already visited...
1535 ;; Watch for those date stamps in history files!
1536 (goto-char (point-max))
1537 (while (and (< count term-input-ring-size)
1538 (re-search-backward "^[ \t]*\\([^#\n].*\\)[ \t]*$"
1540 (let ((history (buffer-substring (match-beginning 1)
1542 (when (or (null term-input-ignoredups)
1544 (not (string-equal (ring-ref ring 0) history)))
1545 (ring-insert-at-beginning ring history)))
1546 (setq count (1+ count))))
1547 (setq term-input-ring ring
1548 term-input-ring-index nil)))))
1550 (defun term-write-input-ring ()
1551 "Write the buffer's `term-input-ring' to a history file.
1552 The name of the file is given by the variable `term-input-ring-file-name'.
1553 The original contents of the file are lost if `term-input-ring' is not empty.
1554 If `term-input-ring-file-name' is nil this function does nothing.
1556 Useful within process sentinels.
1558 See also `term-read-input-ring'."
1559 (cond ((or (null term-input-ring-file-name)
1560 (equal term-input-ring-file-name "")
1561 (null term-input-ring) (ring-empty-p term-input-ring))
1563 ((not (file-writable-p term-input-ring-file-name))
1564 (message "Cannot write history file %s" term-input-ring-file-name))
1566 (let* ((history-buf (get-buffer-create " *Temp Input History*"))
1567 (ring term-input-ring)
1568 (file term-input-ring-file-name)
1569 (index (ring-length ring)))
1570 ;; Write it all out into a buffer first. Much faster, but messier,
1571 ;; than writing it one line at a time.
1572 (with-current-buffer history-buf
1575 (setq index (1- index))
1576 (insert (ring-ref ring index) ?\n))
1577 (write-region (buffer-string) nil file nil 'no-message)
1578 (kill-buffer nil))))))
1581 (defun term-dynamic-list-input-ring ()
1582 "List in help buffer the buffer's input history."
1584 (if (or (not (ring-p term-input-ring))
1585 (ring-empty-p term-input-ring))
1586 (message "No history")
1588 (history-buffer " *Input History*")
1589 (index (1- (ring-length term-input-ring)))
1590 (conf (current-window-configuration)))
1591 ;; We have to build up a list ourselves from the ring vector.
1593 (setq history (cons (ring-ref term-input-ring index) history)
1595 ;; Change "completion" to "history reference"
1596 ;; to make the display accurate.
1597 (with-output-to-temp-buffer history-buffer
1598 (display-completion-list history)
1599 (set-buffer history-buffer)
1601 (while (search-backward "completion" nil 'move)
1602 (replace-match "history reference")))
1604 (message "Hit space to flush")
1605 (let ((ch (read-event)))
1607 (set-window-configuration conf)
1608 (setq unread-command-events (list ch)))))))
1611 (defun term-regexp-arg (prompt)
1612 ;; Return list of regexp and prefix arg using PROMPT.
1613 (let* (;; Don't clobber this.
1614 (last-command last-command)
1615 (regexp (read-from-minibuffer prompt nil nil nil
1616 'minibuffer-history-search-history)))
1617 (list (if (string-equal regexp "")
1618 (setcar minibuffer-history-search-history
1619 (nth 1 minibuffer-history-search-history))
1621 (prefix-numeric-value current-prefix-arg))))
1623 (defun term-search-arg (arg)
1624 ;; First make sure there is a ring and that we are after the process mark
1625 (cond ((not (term-after-pmark-p))
1626 (error "Not at command line"))
1627 ((or (null term-input-ring)
1628 (ring-empty-p term-input-ring))
1629 (error "Empty input ring"))
1631 ;; arg of zero resets search from beginning, and uses arg of 1
1632 (setq term-input-ring-index nil)
1637 (defun term-search-start (arg)
1638 ;; Index to start a directional search, starting at term-input-ring-index
1639 (if term-input-ring-index
1640 ;; If a search is running, offset by 1 in direction of arg
1641 (mod (+ term-input-ring-index (if (> arg 0) 1 -1))
1642 (ring-length term-input-ring))
1643 ;; For a new search, start from beginning or end, as appropriate
1645 0 ; First elt for forward search
1646 (1- (ring-length term-input-ring))))) ; Last elt for backward search
1648 (defun term-previous-input-string (arg)
1649 "Return the string ARG places along the input ring.
1650 Moves relative to `term-input-ring-index'."
1651 (ring-ref term-input-ring (if term-input-ring-index
1652 (mod (+ arg term-input-ring-index)
1653 (ring-length term-input-ring))
1656 (defun term-previous-input (arg)
1657 "Cycle backwards through input history."
1659 (term-previous-matching-input "." arg))
1661 (defun term-next-input (arg)
1662 "Cycle forwards through input history."
1664 (term-previous-input (- arg)))
1666 (defun term-previous-matching-input-string (regexp arg)
1667 "Return the string matching REGEXP ARG places along the input ring.
1668 Moves relative to `term-input-ring-index'."
1669 (let* ((pos (term-previous-matching-input-string-position regexp arg)))
1670 (when pos (ring-ref term-input-ring pos))))
1672 (defun term-previous-matching-input-string-position
1673 (regexp arg &optional start)
1674 "Return the index matching REGEXP ARG places along the input ring.
1675 Moves relative to START, or `term-input-ring-index'."
1676 (when (or (not (ring-p term-input-ring))
1677 (ring-empty-p term-input-ring))
1678 (error "No history"))
1679 (let* ((len (ring-length term-input-ring))
1680 (motion (if (> arg 0) 1 -1))
1681 (n (mod (- (or start (term-search-start arg)) motion) len))
1682 (tried-each-ring-item nil)
1684 ;; Do the whole search as many times as the argument says.
1685 (while (and (/= arg 0) (not tried-each-ring-item))
1688 n (mod (+ n motion) len))
1689 ;; If we haven't reached a match, step some more.
1690 (while (and (< n len) (not tried-each-ring-item)
1691 (not (string-match regexp (ring-ref term-input-ring n))))
1692 (setq n (mod (+ n motion) len)
1693 ;; If we have gone all the way around in this search.
1694 tried-each-ring-item (= n prev)))
1695 (setq arg (if (> arg 0) (1- arg) (1+ arg))))
1696 ;; Now that we know which ring element to use, if we found it, return that.
1697 (when (string-match regexp (ring-ref term-input-ring n))
1700 (defun term-previous-matching-input (regexp n)
1701 "Search backwards through input history for match for REGEXP.
1702 \(Previous history elements are earlier commands.)
1703 With prefix argument N, search for Nth previous match.
1704 If N is negative, find the next or Nth next match."
1705 (interactive (term-regexp-arg "Previous input matching (regexp): "))
1706 (setq n (term-search-arg n))
1707 (let ((pos (term-previous-matching-input-string-position regexp n)))
1708 ;; Has a match been found?
1711 (setq term-input-ring-index pos)
1712 (message "History item: %d" (1+ pos))
1714 ;; Can't use kill-region as it sets this-command
1715 (process-mark (get-buffer-process (current-buffer))) (point))
1716 (insert (ring-ref term-input-ring pos)))))
1718 (defun term-next-matching-input (regexp n)
1719 "Search forwards through input history for match for REGEXP.
1720 \(Later history elements are more recent commands.)
1721 With prefix argument N, search for Nth following match.
1722 If N is negative, find the previous or Nth previous match."
1723 (interactive (term-regexp-arg "Next input matching (regexp): "))
1724 (term-previous-matching-input regexp (- n)))
1726 (defun term-previous-matching-input-from-input (n)
1727 "Search backwards through input history for match for current input.
1728 \(Previous history elements are earlier commands.)
1729 With prefix argument N, search for Nth previous match.
1730 If N is negative, search forwards for the -Nth following match."
1732 (when (not (memq last-command '(term-previous-matching-input-from-input
1733 term-next-matching-input-from-input)))
1734 ;; Starting a new search
1735 (setq term-matching-input-from-input-string
1737 (process-mark (get-buffer-process (current-buffer)))
1739 term-input-ring-index nil))
1740 (term-previous-matching-input
1741 (concat "^" (regexp-quote term-matching-input-from-input-string))
1744 (defun term-next-matching-input-from-input (n)
1745 "Search forwards through input history for match for current input.
1746 \(Following history elements are more recent commands.)
1747 With prefix argument N, search for Nth following match.
1748 If N is negative, search backwards for the -Nth previous match."
1750 (term-previous-matching-input-from-input (- n)))
1753 (defun term-replace-by-expanded-history (&optional silent)
1754 "Expand input command history references before point.
1755 Expansion is dependent on the value of `term-input-autoexpand'.
1757 This function depends on the buffer's idea of the input history, which may not
1758 match the command interpreter's idea, assuming it has one.
1760 Assumes history syntax is like typical Un*x shells'. However, since Emacs
1761 cannot know the interpreter's idea of input line numbers, assuming it has one,
1762 it cannot expand absolute input line number references.
1764 If the optional argument SILENT is non-nil, never complain
1765 even if history reference seems erroneous.
1767 See `term-magic-space' and `term-replace-by-expanded-history-before-point'.
1769 Returns t if successful."
1771 (when (and term-input-autoexpand
1772 (string-match "[!^]" (funcall term-get-old-input))
1773 (save-excursion (beginning-of-line)
1774 (looking-at term-prompt-regexp)))
1775 ;; Looks like there might be history references in the command.
1776 (let ((previous-modified-tick (buffer-modified-tick)))
1777 (message "Expanding history references...")
1778 (term-replace-by-expanded-history-before-point silent)
1779 (/= previous-modified-tick (buffer-modified-tick)))))
1782 (defun term-replace-by-expanded-history-before-point (silent)
1783 "Expand directory stack reference before point.
1784 See `term-replace-by-expanded-history'. Returns t if successful."
1786 (let ((toend (- (line-end-position) (point)))
1787 (start (progn (term-bol nil) (point))))
1789 (skip-chars-forward "^!^" (- (line-end-position) toend))
1790 (< (point) (- (line-end-position) toend)))
1791 ;; This seems a bit complex. We look for references such as !!, !-num,
1792 ;; !foo, !?foo, !{bar}, !?{bar}, ^oh, ^my^, ^god^it, ^never^ends^.
1793 ;; If that wasn't enough, the plings can be suffixed with argument
1794 ;; range specifiers.
1795 ;; Argument ranges are complex too, so we hive off the input line,
1796 ;; referenced with plings, with the range string to `term-args'.
1797 (setq term-input-ring-index nil)
1798 (cond ((or (= (preceding-char) ?\\)
1799 (term-within-quotes start (point)))
1800 ;; The history is quoted, or we're in quotes.
1801 (goto-char (1+ (point))))
1802 ((looking-at "![0-9]+\\($\\|[^-]\\)")
1803 ;; We cannot know the interpreter's idea of input line numbers.
1804 (goto-char (match-end 0))
1805 (message "Absolute reference cannot be expanded"))
1806 ((looking-at "!-\\([0-9]+\\)\\(:?[0-9^$*-]+\\)?")
1807 ;; Just a number of args from `number' lines backward.
1808 (let ((number (1- (string-to-number
1809 (buffer-substring (match-beginning 1)
1811 (if (<= number (ring-length term-input-ring))
1814 (term-args (term-previous-input-string number)
1815 (match-beginning 2) (match-end 2))
1817 (setq term-input-ring-index number)
1818 (message "History item: %d" (1+ number)))
1819 (goto-char (match-end 0))
1820 (message "Relative reference exceeds input history size"))))
1821 ((or (looking-at "!!?:?\\([0-9^$*-]+\\)") (looking-at "!!"))
1822 ;; Just a number of args from the previous input line.
1824 (term-args (term-previous-input-string 0)
1825 (match-beginning 1) (match-end 1))
1827 (message "History item: previous"))
1829 "!\\??\\({\\(.+\\)}\\|\\(\\sw+\\)\\)\\(:?[0-9^$*-]+\\)?")
1830 ;; Most recent input starting with or containing (possibly
1831 ;; protected) string, maybe just a number of args. Phew.
1832 (let* ((mb1 (match-beginning 1)) (me1 (match-end 1))
1833 (mb2 (match-beginning 2)) (me2 (match-end 2))
1834 (exp (buffer-substring (or mb2 mb1) (or me2 me1)))
1835 (pref (if (save-match-data (looking-at "!\\?")) "" "^"))
1836 (pos (save-match-data
1837 (term-previous-matching-input-string-position
1838 (concat pref (regexp-quote exp)) 1))))
1841 (goto-char (match-end 0))
1843 (progn (message "Not found")
1845 (setq term-input-ring-index pos)
1847 (term-args (ring-ref term-input-ring pos)
1848 (match-beginning 4) (match-end 4))
1850 (message "History item: %d" (1+ pos)))))
1851 ((looking-at "\\^\\([^^]+\\)\\^?\\([^^]*\\)\\^?")
1852 ;; Quick substitution on the previous input line.
1853 (let ((old (buffer-substring (match-beginning 1) (match-end 1)))
1854 (new (buffer-substring (match-beginning 2) (match-end 2)))
1856 (replace-match (term-previous-input-string 0) t t)
1858 (goto-char (match-beginning 0))
1859 (if (not (search-forward old pos t))
1861 (error "Not found"))
1862 (replace-match new t t)
1863 (message "History item: substituted"))))
1865 (goto-char (match-end 0))))))))
1868 (defun term-magic-space (arg)
1869 "Expand input history references before point and insert ARG spaces.
1870 A useful command to bind to SPC. See `term-replace-by-expanded-history'."
1872 (term-replace-by-expanded-history)
1873 (self-insert-command arg))
1875 (defun term-within-quotes (beg end)
1876 "Return t if the number of quotes between BEG and END is odd.
1877 Quotes are single and double."
1878 (let ((countsq (term-how-many-region "\\(^\\|[^\\\\]\\)\'" beg end))
1879 (countdq (term-how-many-region "\\(^\\|[^\\\\]\\)\"" beg end)))
1880 (or (= (mod countsq 2) 1) (= (mod countdq 2) 1))))
1882 (defun term-how-many-region (regexp beg end)
1883 "Return number of matches for REGEXP from BEG to END."
1888 (while (re-search-forward regexp end t)
1889 (setq count (1+ count)))))
1892 (defun term-args (string begin end)
1893 ;; From STRING, return the args depending on the range specified in the text
1894 ;; from BEGIN to END. If BEGIN is nil, assume all args. Ignore leading `:'.
1895 ;; Range can be x-y, x-, -y, where x/y can be [0-9], *, ^, $.
1898 (term-arguments string 0 nil)
1899 (let* ((range (buffer-substring
1900 (if (eq (char-after begin) ?:) (1+ begin) begin) end))
1901 (nth (cond ((string-match "^[*^]" range) 1)
1902 ((string-match "^-" range) 0)
1903 ((string-equal range "$") nil)
1904 (t (string-to-number range))))
1905 (mth (cond ((string-match "[-*$]$" range) nil)
1906 ((string-match "-" range)
1907 (string-to-number (substring range (match-end 0))))
1909 (term-arguments string nth mth)))))
1911 ;; Return a list of arguments from ARG. Break it up at the
1912 ;; delimiters in term-delimiter-argument-list. Returned list is backwards.
1913 (defun term-delim-arg (arg)
1914 (if (null term-delimiter-argument-list)
1920 (let ((char (aref arg pos))
1922 (if (memq char term-delimiter-argument-list)
1923 (while (and (< pos len) (eq (aref arg pos) char))
1924 (setq pos (1+ pos)))
1925 (while (and (< pos len)
1926 (not (memq (aref arg pos)
1927 term-delimiter-argument-list)))
1928 (setq pos (1+ pos))))
1929 (setq args (cons (substring arg start pos) args))))
1932 (defun term-arguments (string nth mth)
1933 "Return from STRING the NTH to MTH arguments.
1934 NTH and/or MTH can be nil, which means the last argument.
1935 Returned arguments are separated by single spaces.
1936 We assume whitespace separates arguments, except within quotes.
1937 Also, a run of one or more of a single character
1938 in `term-delimiter-argument-list' is a separate argument.
1939 Argument 0 is the command name."
1940 (let ((argpart "[^ \n\t\"'`]+\\|\\(\"[^\"]*\"\\|'[^']*'\\|`[^`]*`\\)")
1944 ;; Build a list of all the args until we have as many as we want.
1945 (while (and (or (null mth) (<= count mth))
1946 (string-match argpart string pos))
1947 (if (and beg (= pos (match-beginning 0)))
1948 ;; It's contiguous, part of the same arg.
1949 (setq pos (match-end 0)
1950 quotes (or quotes (match-beginning 1)))
1951 ;; It's a new separate arg.
1953 ;; Put the previous arg, if there was one, onto ARGS.
1954 (setq str (substring string beg pos)
1955 args (if quotes (cons str args)
1956 (nconc (term-delim-arg str) args))
1958 (setq quotes (match-beginning 1))
1959 (setq beg (match-beginning 0))
1960 (setq pos (match-end 0))))
1962 (setq str (substring string beg pos)
1963 args (if quotes (cons str args)
1964 (nconc (term-delim-arg str) args))
1966 (let ((n (or nth (1- count)))
1967 (m (if mth (1- (- count mth)) 0)))
1969 (function (lambda (a) a)) (nthcdr n (nreverse (nthcdr m args))) " "))))
1972 ;;; Input processing stuff [line mode]
1975 (defun term-send-input ()
1976 "Send input to process.
1977 After the process output mark, sends all text from the process mark to
1978 point as input to the process. Before the process output mark, calls value
1979 of variable `term-get-old-input' to retrieve old input, copies it to the
1980 process mark, and sends it. A terminal newline is also inserted into the
1981 buffer and sent to the process. The list of function names contained in the
1982 value of `term-input-filter-functions' is called on the input before sending
1983 it. The input is entered into the input history ring, if the value of variable
1984 `term-input-filter' returns non-nil when called on the input.
1986 Any history reference may be expanded depending on the value of the variable
1987 `term-input-autoexpand'. The list of function names contained in the value
1988 of `term-input-filter-functions' is called on the input before sending it.
1989 The input is entered into the input history ring, if the value of variable
1990 `term-input-filter' returns non-nil when called on the input.
1992 If variable `term-eol-on-send' is non-nil, then point is moved to the
1993 end of line before sending the input.
1995 The values of `term-get-old-input', `term-input-filter-functions', and
1996 `term-input-filter' are chosen according to the command interpreter running
1997 in the buffer. E.g.,
1999 If the interpreter is the csh,
2000 term-get-old-input is the default: take the current line, discard any
2001 initial string matching regexp term-prompt-regexp.
2002 term-input-filter-functions monitors input for \"cd\", \"pushd\", and
2003 \"popd\" commands. When it sees one, it cd's the buffer.
2004 term-input-filter is the default: returns t if the input isn't all white
2007 If the term is Lucid Common Lisp,
2008 term-get-old-input snarfs the sexp ending at point.
2009 term-input-filter-functions does nothing.
2010 term-input-filter returns nil if the input matches input-filter-regexp,
2011 which matches (1) all whitespace (2) :a, :c, etc.
2013 Similarly for Soar, Scheme, etc."
2015 ;; Note that the input string does not include its terminal newline.
2016 (let ((proc (get-buffer-process (current-buffer))))
2017 (if (not proc) (error "Current buffer has no process")
2018 (let* ((pmark (process-mark proc))
2019 (pmark-val (marker-position pmark))
2020 (input-is-new (>= (point) pmark-val))
2021 (intxt (if input-is-new
2022 (progn (if term-eol-on-send (end-of-line))
2023 (buffer-substring pmark (point)))
2024 (funcall term-get-old-input)))
2025 (input (if (not (eq term-input-autoexpand 'input))
2026 ;; Just whatever's already there
2028 ;; Expand and leave it visible in buffer
2029 (term-replace-by-expanded-history t)
2030 (buffer-substring pmark (point))))
2031 (history (if (not (eq term-input-autoexpand 'history))
2033 ;; This is messy 'cos ultimately the original
2034 ;; functions used do insertion, rather than return
2035 ;; strings. We have to expand, then insert back.
2036 (term-replace-by-expanded-history t)
2037 (let ((copy (buffer-substring pmark (point))))
2038 (delete-region pmark (point))
2041 (when (term-pager-enabled)
2043 (goto-char (process-mark proc))
2044 (setq term-pager-count (term-current-row))))
2045 (when (and (funcall term-input-filter history)
2046 (or (null term-input-ignoredups)
2047 (not (ring-p term-input-ring))
2048 (ring-empty-p term-input-ring)
2049 (not (string-equal (ring-ref term-input-ring 0)
2051 (ring-insert term-input-ring history))
2052 (let ((functions term-input-filter-functions))
2054 (funcall (car functions) (concat input "\n"))
2055 (setq functions (cdr functions))))
2056 (setq term-input-ring-index nil)
2058 ;; Update the markers before we send the input
2059 ;; in case we get output amidst sending the input.
2060 (set-marker term-last-input-start pmark)
2061 (set-marker term-last-input-end (point))
2063 ;; Set up to delete, because inferior should echo.
2064 (when (marker-buffer term-pending-delete-marker)
2065 (delete-region term-pending-delete-marker pmark))
2066 (set-marker term-pending-delete-marker pmark-val)
2067 (set-marker (process-mark proc) (point)))
2069 (funcall term-input-sender proc input)))))
2071 (defun term-get-old-input-default ()
2072 "Default for `term-get-old-input'.
2073 Take the current line, and discard any initial text matching
2074 `term-prompt-regexp'."
2078 (let ((beg (point)))
2080 (buffer-substring beg (point)))))
2082 (defun term-copy-old-input ()
2083 "Insert after prompt old input at point as new input to be edited.
2084 Calls `term-get-old-input' to get old input."
2086 (let ((input (funcall term-get-old-input))
2087 (process (get-buffer-process (current-buffer))))
2089 (error "Current buffer has no process")
2090 (goto-char (process-mark process))
2093 (defun term-skip-prompt ()
2094 "Skip past the text matching regexp `term-prompt-regexp'.
2095 If this takes us past the end of the current line, don't skip at all."
2096 (let ((eol (line-end-position)))
2097 (when (and (looking-at term-prompt-regexp)
2098 (<= (match-end 0) eol))
2099 (goto-char (match-end 0)))))
2102 (defun term-after-pmark-p ()
2103 "Is point after the process output marker?"
2104 ;; Since output could come into the buffer after we looked at the point
2105 ;; but before we looked at the process marker's value, we explicitly
2106 ;; serialize. This is just because I don't know whether or not Emacs
2107 ;; services input during execution of lisp commands.
2108 (let ((proc-pos (marker-position
2109 (process-mark (get-buffer-process (current-buffer))))))
2110 (<= proc-pos (point))))
2112 (defun term-simple-send (proc string)
2113 "Default function for sending to PROC input STRING.
2114 This just sends STRING plus a newline. To override this,
2115 set the hook `term-input-sender'."
2116 (term-send-string proc string)
2117 (term-send-string proc "\n"))
2119 (defun term-bol (arg)
2120 "Go to the beginning of line, then skip past the prompt, if any.
2121 If a prefix argument is given (\\[universal-argument]), then no prompt skip
2122 -- go straight to column 0.
2124 The prompt skip is done by skipping text matching the regular expression
2125 `term-prompt-regexp', a buffer local variable."
2128 (when (null arg) (term-skip-prompt)))
2130 ;; These two functions are for entering text you don't want echoed or
2131 ;; saved -- typically passwords to ftp, telnet, or somesuch.
2132 ;; Just enter m-x term-send-invisible and type in your line.
2134 (defun term-read-noecho (prompt &optional stars)
2135 "Read a single line of text from user without echoing, and return it.
2136 Prompt with argument PROMPT, a string. Optional argument STARS causes
2137 input to be echoed with '*' characters on the prompt line. Input ends with
2138 RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. C-g aborts (if
2139 `inhibit-quit' is set because e.g. this function was called from a process
2140 filter and C-g is pressed, this function returns nil rather than a string).
2142 Note that the keystrokes comprising the text can still be recovered
2143 \(temporarily) with \\[view-lossage]. This may be a security bug for some
2148 (cursor-in-echo-area t)
2152 (message "%s%s" prompt (make-string (length ans) ?*))
2153 (message "%s" prompt))
2154 (setq c (read-char))
2156 ;; This function may get called from a process filter, where
2157 ;; inhibit-quit is set. In later versions of Emacs read-char
2158 ;; may clear quit-flag itself and return C-g. That would make
2159 ;; it impossible to quit this loop in a simple way, so
2160 ;; re-enable it here (for backward-compatibility the check for
2161 ;; quit-flag below would still be necessary, so this seems
2162 ;; like the simplest way to do things).
2165 ((or (= c ?\r) (= c ?\n) (= c ?\e))
2169 ((and (/= c ?\b) (/= c ?\177))
2170 (setq ans (concat ans (char-to-string c))))
2172 (setq ans (substring ans 0 -1)))))
2174 ;; Emulate a true quit, except that we have to return a value.
2176 (setq quit-flag nil)
2182 (defun term-send-invisible (str &optional proc)
2183 "Read a string without echoing.
2184 Then send it to the process running in the current buffer. A new-line
2185 is additionally sent. String is not saved on term input history list.
2186 Security bug: your string can still be temporarily recovered with
2188 (interactive "P") ; Defeat snooping via C-x esc
2189 (when (not (stringp str))
2190 (setq str (term-read-noecho "Non-echoed text: " t)))
2192 (setq proc (get-buffer-process (current-buffer))))
2193 (if (not proc) (error "Current buffer has no process")
2194 (setq term-kill-echo-list (nconc term-kill-echo-list
2196 (term-send-string proc str)
2197 (term-send-string proc "\n")))
2200 ;;; Low-level process communication
2202 (defcustom term-input-chunk-size 512
2203 "Long inputs send to term processes are broken up into chunks of this size.
2204 If your process is choking on big inputs, try lowering the value."
2208 (defun term-send-string (proc str)
2209 "Send to PROC the contents of STR as input.
2210 This is equivalent to `process-send-string', except that long input strings
2211 are broken up into chunks of size `term-input-chunk-size'. Processes
2212 are given a chance to output between chunks. This can help prevent processes
2213 from hanging when you send them long inputs on some OS's."
2214 (let* ((len (length str))
2215 (i (min len term-input-chunk-size)))
2216 (process-send-string proc (substring str 0 i))
2218 (let ((next-i (+ i term-input-chunk-size)))
2219 (accept-process-output)
2220 (process-send-string proc (substring str i (min len next-i)))
2223 (defun term-send-region (proc start end)
2224 "Send to PROC the region delimited by START and END.
2225 This is a replacement for `process-send-region' that tries to keep
2226 your process from hanging on long inputs. See `term-send-string'."
2227 (term-send-string proc (buffer-substring start end)))
2230 ;;; Random input hackage
2232 (defun term-kill-output ()
2233 "Kill all output from interpreter since last input."
2235 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
2236 (kill-region term-last-input-end pmark)
2238 (insert "*** output flushed ***\n")
2239 (set-marker pmark (point))))
2241 (defun term-show-output ()
2242 "Display start of this batch of interpreter output at top of window.
2243 Sets mark to the value of point when this command is run."
2245 (goto-char term-last-input-end)
2248 (set-window-start (selected-window) (point))
2251 (defun term-interrupt-subjob ()
2252 "Interrupt the current subjob."
2254 (interrupt-process nil term-ptyp))
2256 (defun term-kill-subjob ()
2257 "Send kill signal to the current subjob."
2259 (kill-process nil term-ptyp))
2261 (defun term-quit-subjob ()
2262 "Send quit signal to the current subjob."
2264 (quit-process nil term-ptyp))
2266 (defun term-stop-subjob ()
2267 "Stop the current subjob.
2268 WARNING: if there is no current subjob, you can end up suspending
2269 the top-level process running in the buffer. If you accidentally do
2270 this, use \\[term-continue-subjob] to resume the process. (This
2271 is not a problem with most shells, since they ignore this signal.)"
2273 (stop-process nil term-ptyp))
2275 (defun term-continue-subjob ()
2276 "Send CONT signal to process buffer's process group.
2277 Useful if you accidentally suspend the top-level process."
2279 (continue-process nil term-ptyp))
2281 (defun term-kill-input ()
2282 "Kill all text from last stuff output by interpreter to point."
2284 (let* ((pmark (process-mark (get-buffer-process (current-buffer))))
2285 (p-pos (marker-position pmark)))
2286 (when (> (point) p-pos)
2287 (kill-region pmark (point)))))
2289 (defun term-delchar-or-maybe-eof (arg)
2290 "Delete ARG characters forward, or send an EOF to process if at end of
2297 (defun term-send-eof ()
2298 "Send an EOF to the current buffer's process."
2302 (defun term-backward-matching-input (regexp n)
2303 "Search backward through buffer for match for REGEXP.
2304 Matches are searched for on lines that match `term-prompt-regexp'.
2305 With prefix argument N, search for Nth previous match.
2306 If N is negative, find the next or Nth next match."
2307 (interactive (term-regexp-arg "Backward input matching (regexp): "))
2308 (let* ((re (concat term-prompt-regexp ".*" regexp))
2309 (pos (save-excursion (end-of-line (if (> n 0) 0 1))
2310 (when (re-search-backward re nil t n)
2313 (progn (message "Not found")
2318 (defun term-forward-matching-input (regexp n)
2319 "Search forward through buffer for match for REGEXP.
2320 Matches are searched for on lines that match `term-prompt-regexp'.
2321 With prefix argument N, search for Nth following match.
2322 If N is negative, find the previous or Nth previous match."
2323 (interactive (term-regexp-arg "Forward input matching (regexp): "))
2324 (term-backward-matching-input regexp (- n)))
2327 (defun term-next-prompt (n)
2328 "Move to end of Nth next prompt in the buffer.
2329 See `term-prompt-regexp'."
2331 (let ((paragraph-start term-prompt-regexp))
2332 (end-of-line (if (> n 0) 1 0))
2333 (forward-paragraph n)
2334 (term-skip-prompt)))
2336 (defun term-previous-prompt (n)
2337 "Move to end of Nth previous prompt in the buffer.
2338 See `term-prompt-regexp'."
2340 (term-next-prompt (- n)))
2342 ;;; Support for source-file processing commands.
2343 ;;============================================================================
2344 ;; Many command-interpreters (e.g., Lisp, Scheme, Soar) have
2345 ;; commands that process files of source text (e.g. loading or compiling
2346 ;; files). So the corresponding process-in-a-buffer modes have commands
2347 ;; for doing this (e.g., lisp-load-file). The functions below are useful
2348 ;; for defining these commands.
2350 ;; Alas, these guys don't do exactly the right thing for Lisp, Scheme
2351 ;; and Soar, in that they don't know anything about file extensions.
2352 ;; So the compile/load interface gets the wrong default occasionally.
2353 ;; The load-file/compile-file default mechanism could be smarter -- it
2354 ;; doesn't know about the relationship between filename extensions and
2355 ;; whether the file is source or executable. If you compile foo.lisp
2356 ;; with compile-file, then the next load-file should use foo.bin for
2357 ;; the default, not foo.lisp. This is tricky to do right, particularly
2358 ;; because the extension for executable files varies so much (.o, .bin,
2359 ;; .lbin, .mo, .vo, .ao, ...).
2362 ;; TERM-SOURCE-DEFAULT -- determines defaults for source-file processing
2365 ;; TERM-CHECK-SOURCE -- if FNAME is in a modified buffer, asks you if you
2366 ;; want to save the buffer before issuing any process requests to the command
2369 ;; TERM-GET-SOURCE -- used by the source-file processing commands to prompt
2370 ;; for the file to process.
2372 ;; (TERM-SOURCE-DEFAULT previous-dir/file source-modes)
2373 ;;============================================================================
2374 ;; This function computes the defaults for the load-file and compile-file
2375 ;; commands for tea, soar, cmulisp, and cmuscheme modes.
2377 ;; - PREVIOUS-DIR/FILE is a pair (directory . filename) from the last
2378 ;; source-file processing command, or nil if there hasn't been one yet.
2379 ;; - SOURCE-MODES is a list used to determine what buffers contain source
2380 ;; files: if the major mode of the buffer is in SOURCE-MODES, it's source.
2381 ;; Typically, (lisp-mode) or (scheme-mode).
2383 ;; If the command is given while the cursor is inside a string, *and*
2384 ;; the string is an existing filename, *and* the filename is not a directory,
2385 ;; then the string is taken as default. This allows you to just position
2386 ;; your cursor over a string that's a filename and have it taken as default.
2388 ;; If the command is given in a file buffer whose major mode is in
2389 ;; SOURCE-MODES, then the filename is the default file, and the
2390 ;; file's directory is the default directory.
2392 ;; If the buffer isn't a source file buffer (e.g., it's the process buffer),
2393 ;; then the default directory & file are what was used in the last source-file
2394 ;; processing command (i.e., PREVIOUS-DIR/FILE). If this is the first time
2395 ;; the command has been run (PREVIOUS-DIR/FILE is nil), the default directory
2396 ;; is the cwd, with no default file. (\"no default file\" = nil)
2398 ;; SOURCE-REGEXP is typically going to be something like (tea-mode)
2399 ;; for T programs, (lisp-mode) for Lisp programs, (soar-mode lisp-mode)
2400 ;; for Soar programs, etc.
2402 ;; The function returns a pair: (default-directory . default-file).
2404 (defun term-source-default (previous-dir/file source-modes)
2405 (cond ((and buffer-file-name (memq major-mode source-modes))
2406 (cons (file-name-directory buffer-file-name)
2407 (file-name-nondirectory buffer-file-name)))
2410 (cons default-directory nil))))
2413 ;; (TERM-CHECK-SOURCE fname)
2414 ;;============================================================================
2415 ;; Prior to loading or compiling (or otherwise processing) a file (in the CMU
2416 ;; process-in-a-buffer modes), this function can be called on the filename.
2417 ;; If the file is loaded into a buffer, and the buffer is modified, the user
2418 ;; is queried to see if he wants to save the buffer before proceeding with
2419 ;; the load or compile.
2421 (defun term-check-source (fname)
2422 (let ((buff (get-file-buffer fname)))
2424 (buffer-modified-p buff)
2425 (y-or-n-p (format "Save buffer %s first? "
2426 (buffer-name buff))))
2428 (with-current-buffer buff
2432 ;; (TERM-GET-SOURCE prompt prev-dir/file source-modes mustmatch-p)
2433 ;;============================================================================
2434 ;; TERM-GET-SOURCE is used to prompt for filenames in command-interpreter
2435 ;; commands that process source files (like loading or compiling a file).
2436 ;; It prompts for the filename, provides a default, if there is one,
2437 ;; and returns the result filename.
2439 ;; See TERM-SOURCE-DEFAULT for more on determining defaults.
2441 ;; PROMPT is the prompt string. PREV-DIR/FILE is the (directory . file) pair
2442 ;; from the last source processing command. SOURCE-MODES is a list of major
2443 ;; modes used to determine what file buffers contain source files. (These
2444 ;; two arguments are used for determining defaults). If MUSTMATCH-P is true,
2445 ;; then the filename reader will only accept a file that exists.
2448 ;; (interactive (term-get-source "Compile file: " prev-lisp-dir/file
2451 ;; This is pretty stupid about strings. It decides we're in a string
2452 ;; if there's a quote on both sides of point on the current line.
2453 (defun term-extract-string ()
2454 "Return string around `point' that starts the current line or nil."
2456 (let* ((point (point))
2457 (bol (line-beginning-position))
2458 (eol (line-end-position))
2459 (start (and (search-backward "\"" bol t)
2461 (end (progn (goto-char point)
2462 (and (search-forward "\"" eol t)
2465 (buffer-substring start end)))))
2467 (defun term-get-source (prompt prev-dir/file source-modes mustmatch-p)
2468 (let* ((def (term-source-default prev-dir/file source-modes))
2469 (stringfile (term-extract-string))
2470 (sfile-p (and stringfile
2472 (file-exists-p stringfile)
2474 (not (file-directory-p stringfile))))
2475 (defdir (if sfile-p (file-name-directory stringfile)
2477 (deffile (if sfile-p (file-name-nondirectory stringfile)
2479 (ans (read-file-name (if deffile (format "%s(default %s) "
2483 (concat defdir deffile)
2485 (list (expand-file-name (substitute-in-file-name ans)))))
2487 ;; I am somewhat divided on this string-default feature. It seems
2488 ;; to violate the principle-of-least-astonishment, in that it makes
2489 ;; the default harder to predict, so you actually have to look and see
2490 ;; what the default really is before choosing it. This can trip you up.
2491 ;; On the other hand, it can be useful, I guess. I would appreciate feedback
2496 ;;; Simple process query facility.
2497 ;; ===========================================================================
2498 ;; This function is for commands that want to send a query to the process
2499 ;; and show the response to the user. For example, a command to get the
2500 ;; arglist for a Common Lisp function might send a "(arglist 'foo)" query
2501 ;; to an inferior Common Lisp process.
2503 ;; This simple facility just sends strings to the inferior process and pops
2504 ;; up a window for the process buffer so you can see what the process
2505 ;; responds with. We don't do anything fancy like try to intercept what the
2506 ;; process responds with and put it in a pop-up window or on the message
2507 ;; line. We just display the buffer. Low tech. Simple. Works good.
2509 ;; Send to the inferior process PROC the string STR. Pop-up but do not select
2510 ;; a window for the inferior process so that its response can be seen.
2511 (defun term-proc-query (proc str)
2512 (let* ((proc-buf (process-buffer proc))
2513 (proc-mark (process-mark proc)))
2514 (display-buffer proc-buf)
2515 (set-buffer proc-buf) ; but it's not the selected *window*
2516 (let ((proc-win (get-buffer-window proc-buf))
2517 (proc-pt (marker-position proc-mark)))
2518 (term-send-string proc str) ; send the query
2519 (accept-process-output proc) ; wait for some output
2520 ;; Try to position the proc window so you can see the answer.
2521 ;; This is bogus code. If you delete the (sit-for 0), it breaks.
2522 ;; I don't know why. Wizards invited to improve it.
2523 (when (not (pos-visible-in-window-p proc-pt proc-win))
2524 (let ((opoint (window-point proc-win)))
2525 (set-window-point proc-win proc-mark) (sit-for 0)
2526 (if (not (pos-visible-in-window-p opoint proc-win))
2528 (set-window-point proc-win opoint)))))))
2530 ;; Returns the current column in the current screen line.
2531 ;; Note: (current-column) yields column in buffer line.
2533 (defun term-horizontal-column ()
2534 (- (term-current-column) (term-start-line-column)))
2536 ;; Calls either vertical-motion or term-buffer-vertical-motion
2537 (defmacro term-vertical-motion (count)
2538 (list 'funcall 'term-vertical-motion count))
2540 ; An emulation of vertical-motion that is independent of having a window.
2541 ; Instead, it uses the term-width variable as the logical window width.
2543 (defun term-buffer-vertical-motion (count)
2545 (move-to-column (* term-width (/ (current-column) term-width)))
2549 (todo (+ count (/ (current-column) term-width))))
2551 ;; The loop iterates over buffer lines;
2552 ;; H is the number of screen lines in the current line, i.e.
2553 ;; the ceiling of dividing the buffer line width by term-width.
2554 (while (and (<= (setq H (max (/ (+ (current-column) term-width -1)
2559 (setq todo (- todo H))
2560 (forward-char) ;; Move past the ?\n
2561 (end-of-line)) ;; and on to the end of the next line.
2562 (if (and (>= todo H) (> todo 0))
2563 (+ (- count todo) H -1) ;; Hit end of buffer.
2564 (move-to-column (* todo term-width))
2566 (t ;; (< count 0) ;; Similar algorithm, but for upward motion.
2569 (while (and (<= (setq H (max (/ (+ (current-column) term-width -1)
2573 (progn (beginning-of-line)
2575 (setq todo (- todo H))
2576 (backward-char)) ;; Move to end of previous line.
2577 (if (and (>= todo H) (> todo 0))
2578 (+ count todo (- 1 H)) ;; Hit beginning of buffer.
2579 (move-to-column (* (- H todo 1) term-width))
2582 ;; The term-start-line-column variable is used as a cache.
2583 (defun term-start-line-column ()
2584 (cond (term-start-line-column)
2585 ((let ((save-pos (point)))
2586 (term-vertical-motion 0)
2587 (setq term-start-line-column (current-column))
2588 (goto-char save-pos)
2589 term-start-line-column))))
2591 ;; Same as (current-column), but uses term-current-column as a cache.
2592 (defun term-current-column ()
2593 (cond (term-current-column)
2594 ((setq term-current-column (current-column)))))
2596 ;; Move DELTA column right (or left if delta < 0 limiting at column 0).
2598 (defun term-move-columns (delta)
2599 (setq term-current-column (max 0 (+ (term-current-column) delta)))
2600 (let ((point-at-eol (line-end-position)))
2601 (move-to-column term-current-column t)
2602 ;; If move-to-column extends the current line it will use the face
2603 ;; from the last character on the line, set the face for the chars
2605 (when (> (point) point-at-eol)
2606 (put-text-property point-at-eol (point) 'face 'default))))
2608 ;; Insert COUNT copies of CHAR in the default face.
2609 (defun term-insert-char (char count)
2610 (let ((old-point (point)))
2611 (insert-char char count)
2612 (put-text-property old-point (point) 'face 'default)))
2614 (defun term-current-row ()
2615 (cond (term-current-row)
2616 ((setq term-current-row
2619 (narrow-to-region term-home-marker (point-max))
2620 (- (term-vertical-motion -9999))))))))
2622 (defun term-adjust-current-row-cache (delta)
2623 (when term-current-row
2624 (setq term-current-row
2625 (max 0 (+ term-current-row delta)))))
2627 (defun term-terminal-pos ()
2628 (save-excursion ; save-restriction
2629 (let ((save-col (term-current-column))
2631 (term-vertical-motion 0)
2632 (setq x (- save-col (current-column)))
2633 (setq y (term-vertical-motion term-height))
2636 ;;Function that handles term messages: code by rms (and you can see the
2637 ;;difference ;-) -mm
2639 (defun term-handle-ansi-terminal-messages (message)
2640 ;; Is there a command here?
2641 (while (string-match "\eAnSiT.+\n" message)
2642 ;; Extract the command code and the argument.
2643 (let* ((start (match-beginning 0))
2644 (command-code (aref message (+ start 6)))
2649 (string-match "\r?\n" message
2652 ;; Delete this command from MESSAGE.
2653 (setq message (replace-match "" t t message))
2655 ;; If we recognize the type of command, set the appropriate variable.
2656 (cond ((= command-code ?c)
2657 (setq term-ansi-at-dir argument))
2658 ((= command-code ?h)
2659 (setq term-ansi-at-host argument))
2660 ((= command-code ?u)
2661 (setq term-ansi-at-user argument))
2662 ;; Otherwise ignore this one.
2666 ;; Update default-directory based on the changes this command made.
2669 (setq default-directory
2670 (file-name-as-directory
2671 (if (and (string= term-ansi-at-host (system-name))
2672 (string= term-ansi-at-user (user-real-login-name)))
2673 (expand-file-name term-ansi-at-dir)
2674 (if (string= term-ansi-at-user (user-real-login-name))
2675 (concat "/" term-ansi-at-host ":" term-ansi-at-dir)
2676 (concat "/" term-ansi-at-user "@" term-ansi-at-host ":"
2677 term-ansi-at-dir)))))
2679 ;; I'm not sure this is necessary,
2680 ;; but it's best to be on the safe side.
2681 (if (string= term-ansi-at-host (system-name))
2683 (setq ange-ftp-default-user term-ansi-at-save-user)
2684 (setq ange-ftp-default-password term-ansi-at-save-pwd)
2685 (setq ange-ftp-generate-anonymous-password term-ansi-at-save-anon))
2686 (setq term-ansi-at-save-user ange-ftp-default-user)
2687 (setq term-ansi-at-save-pwd ange-ftp-default-password)
2688 (setq term-ansi-at-save-anon ange-ftp-generate-anonymous-password)
2689 (setq ange-ftp-default-user nil)
2690 (setq ange-ftp-default-password nil)
2691 (setq ange-ftp-generate-anonymous-password nil)))))
2695 ;; Terminal emulation
2696 ;; This is the standard process filter for term buffers.
2697 ;; It emulates (most of the features of) a VT100/ANSI-style terminal.
2699 (defun term-emulate-terminal (proc str)
2700 (with-current-buffer (process-buffer proc)
2701 (let* ((i 0) char funny
2702 count ; number of decoded chars in substring
2703 count-bytes ; number of bytes
2705 save-point save-marker old-point temp win
2706 (buffer-undo-list t)
2707 (selected (selected-window))
2709 handled-ansi-message
2710 (str-length (length str)))
2711 (save-selected-window
2713 ;; Let's handle the messages. -mm
2715 (let* ((newstr (term-handle-ansi-terminal-messages str)))
2716 (when (not (eq str newstr))
2717 (setq handled-ansi-message t
2719 (setq str-length (length str))
2721 (when (marker-buffer term-pending-delete-marker)
2722 ;; Delete text following term-pending-delete-marker.
2723 (delete-region term-pending-delete-marker (process-mark proc))
2724 (set-marker term-pending-delete-marker nil))
2726 (if (eq (window-buffer) (current-buffer))
2728 (setq term-vertical-motion (symbol-function 'vertical-motion))
2729 (term-check-size proc))
2730 (setq term-vertical-motion
2731 (symbol-function 'term-buffer-vertical-motion)))
2733 (setq save-marker (copy-marker (process-mark proc)))
2735 (when (/= (point) (process-mark proc))
2736 (setq save-point (point-marker))
2737 (goto-char (process-mark proc)))
2740 ;; If the buffer is in line mode, and there is a partial
2741 ;; input line, save the line (by narrowing to leave it
2742 ;; outside the restriction ) until we're done with output.
2743 (when (and (> (point-max) (process-mark proc))
2744 (term-in-line-mode))
2745 (narrow-to-region (point-min) (process-mark proc)))
2747 (when term-log-buffer
2748 (princ str term-log-buffer))
2749 (cond ((eq term-terminal-state 4) ;; Have saved pending output.
2750 (setq str (concat term-terminal-parameter str))
2751 (setq term-terminal-parameter nil)
2752 (setq str-length (length str))
2753 (setq term-terminal-state 0)))
2755 (while (< i str-length)
2756 (setq char (aref str i))
2757 (cond ((< term-terminal-state 2)
2758 ;; Look for prefix of regular chars
2760 (string-match "[\r\n\000\007\033\t\b\032\016\017]"
2762 (when (not funny) (setq funny str-length))
2764 ;; Decode the string before counting
2765 ;; characters, to avoid garbling of certain
2766 ;; multibyte characters (bug#1006).
2767 (setq decoded-substring
2768 (decode-coding-string
2769 (substring str i funny)
2770 locale-coding-system))
2771 (cond ((eq term-terminal-state 1)
2772 ;; We are in state 1, we need to wrap
2773 ;; around. Go to the beginning of
2774 ;; the next line and switch to state
2777 (term-move-columns (- (term-current-column)))
2778 (setq term-terminal-state 0)))
2779 (setq count (length decoded-substring))
2780 (setq temp (- (+ (term-horizontal-column) count)
2782 (cond ((<= temp 0)) ;; All count chars fit in line.
2783 ((> count temp) ;; Some chars fit.
2784 ;; This iteration, handle only what fits.
2785 (setq count (- count temp))
2788 (encode-coding-string
2789 (substring decoded-substring 0 count)
2792 (setq funny (+ count-bytes i)))
2793 ((or (not (or term-pager-count
2794 term-scroll-with-delete))
2795 (> (term-handle-scroll 1) 0))
2796 (term-adjust-current-row-cache 1)
2797 (setq count (min count term-width))
2800 (encode-coding-string
2801 (substring decoded-substring 0 count)
2803 (setq funny (+ count-bytes i))
2804 (setq term-start-line-column
2805 term-current-column))
2806 (t ;; Doing PAGER processing.
2807 (setq count 0 funny i)
2808 (setq term-current-column nil)
2809 (setq term-start-line-column nil)))
2810 (setq old-point (point))
2812 ;; Insert a string, check how many columns
2813 ;; we moved, then delete that many columns
2814 ;; following point if not eob nor insert-mode.
2815 (let ((old-column (current-column))
2817 (insert (decode-coding-string (substring str i funny) locale-coding-system))
2818 (setq term-current-column (current-column)
2819 columns (- term-current-column old-column))
2820 (when (not (or (eobp) term-insert-mode))
2822 (term-move-columns columns)
2823 (delete-region pos (point)))
2824 ;; In insert mode if the current line
2825 ;; has become too long it needs to be
2827 (when term-insert-mode
2830 (when (> (current-column) term-width)
2831 (delete-region (- (point) (- (current-column) term-width))
2834 (setq term-current-column nil)
2836 (put-text-property old-point (point)
2837 'face term-current-face)
2838 ;; If the last char was written in last column,
2839 ;; back up one column, but remember we did so.
2840 ;; Thus we emulate xterm/vt100-style line-wrapping.
2842 (term-move-columns -1)
2843 (setq term-terminal-state 1)))
2844 (setq i (1- funny)))
2845 ((and (setq term-terminal-state 0)
2846 (eq char ?\^I)) ; TAB (terminfo: ht)
2847 (setq count (term-current-column))
2848 ;; The line cannot exceed term-width. TAB at
2849 ;; the end of a line should not cause wrapping.
2850 (setq count (min term-width
2851 (+ count 8 (- (mod count 8)))))
2852 (if (> term-width count)
2855 (- count (term-current-column)))
2856 (setq term-current-column count))
2857 (when (> term-width (term-current-column))
2859 (1- (- term-width (term-current-column)))))
2860 (when (= term-width (term-current-column))
2861 (term-move-columns -1))))
2862 ((eq char ?\r) ;; (terminfo: cr)
2863 (term-vertical-motion 0)
2864 (setq term-current-column term-start-line-column))
2865 ((eq char ?\n) ;; (terminfo: cud1, ind)
2866 (unless (and term-kill-echo-list
2867 (term-check-kill-echo-list))
2869 ((eq char ?\b) ;; (terminfo: cub1)
2870 (term-move-columns -1))
2871 ((eq char ?\033) ; Escape
2872 (setq term-terminal-state 2))
2873 ((eq char 0)) ; NUL: Do nothing
2874 ((eq char ?\016)) ; Shift Out - ignored
2875 ((eq char ?\017)) ; Shift In - ignored
2876 ((eq char ?\^G) ;; (terminfo: bel)
2878 ((and (eq char ?\032)
2879 (not handled-ansi-message))
2880 (let ((end (string-match "\r?$" str i)))
2882 (funcall term-command-hook
2883 (prog1 (substring str (1+ i) end)
2884 (setq i (match-end 0))))
2885 (setq term-terminal-parameter (substring str i))
2886 (setq term-terminal-state 4)
2887 (setq i str-length))))
2888 (t ; insert char FIXME: Should never happen
2889 (term-move-columns 1)
2890 (backward-delete-char 1)
2892 ((eq term-terminal-state 2) ; Seen Esc
2893 (cond ((eq char ?\133) ;; ?\133 = ?[
2895 ;; Some modifications to cope with multiple
2896 ;; settings like ^[[01;32;43m -mm
2897 ;; Note that now the init value of
2898 ;; term-terminal-previous-parameter has been
2901 (setq term-terminal-parameter 0)
2902 (setq term-terminal-previous-parameter -1)
2903 (setq term-terminal-previous-parameter-2 -1)
2904 (setq term-terminal-previous-parameter-3 -1)
2905 (setq term-terminal-previous-parameter-4 -1)
2906 (setq term-terminal-more-parameters 0)
2907 (setq term-terminal-state 3))
2908 ((eq char ?D) ;; scroll forward
2909 (term-handle-deferred-scroll)
2911 (setq term-terminal-state 0))
2912 ;; ((eq char ?E) ;; (terminfo: nw), not used for
2913 ;; ;; now, but this is a working
2914 ;; ;; implementation
2916 ;; (term-goto term-current-row 0)
2917 ;; (setq term-terminal-state 0))
2918 ((eq char ?M) ;; scroll reversed (terminfo: ri)
2919 (if (or (< (term-current-row) term-scroll-start)
2920 (>= (1- (term-current-row))
2922 ;; Scrolling up will not move outside
2923 ;; the scroll region.
2925 ;; Scrolling the scroll region is needed.
2927 (setq term-terminal-state 0))
2928 ((eq char ?7) ;; Save cursor (terminfo: sc)
2929 (term-handle-deferred-scroll)
2930 (setq term-saved-cursor
2931 (list (term-current-row)
2932 (term-horizontal-column)
2933 term-ansi-current-bg-color
2934 term-ansi-current-bold
2935 term-ansi-current-color
2936 term-ansi-current-invisible
2937 term-ansi-current-reverse
2938 term-ansi-current-underline
2941 (setq term-terminal-state 0))
2942 ((eq char ?8) ;; Restore cursor (terminfo: rc)
2943 (when term-saved-cursor
2944 (term-goto (nth 0 term-saved-cursor)
2945 (nth 1 term-saved-cursor))
2946 (setq term-ansi-current-bg-color
2947 (nth 2 term-saved-cursor)
2948 term-ansi-current-bold
2949 (nth 3 term-saved-cursor)
2950 term-ansi-current-color
2951 (nth 4 term-saved-cursor)
2952 term-ansi-current-invisible
2953 (nth 5 term-saved-cursor)
2954 term-ansi-current-reverse
2955 (nth 6 term-saved-cursor)
2956 term-ansi-current-underline
2957 (nth 7 term-saved-cursor)
2959 (nth 8 term-saved-cursor)))
2960 (setq term-terminal-state 0))
2961 ((eq char ?c) ;; \Ec - Reset (terminfo: rs1)
2962 ;; This is used by the "clear" program.
2963 (setq term-terminal-state 0)
2964 (term-reset-terminal))
2965 ;; The \E#8 reset sequence for xterm. We
2966 ;; probably don't need to handle it, but this
2967 ;; is the code to parse it.
2969 ;; (when (eq (aref str (1+ i)) ?8)
2971 ;; (setq term-scroll-start 0)
2972 ;; (setq term-scroll-end term-height)
2973 ;; (setq term-terminal-state 0)))
2974 ((setq term-terminal-state 0))))
2975 ((eq term-terminal-state 3) ; Seen Esc [
2976 (cond ((and (>= char ?0) (<= char ?9))
2977 (setq term-terminal-parameter
2978 (+ (* 10 term-terminal-parameter) (- char ?0))))
2980 ;; Some modifications to cope with multiple
2981 ;; settings like ^[[01;32;43m -mm
2982 (setq term-terminal-more-parameters 1)
2983 (setq term-terminal-previous-parameter-4
2984 term-terminal-previous-parameter-3)
2985 (setq term-terminal-previous-parameter-3
2986 term-terminal-previous-parameter-2)
2987 (setq term-terminal-previous-parameter-2
2988 term-terminal-previous-parameter)
2989 (setq term-terminal-previous-parameter
2990 term-terminal-parameter)
2991 (setq term-terminal-parameter 0))
2992 ((eq char ??)) ; Ignore ?
2994 (term-handle-ansi-escape proc char)
2995 (setq term-terminal-more-parameters 0)
2996 (setq term-terminal-previous-parameter-4 -1)
2997 (setq term-terminal-previous-parameter-3 -1)
2998 (setq term-terminal-previous-parameter-2 -1)
2999 (setq term-terminal-previous-parameter -1)
3000 (setq term-terminal-state 0)))))
3001 (when (term-handling-pager)
3002 ;; Finish stuff to get ready to handle PAGER.
3003 (if (> (% (current-column) term-width) 0)
3004 (setq term-terminal-parameter
3006 ;; We're at column 0. Goto end of buffer; to compensate,
3007 ;; prepend a ?\r for later. This looks more consistent.
3009 (setq term-terminal-parameter
3010 (concat "\r" (substring str i)))
3011 (setq term-terminal-parameter (substring str (1- i)))
3012 (aset term-terminal-parameter 0 ?\r))
3013 (goto-char (point-max)))
3014 (setq term-terminal-state 4)
3015 (make-local-variable 'term-pager-old-filter)
3016 (setq term-pager-old-filter (process-filter proc))
3017 (set-process-filter proc term-pager-filter)
3018 (setq i str-length))
3021 (when (>= (term-current-row) term-height)
3022 (term-handle-deferred-scroll))
3024 (set-marker (process-mark proc) (point))
3026 (goto-char save-point)
3027 (set-marker save-point nil))
3029 ;; Check for a pending filename-and-line number to display.
3030 ;; We do this before scrolling, because we might create a new window.
3031 (when (and term-pending-frame
3032 (eq (window-buffer selected) (current-buffer)))
3033 (term-display-line (car term-pending-frame)
3034 (cdr term-pending-frame))
3035 (setq term-pending-frame nil)
3036 ;; We have created a new window, so check the window size.
3037 (term-check-size proc))
3039 ;; Scroll each window displaying the buffer but (by default)
3040 ;; only if the point matches the process-mark we started with.
3042 ;; Avoid infinite loop in strange case where minibuffer window
3043 ;; is selected but not active.
3044 (while (window-minibuffer-p win)
3045 (setq win (next-window win nil t)))
3048 (setq win (next-window win nil t))
3049 (when (eq (window-buffer win) (process-buffer proc))
3050 (let ((scroll term-scroll-to-bottom-on-output))
3052 (when (or (= (point) save-marker)
3053 (eq scroll t) (eq scroll 'all)
3054 ;; Maybe user wants point to jump to the end.
3055 (and (eq selected win)
3056 (or (eq scroll 'this) (not save-point)))
3057 (and (eq scroll 'others)
3058 (not (eq selected win))))
3059 (goto-char term-home-marker)
3061 (goto-char (process-mark proc))
3062 (if (not (pos-visible-in-window-p (point) win))
3064 ;; Optionally scroll so that the text
3065 ;; ends at the bottom of the window.
3066 (when (and term-scroll-show-maximum-output
3067 (>= (point) (process-mark proc)))
3069 (goto-char (point-max))
3071 (not (eq win last-win))))
3073 ;; Stolen from comint.el and adapted -mm
3074 (when (> term-buffer-maximum-size 0)
3076 (goto-char (process-mark (get-buffer-process (current-buffer))))
3077 (forward-line (- term-buffer-maximum-size))
3079 (delete-region (point-min) (point))))
3080 (set-marker save-marker nil)))
3081 ;; This might be expensive, but we need it to handle something
3082 ;; like `sleep 5 | less -c' in more-or-less real time.
3083 (when (get-buffer-window (current-buffer))
3086 (defun term-handle-deferred-scroll ()
3087 (let ((count (- (term-current-row) term-height)))
3090 (goto-char term-home-marker)
3091 (term-vertical-motion (1+ count))
3092 (set-marker term-home-marker (point))
3093 (setq term-current-row (1- term-height))))))
3095 (defun term-reset-terminal ()
3096 "Reset the terminal, delete all the content and set the face to the default one."
3099 (setq term-current-row 0)
3100 (setq term-current-column 1)
3101 (setq term-scroll-start 0)
3102 (setq term-scroll-end term-height)
3103 (setq term-insert-mode nil)
3104 ;; FIXME: No idea why this is here, it looks wrong. --Stef
3105 (setq term-ansi-face-already-done nil))
3107 ;; New function to deal with ansi colorized output, as you can see you can
3108 ;; have any bold/underline/fg/bg/reverse combination. -mm
3110 (defvar term-bold-attribute '(:weight bold)
3111 "Attribute to use for the bold terminal attribute.
3112 Set it to nil to disable bold.")
3114 (defun term-handle-colors-array (parameter)
3117 ;; Bold (terminfo: bold)
3119 (setq term-ansi-current-bold t))
3123 (setq term-ansi-current-underline t))
3125 ;; Blink (unsupported by Emacs), will be translated to bold.
3126 ;; This may change in the future though.
3128 (setq term-ansi-current-bold t))
3130 ;; Reverse (terminfo: smso)
3132 (setq term-ansi-current-reverse t))
3136 (setq term-ansi-current-invisible t))
3138 ;; Reset underline (terminfo: rmul)
3140 (setq term-ansi-current-underline nil))
3142 ;; Reset reverse (terminfo: rmso)
3144 (setq term-ansi-current-reverse nil))
3147 ((and (>= parameter 30) (<= parameter 37))
3148 (setq term-ansi-current-color (- parameter 29)))
3152 (setq term-ansi-current-color 0))
3155 ((and (>= parameter 40) (<= parameter 47))
3156 (setq term-ansi-current-bg-color (- parameter 39)))
3160 (setq term-ansi-current-bg-color 0))
3162 ;; 0 (Reset) or unknown (reset anyway)
3166 ;; (message "Debug: U-%d R-%d B-%d I-%d D-%d F-%d B-%d"
3167 ;; term-ansi-current-underline
3168 ;; term-ansi-current-reverse
3169 ;; term-ansi-current-bold
3170 ;; term-ansi-current-invisible
3171 ;; term-ansi-face-already-done
3172 ;; term-ansi-current-color
3173 ;; term-ansi-current-bg-color)
3176 (unless term-ansi-face-already-done
3177 (if term-ansi-current-invisible
3179 (if term-ansi-current-reverse
3180 (if (= term-ansi-current-color 0)
3181 term-default-fg-color
3182 (elt ansi-term-color-vector term-ansi-current-color))
3183 (if (= term-ansi-current-bg-color 0)
3184 term-default-bg-color
3185 (elt ansi-term-color-vector term-ansi-current-bg-color)))))
3186 (setq term-current-face
3187 (list :background color
3189 ) ;; No need to bother with anything else if it's invisible.
3191 (setq term-current-face
3192 (if term-ansi-current-reverse
3193 (if (= term-ansi-current-color 0)
3194 (list :background term-default-fg-color
3195 :foreground term-default-bg-color)
3197 (elt ansi-term-color-vector term-ansi-current-color)
3199 (elt ansi-term-color-vector term-ansi-current-bg-color)))
3201 (if (= term-ansi-current-color 0)
3202 (list :foreground term-default-fg-color
3203 :background term-default-bg-color)
3205 (elt ansi-term-color-vector term-ansi-current-color)
3207 (elt ansi-term-color-vector term-ansi-current-bg-color)))))
3209 (when term-ansi-current-bold
3210 (setq term-current-face
3211 (append term-bold-attribute term-current-face)))
3212 (when term-ansi-current-underline
3213 (setq term-current-face
3214 (list* :underline t term-current-face)))))
3216 ;; (message "Debug %S" term-current-face)
3217 ;; FIXME: shouldn't we set term-ansi-face-already-done to t here? --Stef
3218 (setq term-ansi-face-already-done nil))
3221 ;; Handle a character assuming (eq terminal-state 2) -
3222 ;; i.e. we have previously seen Escape followed by ?[.
3224 (defun term-handle-ansi-escape (proc char)
3226 ((or (eq char ?H) ;; cursor motion (terminfo: cup,home)
3227 ;; (eq char ?f) ;; xterm seems to handle this sequence too, not
3230 (when (<= term-terminal-parameter 0)
3231 (setq term-terminal-parameter 1))
3232 (when (<= term-terminal-previous-parameter 0)
3233 (setq term-terminal-previous-parameter 1))
3234 (when (> term-terminal-previous-parameter term-height)
3235 (setq term-terminal-previous-parameter term-height))
3236 (when (> term-terminal-parameter term-width)
3237 (setq term-terminal-parameter term-width))
3239 (1- term-terminal-previous-parameter)
3240 (1- term-terminal-parameter)))
3241 ;; \E[A - cursor up (terminfo: cuu, cuu1)
3243 (term-handle-deferred-scroll)
3244 (let ((tcr (term-current-row)))
3246 (if (< (- tcr term-terminal-parameter) term-scroll-start)
3247 ;; If the amount to move is before scroll start, move
3249 (- term-scroll-start tcr)
3250 (if (>= term-terminal-parameter tcr)
3252 (- (max 1 term-terminal-parameter)))) t)))
3253 ;; \E[B - cursor down (terminfo: cud)
3255 (let ((tcr (term-current-row)))
3256 (unless (= tcr (1- term-scroll-end))
3258 (if (> (+ tcr term-terminal-parameter) term-scroll-end)
3259 (- term-scroll-end 1 tcr)
3260 (max 1 term-terminal-parameter)) t))))
3261 ;; \E[C - cursor right (terminfo: cuf, cuf1)
3265 (if (>= (+ term-terminal-parameter (term-current-column)) term-width)
3266 (- term-width (term-current-column) 1)
3267 term-terminal-parameter))))
3268 ;; \E[D - cursor left (terminfo: cub)
3270 (term-move-columns (- (max 1 term-terminal-parameter))))
3271 ;; \E[J - clear to end of screen (terminfo: ed, clear)
3273 (term-erase-in-display term-terminal-parameter))
3274 ;; \E[K - clear to end of line (terminfo: el, el1)
3276 (term-erase-in-line term-terminal-parameter))
3277 ;; \E[L - insert lines (terminfo: il, il1)
3279 (term-insert-lines (max 1 term-terminal-parameter)))
3280 ;; \E[M - delete lines (terminfo: dl, dl1)
3282 (term-delete-lines (max 1 term-terminal-parameter)))
3283 ;; \E[P - delete chars (terminfo: dch, dch1)
3285 (term-delete-chars (max 1 term-terminal-parameter)))
3286 ;; \E[@ - insert spaces (terminfo: ich)
3288 (term-insert-spaces (max 1 term-terminal-parameter)))
3289 ;; \E[?h - DEC Private Mode Set
3291 (cond ((eq term-terminal-parameter 4) ;; (terminfo: smir)
3292 (setq term-insert-mode t))
3293 ;; ((eq term-terminal-parameter 47) ;; (terminfo: smcup)
3294 ;; (term-switch-to-alternate-sub-buffer t))
3296 ;; \E[?l - DEC Private Mode Reset
3298 (cond ((eq term-terminal-parameter 4) ;; (terminfo: rmir)
3299 (setq term-insert-mode nil))
3300 ;; ((eq term-terminal-parameter 47) ;; (terminfo: rmcup)
3301 ;; (term-switch-to-alternate-sub-buffer nil))
3304 ;; Modified to allow ansi coloring -mm
3305 ;; \E[m - Set/reset modes, set bg/fg
3306 ;;(terminfo: smso,rmso,smul,rmul,rev,bold,sgr0,invis,op,setab,setaf)
3308 (when (= term-terminal-more-parameters 1)
3309 (when (>= term-terminal-previous-parameter-4 0)
3310 (term-handle-colors-array term-terminal-previous-parameter-4))
3311 (when (>= term-terminal-previous-parameter-3 0)
3312 (term-handle-colors-array term-terminal-previous-parameter-3))
3313 (when (>= term-terminal-previous-parameter-2 0)
3314 (term-handle-colors-array term-terminal-previous-parameter-2))
3315 (term-handle-colors-array term-terminal-previous-parameter))
3316 (term-handle-colors-array term-terminal-parameter))
3318 ;; \E[6n - Report cursor position (terminfo: u7)
3320 (term-handle-deferred-scroll)
3321 (process-send-string proc
3324 (1+ (term-current-row))
3325 (1+ (term-horizontal-column)))))
3326 ;; \E[r - Set scrolling region (terminfo: csr)
3328 (term-set-scroll-region
3329 (1- term-terminal-previous-parameter)
3330 (1- term-terminal-parameter)))
3333 (defun term-set-scroll-region (top bottom)
3334 "Set scrolling region.
3335 TOP is the top-most line (inclusive) of the new scrolling region,
3336 while BOTTOM is the line following the new scrolling region (e.g. exclusive).
3337 The top-most line is line 0."
3338 (setq term-scroll-start
3339 (if (or (< top 0) (>= top term-height))
3342 (setq term-scroll-end
3343 (if (or (<= bottom term-scroll-start) (> bottom term-height))
3346 (setq term-scroll-with-delete
3347 (or (term-using-alternate-sub-buffer)
3348 (not (and (= term-scroll-start 0)
3349 (= term-scroll-end term-height)))))
3350 (term-move-columns (- (term-current-column)))
3353 ;; (defun term-switch-to-alternate-sub-buffer (set)
3354 ;; ;; If asked to switch to (from) the alternate sub-buffer, and already (not)
3355 ;; ;; using it, do nothing. This test is needed for some programs (including
3356 ;; ;; Emacs) that emit the ti termcap string twice, for unknown reason.
3357 ;; (term-handle-deferred-scroll)
3358 ;; (if (eq set (not (term-using-alternate-sub-buffer)))
3359 ;; (let ((row (term-current-row))
3360 ;; (col (term-horizontal-column)))
3362 ;; (goto-char (point-max))
3363 ;; (if (not (eq (preceding-char) ?\n))
3364 ;; (term-insert-char ?\n 1))
3365 ;; (setq term-scroll-with-delete t)
3366 ;; (setq term-saved-home-marker (copy-marker term-home-marker))
3367 ;; (set-marker term-home-marker (point)))
3369 ;; (setq term-scroll-with-delete
3370 ;; (not (and (= term-scroll-start 0)
3371 ;; (= term-scroll-end term-height))))
3372 ;; (set-marker term-home-marker term-saved-home-marker)
3373 ;; (set-marker term-saved-home-marker nil)
3374 ;; (setq term-saved-home-marker nil)
3375 ;; (goto-char term-home-marker)))
3376 ;; (setq term-current-column nil)
3377 ;; (setq term-current-row 0)
3378 ;; (term-goto row col))))
3380 ;; Default value for the symbol term-command-hook.
3382 (defun term-command-hook (string)
3383 (cond ((equal string "")
3385 ((= (aref string 0) ?\032)
3386 ;; gdb (when invoked with -fullname) prints:
3387 ;; \032\032FULLFILENAME:LINENUMBER:CHARPOS:BEG_OR_MIDDLE:PC\n
3388 (let* ((first-colon (string-match ":" string 1))
3390 (string-match ":" string (1+ first-colon)))
3391 (filename (substring string 1 first-colon))
3392 (fileline (string-to-number
3393 (substring string (1+ first-colon) second-colon))))
3394 (setq term-pending-frame (cons filename fileline))))
3395 ((= (aref string 0) ?/)
3396 (cd (substring string 1)))
3397 ;; Allowing the inferior to call functions in Emacs is
3398 ;; probably too big a security hole.
3399 ;; ((= (aref string 0) ?!)
3400 ;; (eval (car (read-from-string string 1))))
3401 (t)));; Otherwise ignore it
3403 ;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen
3404 ;; and that its line LINE is visible.
3405 ;; Put the overlay-arrow on the line LINE in that buffer.
3406 ;; This is mainly used by gdb.
3408 (defun term-display-line (true-file line)
3409 (term-display-buffer-line (find-file-noselect true-file) line))
3411 (defun term-display-buffer-line (buffer line)
3412 (let* ((window (display-buffer buffer t))
3414 (with-current-buffer buffer
3417 (goto-char (point-min))
3418 (forward-line (1- line))
3420 (setq overlay-arrow-string "=>")
3421 (or overlay-arrow-position
3422 (setq overlay-arrow-position (make-marker)))
3423 (set-marker overlay-arrow-position (point) (current-buffer)))
3424 (cond ((or (< pos (point-min)) (> pos (point-max)))
3427 (set-window-point window overlay-arrow-position)))
3429 ;; The buffer-local marker term-home-marker defines the "home position"
3430 ;; (in terms of cursor motion). However, we move the term-home-marker
3431 ;; "down" as needed so that is no more that a window-full above (point-max).
3433 (defun term-goto-home ()
3434 (term-handle-deferred-scroll)
3435 (goto-char term-home-marker)
3436 (setq term-current-row 0)
3437 (setq term-current-column (current-column))
3438 (setq term-start-line-column term-current-column))
3440 (defun term-goto (row col)
3441 (term-handle-deferred-scroll)
3442 (cond ((and term-current-row (>= row term-current-row))
3443 ;; I assume this is a worthwhile optimization.
3444 (term-vertical-motion 0)
3445 (setq term-current-column term-start-line-column)
3446 (setq row (- row term-current-row)))
3450 (term-move-columns col))
3452 ;; The page is full, so enter "pager" mode, and wait for input.
3454 (defun term-process-pager ()
3455 (when (not term-pager-break-map)
3456 (let* ((map (make-keymap))
3460 ;; (define-key map (make-string 1 i) 'term-send-raw)
3462 (define-key map "\e"
3463 (lookup-key (current-global-map) "\e"))
3464 (define-key map "\C-x"
3465 (lookup-key (current-global-map) "\C-x"))
3466 (define-key map "\C-u"
3467 (lookup-key (current-global-map) "\C-u"))
3468 (define-key map " " 'term-pager-page)
3469 (define-key map "\r" 'term-pager-line)
3470 (define-key map "?" 'term-pager-help)
3471 (define-key map "h" 'term-pager-help)
3472 (define-key map "b" 'term-pager-back-page)
3473 (define-key map "\177" 'term-pager-back-line)
3474 (define-key map "q" 'term-pager-discard)
3475 (define-key map "D" 'term-pager-disable)
3476 (define-key map "<" 'term-pager-bob)
3477 (define-key map ">" 'term-pager-eob)
3480 (unless (featurep 'xemacs)
3481 (define-key map [menu-bar terminal] term-terminal-menu)
3482 (define-key map [menu-bar signals] term-signals-menu)
3483 (setq tmp (make-sparse-keymap "More pages?"))
3484 (define-key tmp [help] '("Help" . term-pager-help))
3485 (define-key tmp [disable]
3486 '("Disable paging" . term-fake-pager-disable))
3487 (define-key tmp [discard]
3488 '("Discard remaining output" . term-pager-discard))
3489 (define-key tmp [eob] '("Goto to end" . term-pager-eob))
3490 (define-key tmp [bob] '("Goto to beginning" . term-pager-bob))
3491 (define-key tmp [line] '("1 line forwards" . term-pager-line))
3492 (define-key tmp [bline] '("1 line backwards" . term-pager-back-line))
3493 (define-key tmp [back] '("1 page backwards" . term-pager-back-page))
3494 (define-key tmp [page] '("1 page forwards" . term-pager-page))
3495 (define-key map [menu-bar page] (cons "More pages?" tmp))
3498 (setq term-pager-break-map map)))
3499 ;; (let ((process (get-buffer-process (current-buffer))))
3500 ;; (stop-process process))
3501 (setq term-pager-old-local-map (current-local-map))
3502 (use-local-map term-pager-break-map)
3503 (make-local-variable 'term-old-mode-line-format)
3504 (setq term-old-mode-line-format mode-line-format)
3505 (setq mode-line-format
3506 (list "-- **MORE** "
3507 mode-line-buffer-identification
3508 " [Type ? for help] "
3510 (force-mode-line-update))
3512 (defun term-pager-line (lines)
3514 (let* ((moved (vertical-motion (1+ lines)))
3515 (deficit (- lines moved)))
3516 (when (> moved lines)
3518 (cond ((<= deficit 0) ;; OK, had enough in the buffer for request.
3519 (recenter (1- term-height)))
3520 ((term-pager-continue deficit)))))
3522 (defun term-pager-page (arg)
3523 "Proceed past the **MORE** break, allowing the next page of output to appear."
3525 (term-pager-line (* arg term-height)))
3527 ;; Pager mode command to go to beginning of buffer.
3528 (defun term-pager-bob ()
3530 (goto-char (point-min))
3531 (when (= (vertical-motion term-height) term-height)
3533 (recenter (1- term-height)))
3535 ;; Pager mode command to go to end of buffer.
3536 (defun term-pager-eob ()
3538 (goto-char term-home-marker)
3540 (goto-char (process-mark (get-buffer-process (current-buffer)))))
3542 (defun term-pager-back-line (lines)
3544 (vertical-motion (- 1 lines))
3548 ;; Move cursor to end of window.
3549 (vertical-motion term-height)
3551 (recenter (1- term-height)))
3553 (defun term-pager-back-page (arg)
3555 (term-pager-back-line (* arg term-height)))
3557 (defun term-pager-discard ()
3559 (setq term-terminal-parameter "")
3560 (interrupt-process nil t)
3561 (term-pager-continue term-height))
3563 ;; Disable pager processing.
3564 ;; Only callable while in pager mode. (Contrast term-disable-pager.)
3565 (defun term-pager-disable ()
3567 (if (term-handling-pager)
3568 (term-pager-continue nil)
3569 (setq term-pager-count nil))
3570 (term-update-mode-line))
3572 ;; Enable pager processing.
3573 (defun term-pager-enable ()
3575 (or (term-pager-enabled)
3576 (setq term-pager-count 0)) ;; Or maybe set to (term-current-row) ??
3577 (term-update-mode-line))
3579 (defun term-pager-toggle ()
3581 (if (term-pager-enabled) (term-pager-disable) (term-pager-enable)))
3583 (unless (featurep 'xemacs)
3584 (defalias 'term-fake-pager-enable 'term-pager-toggle)
3585 (defalias 'term-fake-pager-disable 'term-pager-toggle)
3586 (put 'term-char-mode 'menu-enable '(term-in-line-mode))
3587 (put 'term-line-mode 'menu-enable '(term-in-char-mode))
3588 (put 'term-fake-pager-enable 'menu-enable '(not term-pager-count))
3589 (put 'term-fake-pager-disable 'menu-enable 'term-pager-count))
3591 (defun term-pager-help ()
3592 "Provide help on commands available in a terminal-emulator **MORE** break."
3594 (message "Terminal-emulator pager break help...")
3597 (function (lambda ()
3598 (princ (substitute-command-keys
3599 "\\<term-pager-break-map>\
3600 Terminal-emulator MORE break.\n\
3601 Type one of the following keys:\n\n\
3602 \\[term-pager-page]\t\tMove forward one page.\n\
3603 \\[term-pager-line]\t\tMove forward one line.\n\
3604 \\[universal-argument] N \\[term-pager-page]\tMove N pages forward.\n\
3605 \\[universal-argument] N \\[term-pager-line]\tMove N lines forward.\n\
3606 \\[universal-argument] N \\[term-pager-back-line]\tMove N lines back.\n\
3607 \\[universal-argument] N \\[term-pager-back-page]\t\tMove N pages back.\n\
3608 \\[term-pager-bob]\t\tMove to the beginning of the buffer.\n\
3609 \\[term-pager-eob]\t\tMove to the end of the buffer.\n\
3610 \\[term-pager-discard]\t\tKill pending output and kill process.\n\
3611 \\[term-pager-disable]\t\tDisable PAGER handling.\n\n\
3612 \\{term-pager-break-map}\n\
3613 Any other key is passed through to the program
3614 running under the terminal emulator and disables pager processing until
3615 all pending output has been dealt with."))
3618 (defun term-pager-continue (new-count)
3619 (let ((process (get-buffer-process (current-buffer))))
3620 (use-local-map term-pager-old-local-map)
3621 (setq term-pager-old-local-map nil)
3622 (setq mode-line-format term-old-mode-line-format)
3623 (force-mode-line-update)
3624 (setq term-pager-count new-count)
3625 (set-process-filter process term-pager-old-filter)
3626 (funcall term-pager-old-filter process "")
3627 (continue-process process)))
3629 ;; Make sure there are DOWN blank lines below the current one.
3630 ;; Return 0 if we're unable (because of PAGER handling), else return DOWN.
3632 (defun term-handle-scroll (down)
3633 (let ((scroll-needed
3634 (- (+ (term-current-row) down)
3635 (if (< down 0) term-scroll-start term-scroll-end))))
3636 (when (or (and (< down 0) (< scroll-needed 0))
3637 (and (> down 0) (> scroll-needed 0)))
3638 (let ((save-point (copy-marker (point))) (save-top))
3639 (goto-char term-home-marker)
3640 (cond (term-scroll-with-delete
3643 ;; Delete scroll-needed lines at term-scroll-end,
3644 ;; then insert scroll-needed lines.
3645 (term-vertical-motion term-scroll-end)
3647 (setq save-top (point))
3648 (term-vertical-motion scroll-needed)
3650 (delete-region save-top (point))
3651 (goto-char save-point)
3652 (setq down (- scroll-needed down))
3653 (term-vertical-motion down))
3654 ;; Delete scroll-needed lines at term-scroll-start.
3655 (term-vertical-motion term-scroll-start)
3656 (setq save-top (point))
3657 (term-vertical-motion scroll-needed)
3658 (delete-region save-top (point))
3659 (goto-char save-point)
3660 (term-vertical-motion down)
3661 (term-adjust-current-row-cache (- scroll-needed)))
3662 (setq term-current-column nil)
3663 (term-insert-char ?\n (abs scroll-needed)))
3664 ((and (numberp term-pager-count)
3665 (< (setq term-pager-count (- term-pager-count down))
3668 (term-process-pager))
3670 (term-adjust-current-row-cache (- scroll-needed))
3671 (term-vertical-motion scroll-needed)
3672 (set-marker term-home-marker (point))))
3673 (goto-char save-point)
3674 (set-marker save-point nil))))
3677 (defun term-down (down &optional check-for-scroll)
3678 "Move down DOWN screen lines vertically."
3679 (let ((start-column (term-horizontal-column)))
3680 (when (and check-for-scroll (or term-scroll-with-delete term-pager-count))
3681 (setq down (term-handle-scroll down)))
3682 (unless (and (= term-current-row 0) (< down 0))
3683 (term-adjust-current-row-cache down)
3684 (when (or (/= (point) (point-max)) (< down 0))
3685 (setq down (- down (term-vertical-motion down)))))
3687 ;; Extend buffer with extra blank lines if needed.
3688 (term-insert-char ?\n down)
3689 (setq term-current-column 0)
3690 (setq term-start-line-column 0))
3692 (when (= term-current-row 0)
3693 ;; Insert lines if at the beginning.
3694 (save-excursion (term-insert-char ?\n (- down)))
3697 ;; Delete lines from the end.
3698 (forward-line term-height)
3700 (forward-line (- down))
3701 (delete-region p (point)))))
3702 (setq term-current-column 0)
3703 (setq term-start-line-column (current-column))))
3705 (term-move-columns start-column))))
3707 ;; Assuming point is at the beginning of a screen line,
3708 ;; if the line above point wraps around, add a ?\n to undo the wrapping.
3709 ;; FIXME: Probably should be called more than it is.
3710 (defun term-unwrap-line ()
3711 (when (not (bolp)) (insert-before-markers ?\n)))
3713 (defun term-erase-in-line (kind)
3714 (when (= kind 1) ;; erase left of point
3715 (let ((cols (term-horizontal-column)) (saved-point (point)))
3716 (term-vertical-motion 0)
3717 (delete-region (point) saved-point)
3718 (term-insert-char ? cols)))
3719 (when (not (eq kind 1)) ;; erase right of point
3720 (let ((saved-point (point))
3721 (wrapped (and (zerop (term-horizontal-column))
3722 (not (zerop (term-current-column))))))
3723 (term-vertical-motion 1)
3724 (delete-region saved-point (point))
3725 ;; wrapped is true if we're at the beginning of screen line,
3726 ;; but not a buffer line. If we delete the current screen line
3727 ;; that will make the previous line no longer wrap, and (because
3728 ;; of the way Emacs display works) point will be at the end of
3729 ;; the previous screen line rather then the beginning of the
3730 ;; current one. To avoid that, we make sure that current line
3731 ;; contain a space, to force the previous line to continue to wrap.
3732 ;; We could do this always, but it seems preferable to not add the
3733 ;; extra space when wrapped is false.
3737 (put-text-property saved-point (point) 'face 'default)
3738 (goto-char saved-point))))
3740 (defun term-erase-in-display (kind)
3741 "Erase (that is blank out) part of the window.
3742 If KIND is 0, erase from (point) to (point-max);
3743 if KIND is 1, erase from home to point; else erase from home to point-max."
3744 (term-handle-deferred-scroll)
3745 (cond ((eq term-terminal-parameter 0)
3746 (let ((need-unwrap (bolp)))
3747 (delete-region (point) (point-max))
3748 (when need-unwrap (term-unwrap-line))))
3749 ((let ((row (term-current-row))
3750 (col (term-horizontal-column))
3751 (start-region term-home-marker)
3752 (end-region (if (eq kind 1) (point) (point-max))))
3753 (delete-region start-region end-region)
3756 (term-insert-char ?\n row))
3757 (setq term-current-column nil)
3758 (setq term-current-row nil)
3759 (term-goto row col)))))
3761 (defun term-delete-chars (count)
3762 (let ((save-point (point)))
3763 (term-vertical-motion 1)
3765 (goto-char save-point)
3766 (move-to-column (+ (term-current-column) count) t)
3767 (delete-region save-point (point))))
3769 ;; Insert COUNT spaces after point, but do not change any of
3770 ;; following screen lines. Hence we may have to delete characters
3771 ;; at the end of this screen line to make room.
3773 (defun term-insert-spaces (count)
3774 (let ((save-point (point)) (save-eol) (pnt-at-eol))
3775 (term-vertical-motion 1)
3778 (setq save-eol (point)
3779 pnt-at-eol (line-end-position))
3780 (move-to-column (+ (term-start-line-column) (- term-width count)) t)
3781 ;; If move-to-column extends the current line it will use the face
3782 ;; from the last character on the line, set the face for the chars
3784 (when (>= (point) pnt-at-eol)
3785 (put-text-property pnt-at-eol (point) 'face 'default))
3786 (when (> save-eol (point))
3787 (delete-region (point) save-eol))
3788 (goto-char save-point)
3789 (term-insert-char ? count)
3790 (goto-char save-point)))
3792 (defun term-delete-lines (lines)
3793 (let ((start (point))
3794 (save-current-column term-current-column)
3795 (save-start-line-column term-start-line-column)
3796 (save-current-row (term-current-row)))
3797 ;; The number of inserted lines shouldn't exceed the scroll region end.
3798 ;; The `term-scroll-end' line is part of the scrolling region, so
3799 ;; we need to go one line past it in order to ensure correct
3801 (when (> (+ save-current-row lines) (1+ term-scroll-end))
3802 (setq lines (- lines (- (+ save-current-row lines) (1+ term-scroll-end)))))
3804 (delete-region start (point))
3805 (term-down (- (1+ term-scroll-end) save-current-row lines))
3806 (term-insert-char ?\n lines)
3807 (setq term-current-column save-current-column)
3808 (setq term-start-line-column save-start-line-column)
3809 (setq term-current-row save-current-row)
3812 (defun term-insert-lines (lines)
3813 (let ((start (point))
3815 (save-current-column term-current-column)
3816 (save-start-line-column term-start-line-column)
3817 (save-current-row (term-current-row)))
3818 ;; Inserting lines should take into account the scroll region.
3819 ;; The `term-scroll-end' line is part of the scrolling region, so
3820 ;; we need to go one line past it in order to ensure correct
3822 (if (< save-current-row term-scroll-start)
3823 ;; If point is before scroll start,
3825 (setq lines (- lines (- term-scroll-start save-current-row)))
3826 (term-down (- term-scroll-start save-current-row))
3827 (setq start (point)))
3828 ;; The number of inserted lines shouldn't exceed the scroll region end.
3829 (when (> (+ save-current-row lines) (1+ term-scroll-end))
3830 (setq lines (- lines (- (+ save-current-row lines)(1+ term-scroll-end)))))
3831 (term-down (- (1+ term-scroll-end) save-current-row lines)))
3832 (setq start-deleted (point))
3834 (delete-region start-deleted (point))
3836 (setq term-current-column save-current-column)
3837 (setq term-start-line-column save-start-line-column)
3838 (setq term-current-row save-current-row)
3839 (term-insert-char ?\n lines)
3842 (defun term-start-output-log (name)
3843 "Record raw inferior process output in a buffer."
3844 (interactive (list (if term-log-buffer
3846 (read-buffer "Record output in buffer: "
3847 (format "%s output-log"
3848 (buffer-name (current-buffer)))
3850 (if (or (null name) (equal name ""))
3851 (progn (setq term-log-buffer nil)
3852 (message "Output logging off."))
3853 (if (get-buffer name)
3855 (with-current-buffer (get-buffer-create name)
3857 (buffer-disable-undo (current-buffer))
3859 (setq term-log-buffer (get-buffer name))
3860 (message "Recording terminal emulator output into buffer \"%s\""
3861 (buffer-name term-log-buffer))))
3863 (defun term-stop-output-log ()
3864 "Discontinue raw inferior process logging."
3866 (term-start-output-log nil))
3868 (defun term-show-maximum-output ()
3869 "Put the end of the buffer at the bottom of the window."
3871 (goto-char (point-max))
3874 ;;; Do the user's customization...
3876 (defvar term-load-hook nil
3877 "This hook is run when term is loaded in.
3878 This is a good place to put keybindings.")
3880 (run-hooks 'term-load-hook)
3883 ;;; Filename/command/history completion in a buffer
3884 ;; ===========================================================================
3885 ;; Useful completion functions, courtesy of the Ergo group.
3888 ;; term-dynamic-complete Complete or expand command, filename,
3889 ;; history at point.
3890 ;; term-dynamic-complete-filename Complete filename at point.
3891 ;; term-dynamic-list-filename-completions List completions in help buffer.
3892 ;; term-replace-by-expanded-filename Expand and complete filename at point;
3893 ;; replace with expanded/completed name.
3895 ;; These are not installed in the term-mode keymap. But they are
3896 ;; available for people who want them. Shell-mode installs them:
3897 ;; (define-key shell-mode-map "\t" 'term-dynamic-complete)
3898 ;; (define-key shell-mode-map "\M-?"
3899 ;; 'term-dynamic-list-filename-completions)))
3901 ;; Commands like this are fine things to put in load hooks if you
3902 ;; want them present in specific modes.
3904 (defcustom term-completion-autolist nil
3905 "If non-nil, automatically list possibilities on partial completion.
3906 This mirrors the optional behavior of tcsh."
3910 (defcustom term-completion-addsuffix t
3911 "If non-nil, add a `/' to completed directories, ` ' to file names.
3912 If a cons pair, it should be of the form (DIRSUFFIX . FILESUFFIX) where
3913 DIRSUFFIX and FILESUFFIX are strings added on unambiguous or exact
3914 completion. This mirrors the optional behavior of tcsh."
3916 :type '(choice (const :tag "No suffix" nil)
3917 (cons (string :tag "dirsuffix") (string :tag "filesuffix"))
3918 (other :tag "Suffix" t)))
3920 (defcustom term-completion-recexact nil
3921 "If non-nil, use shortest completion if characters cannot be added.
3922 This mirrors the optional behavior of tcsh.
3924 A non-nil value is useful if `term-completion-autolist' is non-nil too."
3928 (defcustom term-completion-fignore nil
3929 "List of suffixes to be disregarded during file completion.
3930 This mirrors the optional behavior of bash and tcsh.
3932 Note that this applies to `term-dynamic-complete-filename' only."
3934 :type '(choice (const nil)
3935 (repeat :tag "List of suffixes" string)))
3937 (defvar term-file-name-prefix ""
3938 "Prefix prepended to absolute file names taken from process input.
3939 This is used by term's and shell's completion functions, and by shell's
3940 directory tracking functions.")
3943 (defun term-directory (directory)
3944 ;; Return expanded DIRECTORY, with `term-file-name-prefix' if absolute.
3945 (expand-file-name (if (file-name-absolute-p directory)
3946 (concat term-file-name-prefix directory)
3950 (defun term-word (word-chars)
3951 "Return the word of WORD-CHARS at point, or nil if none is found.
3952 Word constituents are considered to be those in WORD-CHARS, which is like the
3953 inside of a \"[...]\" (see `skip-chars-forward')."
3955 (let ((limit (point))
3956 (word (concat "[" word-chars "]"))
3957 (non-word (concat "[^" word-chars "]")))
3958 (when (re-search-backward non-word nil 'move)
3960 ;; Anchor the search forwards.
3961 (if (or (eolp) (looking-at non-word))
3963 (re-search-forward (concat word "+") limit)
3964 (buffer-substring (match-beginning 0) (match-end 0))))))
3967 (defun term-match-partial-filename ()
3968 "Return the filename at point, or nil if none is found.
3969 Environment variables are substituted. See `term-word'."
3970 (let ((filename (term-word "~/A-Za-z0-9+@:_.$#,={}-")))
3971 (and filename (substitute-in-file-name filename))))
3974 (defun term-dynamic-complete ()
3975 "Dynamically perform completion at point.
3976 Calls the functions in `term-dynamic-complete-functions' to perform
3977 completion until a function returns non-nil, at which point completion is
3978 assumed to have occurred."
3980 (let ((functions term-dynamic-complete-functions))
3981 (while (and functions (null (funcall (car functions))))
3982 (setq functions (cdr functions)))))
3985 (defun term-dynamic-complete-filename ()
3986 "Dynamically complete the filename at point.
3987 Completes if after a filename. See `term-match-partial-filename' and
3988 `term-dynamic-complete-as-filename'.
3989 This function is similar to `term-replace-by-expanded-filename', except that
3990 it won't change parts of the filename already entered in the buffer; it just
3991 adds completion characters to the end of the filename. A completions listing
3992 may be shown in a help buffer if completion is ambiguous.
3994 Completion is dependent on the value of `term-completion-addsuffix',
3995 `term-completion-recexact' and `term-completion-fignore', and the timing of
3996 completions listing is dependent on the value of `term-completion-autolist'.
3998 Returns t if successful."
4000 (when (term-match-partial-filename)
4001 (prog2 (or (eq (selected-window) (minibuffer-window))
4002 (message "Completing file name..."))
4003 (term-dynamic-complete-as-filename))))
4005 (defun term-dynamic-complete-as-filename ()
4006 "Dynamically complete at point as a filename.
4007 See `term-dynamic-complete-filename'. Returns t if successful."
4008 (let* ((completion-ignore-case nil)
4009 (completion-ignored-extensions term-completion-fignore)
4011 (dirsuffix (cond ((not term-completion-addsuffix) "")
4012 ((not (consp term-completion-addsuffix)) "/")
4013 (t (car term-completion-addsuffix))))
4014 (filesuffix (cond ((not term-completion-addsuffix) "")
4015 ((not (consp term-completion-addsuffix)) " ")
4016 (t (cdr term-completion-addsuffix))))
4017 (filename (or (term-match-partial-filename) ""))
4018 (pathdir (file-name-directory filename))
4019 (pathnondir (file-name-nondirectory filename))
4020 (directory (if pathdir (term-directory pathdir) default-directory))
4021 (completion (file-name-completion pathnondir directory))
4022 (mini-flag (eq (selected-window) (minibuffer-window))))
4023 (cond ((null completion)
4024 (message "No completions of %s" filename)
4026 ((eq completion t) ; Means already completed "file".
4027 (when term-completion-addsuffix (insert " "))
4028 (or mini-flag (message "Sole completion")))
4029 ((string-equal completion "") ; Means completion on "directory/".
4030 (term-dynamic-list-filename-completions))
4031 (t ; Completion string returned.
4032 (let ((file (concat (file-name-as-directory directory) completion)))
4033 (insert (substring (directory-file-name completion)
4034 (length pathnondir)))
4035 (cond ((symbolp (file-name-completion completion directory))
4036 ;; We inserted a unique completion.
4037 (insert (if (file-directory-p file) dirsuffix filesuffix))
4038 (or mini-flag (message "Completed")))
4039 ((and term-completion-recexact term-completion-addsuffix
4040 (string-equal pathnondir completion)
4041 (file-exists-p file))
4042 ;; It's not unique, but user wants shortest match.
4043 (insert (if (file-directory-p file) dirsuffix filesuffix))
4044 (or mini-flag (message "Completed shortest")))
4045 ((or term-completion-autolist
4046 (string-equal pathnondir completion))
4047 ;; It's not unique, list possible completions.
4048 (term-dynamic-list-filename-completions))
4050 (or mini-flag (message "Partially completed")))))))
4054 (defun term-replace-by-expanded-filename ()
4055 "Dynamically expand and complete the filename at point.
4056 Replace the filename with an expanded, canonicalized and completed replacement.
4057 \"Expanded\" means environment variables (e.g., $HOME) and `~'s are replaced
4058 with the corresponding directories. \"Canonicalized\" means `..' and `.' are
4059 removed, and the filename is made absolute instead of relative. For expansion
4060 see `expand-file-name' and `substitute-in-file-name'. For completion see
4061 `term-dynamic-complete-filename'."
4063 (replace-match (expand-file-name (term-match-partial-filename)) t t)
4064 (term-dynamic-complete-filename))
4067 (defun term-dynamic-simple-complete (stub candidates)
4068 "Dynamically complete STUB from CANDIDATES list.
4069 This function inserts completion characters at point by completing STUB from
4070 the strings in CANDIDATES. A completions listing may be shown in a help buffer
4071 if completion is ambiguous.
4073 Returns nil if no completion was inserted.
4074 Returns `sole' if completed with the only completion match.
4075 Returns `shortest' if completed with the shortest of the completion matches.
4076 Returns `partial' if completed as far as possible with the completion matches.
4077 Returns `listed' if a completion listing was shown.
4079 See also `term-dynamic-complete-filename'."
4080 (let* ((completion-ignore-case nil)
4081 (candidates (mapcar (function (lambda (x) (list x))) candidates))
4082 (completions (all-completions stub candidates)))
4083 (cond ((null completions)
4084 (message "No completions of %s" stub)
4086 ((= 1 (length completions)) ; Gotcha!
4087 (let ((completion (car completions)))
4088 (if (string-equal completion stub)
4089 (message "Sole completion")
4090 (insert (substring completion (length stub)))
4091 (message "Completed"))
4092 (when term-completion-addsuffix (insert " "))
4094 (t ; There's no unique completion.
4095 (let ((completion (try-completion stub candidates)))
4096 ;; Insert the longest substring.
4097 (insert (substring completion (length stub)))
4098 (cond ((and term-completion-recexact term-completion-addsuffix
4099 (string-equal stub completion)
4100 (member completion completions))
4101 ;; It's not unique, but user wants shortest match.
4103 (message "Completed shortest")
4105 ((or term-completion-autolist
4106 (string-equal stub completion))
4107 ;; It's not unique, list possible completions.
4108 (term-dynamic-list-completions completions)
4111 (message "Partially completed")
4113 (make-obsolete 'term-dynamic-simple-complete 'completion-in-region "23.2")
4116 (defun term-dynamic-list-filename-completions ()
4117 "List in help buffer possible completions of the filename at point."
4119 (let* ((completion-ignore-case nil)
4120 (filename (or (term-match-partial-filename) ""))
4121 (pathdir (file-name-directory filename))
4122 (pathnondir (file-name-nondirectory filename))
4123 (directory (if pathdir (term-directory pathdir) default-directory))
4124 (completions (file-name-all-completions pathnondir directory)))
4126 (term-dynamic-list-completions completions)
4127 (message "No completions of %s" filename))))
4130 (defun term-dynamic-list-completions (completions)
4131 "List in help buffer sorted COMPLETIONS.
4132 Typing SPC flushes the help buffer."
4133 (let ((conf (current-window-configuration)))
4134 (with-output-to-temp-buffer "*Completions*"
4135 (display-completion-list (sort completions 'string-lessp)))
4136 (message "Hit space to flush")
4138 (if (with-current-buffer (get-buffer "*Completions*")
4139 (setq key (read-key-sequence nil)
4142 (eq (window-buffer (posn-window (event-start first)))
4143 (get-buffer "*Completions*"))
4144 (eq (key-binding key) 'mouse-choose-completion)))
4145 ;; If the user does mouse-choose-completion with the mouse,
4146 ;; execute the command, then delete the completion window.
4148 (choose-completion first)
4149 (set-window-configuration conf))
4151 (set-window-configuration conf)
4152 (setq unread-command-events (listify-key-sequence key)))))))
4154 ;; I need a make-term that doesn't surround with *s -mm
4155 (defun term-ansi-make-term (name program &optional startfile &rest switches)
4156 "Make a term process NAME in a buffer, running PROGRAM.
4157 The name of the buffer is NAME.
4158 If there is already a running process in that buffer, it is not restarted.
4159 Optional third arg STARTFILE is the name of a file to send the contents of to
4160 the process. Any more args are arguments to PROGRAM."
4161 (let ((buffer (get-buffer-create name )))
4162 ;; If no process, or nuked process, crank up a new one and put buffer in
4163 ;; term mode. Otherwise, leave buffer and existing process alone.
4164 (cond ((not (term-check-proc buffer))
4165 (with-current-buffer buffer
4166 (term-mode)) ; Install local vars, mode, keymap, ...
4167 (term-exec buffer name program startfile switches)))
4170 (defvar term-ansi-buffer-name nil)
4171 (defvar term-ansi-default-program nil)
4172 (defvar term-ansi-buffer-base-name nil)
4175 (defun ansi-term (program &optional new-buffer-name)
4176 "Start a terminal-emulator in a new buffer."
4177 (interactive (list (read-from-minibuffer "Run program: "
4178 (or explicit-shell-file-name
4183 ;; Pick the name of the new buffer.
4184 (setq term-ansi-buffer-name
4187 (if term-ansi-buffer-base-name
4188 (if (eq term-ansi-buffer-base-name t)
4189 (file-name-nondirectory program)
4190 term-ansi-buffer-base-name)
4193 (setq term-ansi-buffer-name (concat "*" term-ansi-buffer-name "*"))
4195 ;; In order to have more than one term active at a time
4196 ;; I'd like to have the term names have the *term-ansi-term<?>* form,
4197 ;; for now they have the *term-ansi-term*<?> form but we'll see...
4199 (setq term-ansi-buffer-name (generate-new-buffer-name term-ansi-buffer-name))
4200 (setq term-ansi-buffer-name (term-ansi-make-term term-ansi-buffer-name program))
4202 (set-buffer term-ansi-buffer-name)
4206 ;; I wanna have find-file on C-x C-f -mm
4207 ;; your mileage may definitely vary, maybe it's better to put this in your
4210 (term-set-escape-char ?\C-x)
4212 (switch-to-buffer term-ansi-buffer-name))
4215 ;;; Serial terminals
4216 ;; ===========================================================================
4217 (defun serial-port-is-file-p ()
4218 "Guess whether serial ports are files on this system.
4219 Return t if this is a Unix-based system, where serial ports are
4220 files, such as /dev/ttyS0.
4221 Return nil if this is Windows or DOS, where serial ports have
4222 special identifiers such as COM1."
4223 (not (memq system-type '(windows-nt cygwin ms-dos))))
4225 (defvar serial-name-history
4226 (if (serial-port-is-file-p)
4227 (or (when (file-exists-p "/dev/ttys0") (list "/dev/ttys0"))
4228 (when (file-exists-p "/dev/ttyS0") (list "/dev/ttyS0")))
4230 "History of serial ports used by `serial-read-name'.")
4232 (defvar serial-speed-history
4233 ;; Initialized with reasonable values for newbies.
4234 (list "9600" ;; Given twice because 9600 b/s is the most common speed
4235 "1200" "2400" "4800" "9600" "14400" "19200"
4236 "28800" "38400" "57600" "115200")
4237 "History of serial port speeds used by `serial-read-speed'.")
4239 (defun serial-nice-speed-history ()
4240 "Return `serial-speed-history' cleaned up for a mouse-menu."
4244 (copy-sequence serial-speed-history)
4245 (lambda (a b) (when (and (stringp a) (stringp b))
4246 (> (string-to-number a) (string-to-number b))))))
4247 (dolist (i x) (when (not (equal i (car y))) (push i y)))
4250 (defconst serial-no-speed "nil"
4251 "String for `serial-read-speed' for special serial ports.
4252 If `serial-read-speed' reads this string from the user, it
4253 returns nil, which is recognized by `serial-process-configure'
4254 for special serial ports that cannot be configured.")
4256 (defun serial-supported-or-barf ()
4257 "Signal an error if serial processes are not supported."
4258 (unless (fboundp 'make-serial-process)
4259 (error "Serial processes are not supported on this system")))
4261 (defun serial-read-name ()
4262 "Read a serial port name from the user.
4263 Try to be nice by providing useful defaults and history.
4264 On Windows, prepend \\.\ to the port name unless it already
4265 contains a backslash. This handles the legacy ports COM1-COM9 as
4266 well as the newer ports COM10 and higher."
4267 (serial-supported-or-barf)
4268 (let* ((file-name-history serial-name-history)
4269 (h (car file-name-history))
4270 (x (if (serial-port-is-file-p)
4272 ;; `prompt': The most recently used port is provided as
4273 ;; the default value, which is used when the user
4274 ;; simply presses return.
4275 (if (stringp h) (format "Serial port (default %s): " h)
4277 ;; `directory': Most systems have their serial ports
4278 ;; in the same directory, so start in the directory
4279 ;; of the most recently used port, or in a reasonable
4280 ;; default directory.
4281 (or (and h (file-name-directory h))
4282 (and (file-exists-p "/dev/") "/dev/")
4283 (and (file-exists-p "/") "/"))
4284 ;; `default': This causes (read-file-name) to return
4285 ;; the empty string if he user simply presses return.
4286 ;; Using nil here may result in a default directory
4287 ;; of the current buffer, which is not useful for
4290 (read-from-minibuffer
4291 (if (stringp h) (format "Serial port (default %s): " h)
4293 nil nil nil '(file-name-history . 1) nil nil))))
4294 (if (or (null x) (and (stringp x) (zerop (length x))))
4296 (setq serial-name-history file-name-history))
4297 (when (or (null x) (and (stringp x) (zerop (length x))))
4298 (error "No serial port selected"))
4299 (when (and (not (serial-port-is-file-p))
4300 (not (string-match "\\\\" x)))
4301 (set 'x (concat "\\\\.\\" x)))
4304 (defun serial-read-speed ()
4305 "Read a serial port speed (in bits per second) from the user.
4306 Try to be nice by providing useful defaults and history."
4307 (serial-supported-or-barf)
4308 (let* ((history serial-speed-history)
4310 (x (read-from-minibuffer
4311 (cond ((string= h serial-no-speed)
4312 "Speed (default nil = set by port): ")
4314 (format "Speed (default %s b/s): " h))
4316 (format "Speed (b/s): ")))
4317 nil nil nil '(history . 1) nil nil)))
4318 (when (or (null x) (and (stringp x) (zerop (length x))))
4320 (when (or (null x) (not (stringp x)) (zerop (length x)))
4321 (error "Invalid speed"))
4322 (if (string= x serial-no-speed)
4324 (setq x (string-to-number x))
4325 (when (or (null x) (not (integerp x)) (<= x 0))
4326 (error "Invalid speed")))
4327 (setq serial-speed-history history)
4331 (defun serial-term (port speed)
4332 "Start a terminal-emulator for a serial port in a new buffer.
4333 PORT is the path or name of the serial port. For example, this
4334 could be \"/dev/ttyS0\" on Unix. On Windows, this could be
4335 \"COM1\" or \"\\\\.\\COM10\".
4336 SPEED is the speed of the serial port in bits per second. 9600
4337 is a common value. SPEED can be nil, see
4338 `serial-process-configure' for details.
4339 The buffer is in Term mode; see `term-mode' for the commands to
4341 \\<term-raw-map>Type \\[switch-to-buffer] to switch to another buffer."
4342 (interactive (list (serial-read-name) (serial-read-speed)))
4343 (serial-supported-or-barf)
4344 (let* ((process (make-serial-process
4347 :coding 'no-conversion
4349 (buffer (process-buffer process)))
4350 (with-current-buffer buffer
4353 (goto-char (point-max))
4354 (set-marker (process-mark process) (point))
4355 (set-process-filter process 'term-emulate-terminal)
4356 (set-process-sentinel process 'term-sentinel))
4357 (switch-to-buffer buffer)
4360 (defvar serial-mode-line-speed-menu nil)
4361 (defvar serial-mode-line-config-menu nil)
4363 (defun serial-speed ()
4364 "Return the speed of the serial port of the current buffer's process.
4365 The return value may be nil for a special serial port."
4366 (process-contact (get-buffer-process (current-buffer)) :speed))
4368 (defun serial-mode-line-speed-menu-1 (event)
4370 (save-selected-window
4371 (select-window (posn-window (event-start event)))
4372 (serial-update-speed-menu)
4373 (let* ((selection (serial-mode-line-speed-menu event))
4374 (binding (and selection (lookup-key serial-mode-line-speed-menu
4375 (vector (car selection))))))
4376 (when binding (call-interactively binding)))))
4378 (defun serial-mode-line-speed-menu (event)
4379 (x-popup-menu event serial-mode-line-speed-menu))
4381 (defun serial-update-speed-menu ()
4382 (setq serial-mode-line-speed-menu (make-sparse-keymap "Speed (b/s)"))
4383 (define-key serial-mode-line-speed-menu [serial-mode-line-speed-menu-other]
4384 '(menu-item "Other..."
4385 (lambda (event) (interactive "e")
4386 (let ((speed (serial-read-speed)))
4387 (serial-process-configure :speed speed)
4388 (term-update-mode-line)
4389 (message "Speed set to %d b/s" speed)))))
4390 (dolist (str (serial-nice-speed-history))
4391 (let ((num (or (and (stringp str) (string-to-number str)) 0)))
4393 serial-mode-line-speed-menu
4394 (vector (make-symbol (format "serial-mode-line-speed-menu-%s" str)))
4397 (lambda (event) (interactive "e")
4398 (serial-process-configure :speed ,num)
4399 (term-update-mode-line)
4400 (message "Speed set to %d b/s" ,num))
4401 :button (:toggle . (= (serial-speed) ,num)))))))
4403 (defun serial-mode-line-config-menu-1 (event)
4405 (save-selected-window
4406 (select-window (posn-window (event-start event)))
4407 (serial-update-config-menu)
4408 (let* ((selection (serial-mode-line-config-menu event))
4409 (binding (and selection (lookup-key serial-mode-line-config-menu
4410 (vector (car selection))))))
4411 (when binding (call-interactively binding)))))
4413 (defun serial-mode-line-config-menu (event)
4414 (x-popup-menu event serial-mode-line-config-menu))
4416 (defun serial-update-config-menu ()
4417 (setq serial-mode-line-config-menu (make-sparse-keymap "Configuration"))
4418 (let ((config (process-contact
4419 (get-buffer-process (current-buffer)) t)))
4420 (dolist (y '((:flowcontrol hw "Hardware flowcontrol (RTS/CTS)")
4421 (:flowcontrol sw "Software flowcontrol (XON/XOFF)")
4422 (:flowcontrol nil "No flowcontrol")
4423 (:stopbits 2 "2 stopbits")
4424 (:stopbits 1 "1 stopbit")
4425 (:parity odd "Odd parity")
4426 (:parity even "Even parity")
4427 (:parity nil "No parity")
4428 (:bytesize 7 "7 bits per byte")
4429 (:bytesize 8 "8 bits per byte")))
4430 (define-key serial-mode-line-config-menu
4431 (vector (make-symbol (format "%s-%s" (nth 0 y) (nth 1 y))))
4434 (lambda (event) (interactive "e")
4435 (serial-process-configure ,(nth 0 y) ',(nth 1 y))
4436 (term-update-mode-line)
4437 (message "%s" ,(nth 2 y)))
4438 ;; Use :toggle instead of :radio because a non-standard port
4439 ;; configuration may not match any menu items.
4440 :button (:toggle . ,(equal (plist-get config (nth 0 y))
4444 ;;; Converting process modes to use term mode
4445 ;; ===========================================================================
4446 ;; Renaming variables
4447 ;; Most of the work is renaming variables and functions. These are the common
4450 ;; last-input-start term-last-input-start
4451 ;; last-input-end term-last-input-end
4452 ;; shell-prompt-pattern term-prompt-regexp
4453 ;; shell-set-directory-error-hook <no equivalent>
4455 ;; shell-set-directory <unnecessary>
4456 ;; shell-mode-map term-mode-map
4458 ;; shell-send-input term-send-input
4459 ;; shell-send-eof term-delchar-or-maybe-eof
4460 ;; kill-shell-input term-kill-input
4461 ;; interrupt-shell-subjob term-interrupt-subjob
4462 ;; stop-shell-subjob term-stop-subjob
4463 ;; quit-shell-subjob term-quit-subjob
4464 ;; kill-shell-subjob term-kill-subjob
4465 ;; kill-output-from-shell term-kill-output
4466 ;; show-output-from-shell term-show-output
4467 ;; copy-last-shell-input Use term-previous-input/term-next-input
4469 ;; SHELL-SET-DIRECTORY is gone, its functionality taken over by
4470 ;; SHELL-DIRECTORY-TRACKER, the shell mode's term-input-filter-functions.
4471 ;; Term mode does not provide functionality equivalent to
4472 ;; shell-set-directory-error-hook; it is gone.
4474 ;; term-last-input-start is provided for modes which want to munge
4475 ;; the buffer after input is sent, perhaps because the inferior
4476 ;; insists on echoing the input. The LAST-INPUT-START variable in
4477 ;; the old shell package was used to implement a history mechanism,
4478 ;; but you should think twice before using term-last-input-start
4479 ;; for this; the input history ring often does the job better.
4481 ;; If you are implementing some process-in-a-buffer mode, called foo-mode, do
4482 ;; *not* create the term-mode local variables in your foo-mode function.
4483 ;; This is not modular. Instead, call term-mode, and let *it* create the
4484 ;; necessary term-specific local variables. Then create the
4485 ;; foo-mode-specific local variables in foo-mode. Set the buffer's keymap to
4486 ;; be foo-mode-map, and its mode to be foo-mode. Set the term-mode hooks
4487 ;; (term-{prompt-regexp, input-filter, input-filter-functions,
4488 ;; get-old-input) that need to be different from the defaults. Call
4489 ;; foo-mode-hook, and you're done. Don't run the term-mode hook yourself;
4490 ;; term-mode will take care of it. The following example, from shell.el,
4493 ;; (defvar shell-mode-map '())
4494 ;; (cond ((not shell-mode-map)
4495 ;; (setq shell-mode-map (copy-keymap term-mode-map))
4496 ;; (define-key shell-mode-map "\C-c\C-f" 'shell-forward-command)
4497 ;; (define-key shell-mode-map "\C-c\C-b" 'shell-backward-command)
4498 ;; (define-key shell-mode-map "\t" 'term-dynamic-complete)
4499 ;; (define-key shell-mode-map "\M-?"
4500 ;; 'term-dynamic-list-filename-completions)))
4502 ;; (defun shell-mode ()
4505 ;; (setq term-prompt-regexp shell-prompt-pattern)
4506 ;; (setq major-mode 'shell-mode)
4507 ;; (setq mode-name "Shell")
4508 ;; (use-local-map shell-mode-map)
4509 ;; (make-local-variable 'shell-directory-stack)
4510 ;; (setq shell-directory-stack nil)
4511 ;; (add-hook 'term-input-filter-functions 'shell-directory-tracker)
4512 ;; (run-mode-hooks 'shell-mode-hook))
4515 ;; Completion for term-mode users
4517 ;; For modes that use term-mode, term-dynamic-complete-functions is the
4518 ;; hook to add completion functions to. Functions on this list should return
4519 ;; non-nil if completion occurs (i.e., further completion should not occur).
4520 ;; You could use completion-in-region to do the bulk of the
4525 ;;; term.el ends here