Added wording for the regex files and the --ignore-case-regex option.
[emacs.git] / lisp / comint.el
blob48c60003b7df12c56fd86e78a33de51c7effc2c6
1 ;;; comint.el --- general command interpreter in a window stuff
3 ;; Copyright (C) 1988, 90, 92, 93, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc.
5 ;; Author: Olin Shivers <shivers@cs.cmu.edu> then
6 ;; Simon Marshall <simon@gnu.org>
7 ;; Maintainer: FSF
8 ;; Keywords: processes
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
27 ;;; Commentary:
29 ;; Please send me bug reports, bug fixes, and extensions, so that I can
30 ;; merge them into the master source.
31 ;; - Olin Shivers (shivers@cs.cmu.edu)
32 ;; - Simon Marshall (simon@gnu.org)
34 ;; This file defines a general command-interpreter-in-a-buffer package
35 ;; (comint mode). The idea is that you can build specific process-in-a-buffer
36 ;; modes on top of comint mode -- e.g., lisp, shell, scheme, T, soar, ....
37 ;; This way, all these specific packages share a common base functionality,
38 ;; and a common set of bindings, which makes them easier to use (and
39 ;; saves code, implementation time, etc., etc.).
41 ;; Several packages are already defined using comint mode:
42 ;; - shell.el defines a shell-in-a-buffer mode.
43 ;; - cmulisp.el defines a simple lisp-in-a-buffer mode.
45 ;; - The file cmuscheme.el defines a scheme-in-a-buffer mode.
46 ;; - The file tea.el tunes scheme and inferior-scheme modes for T.
47 ;; - The file soar.el tunes lisp and inferior-lisp modes for Soar.
48 ;; - cmutex.el defines tex and latex modes that invoke tex, latex, bibtex,
49 ;; previewers, and printers from within emacs.
50 ;; - background.el allows csh-like job control inside emacs.
51 ;; It is pretty easy to make new derived modes for other processes.
53 ;; For documentation on the functionality provided by comint mode, and
54 ;; the hooks available for customising it, see the comments below.
55 ;; For further information on the standard derived modes (shell,
56 ;; inferior-lisp, inferior-scheme, ...), see the relevant source files.
58 ;; For hints on converting existing process modes (e.g., tex-mode,
59 ;; background, dbx, gdb, kermit, prolog, telnet) to use comint-mode
60 ;; instead of shell-mode, see the notes at the end of this file.
63 ;; Brief Command Documentation:
64 ;;============================================================================
65 ;; Comint Mode Commands: (common to all derived modes, like shell & cmulisp
66 ;; mode)
68 ;; m-p comint-previous-input Cycle backwards in input history
69 ;; m-n comint-next-input Cycle forwards
70 ;; m-r comint-previous-matching-input Previous input matching a regexp
71 ;; m-s comint-next-matching-input Next input that matches
72 ;; m-c-l comint-show-output Show last batch of process output
73 ;; return comint-send-input
74 ;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff
75 ;; c-c c-a comint-bol-or-process-mark First time, move point to bol;
76 ;; second time, move to process-mark.
77 ;; c-c c-u comint-kill-input ^u
78 ;; c-c c-w backward-kill-word ^w
79 ;; c-c c-c comint-interrupt-subjob ^c
80 ;; c-c c-z comint-stop-subjob ^z
81 ;; c-c c-\ comint-quit-subjob ^\
82 ;; c-c c-o comint-kill-output Delete last batch of process output
83 ;; c-c c-r comint-show-output Show last batch of process output
84 ;; c-c c-l comint-dynamic-list-input-ring List input history
86 ;; Not bound by default in comint-mode (some are in shell mode)
87 ;; comint-run Run a program under comint-mode
88 ;; send-invisible Read a line w/o echo, and send to proc
89 ;; comint-dynamic-complete-filename Complete filename at point.
90 ;; comint-dynamic-complete-variable Complete variable name at point.
91 ;; comint-dynamic-list-filename-completions List completions in help buffer.
92 ;; comint-replace-by-expanded-filename Expand and complete filename at point;
93 ;; replace with expanded/completed name.
94 ;; comint-replace-by-expanded-history Expand history at point;
95 ;; replace with expanded name.
96 ;; comint-magic-space Expand history and add (a) space(s).
97 ;; comint-kill-subjob No mercy.
98 ;; comint-show-maximum-output Show as much output as possible.
99 ;; comint-continue-subjob Send CONT signal to buffer's process
100 ;; group. Useful if you accidentally
101 ;; suspend your process (with C-c C-z).
102 ;; comint-get-next-from-history Fetch successive input history lines
103 ;; comint-accumulate Combine lines to send them together
104 ;; as input.
105 ;; comint-goto-process-mark Move point to where process-mark is.
106 ;; comint-set-process-mark Set process-mark to point.
108 ;; comint-mode-hook is the comint mode hook. Basically for your keybindings.
110 ;;; Code:
112 (require 'ring)
114 ;; Buffer Local Variables:
115 ;;============================================================================
116 ;; Comint mode buffer local variables:
117 ;; comint-prompt-regexp string comint-bol uses to match prompt
118 ;; comint-delimiter-argument-list list For delimiters and arguments
119 ;; comint-last-input-start marker Handy if inferior always echoes
120 ;; comint-last-input-end marker For comint-kill-output command
121 ;; comint-input-ring-size integer For the input history
122 ;; comint-input-ring ring mechanism
123 ;; comint-input-ring-index number ...
124 ;; comint-save-input-ring-index number ...
125 ;; comint-input-autoexpand symbol ...
126 ;; comint-input-ignoredups boolean ...
127 ;; comint-last-input-match string ...
128 ;; comint-dynamic-complete-functions hook For the completion mechanism
129 ;; comint-completion-fignore list ...
130 ;; comint-file-name-chars string ...
131 ;; comint-file-name-quote-list list ...
132 ;; comint-get-old-input function Hooks for specific
133 ;; comint-input-filter-functions hook process-in-a-buffer
134 ;; comint-output-filter-functions hook function modes.
135 ;; comint-preoutput-filter-functions hook
136 ;; comint-input-filter function ...
137 ;; comint-input-sender function ...
138 ;; comint-eol-on-send boolean ...
139 ;; comint-process-echoes boolean ...
140 ;; comint-scroll-to-bottom-on-input symbol For scroll behavior
141 ;; comint-scroll-to-bottom-on-output symbol ...
142 ;; comint-scroll-show-maximum-output boolean ...
143 ;; comint-accum-marker maker For comint-accumulate
145 ;; Comint mode non-buffer local variables:
146 ;; comint-completion-addsuffix boolean/cons For file name
147 ;; comint-completion-autolist boolean completion behavior
148 ;; comint-completion-recexact boolean ...
150 (defgroup comint nil
151 "General command interpreter in a window stuff."
152 :group 'processes)
154 (defgroup comint-completion nil
155 "Completion facilities in comint"
156 :group 'comint)
158 (defgroup comint-source nil
159 "Source finding facilities in comint"
160 :prefix "comint-"
161 :group 'comint)
164 (defvar comint-prompt-regexp "^"
165 "Regexp to recognise prompts in the inferior process.
166 Defaults to \"^\", the null string at BOL.
168 Good choices:
169 Canonical Lisp: \"^[^> \\n]*>+:? *\" (Lucid, franz, kcl, T, cscheme, oaklisp)
170 Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\"
171 franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\"
172 kcl: \"^>+ *\"
173 shell: \"^[^#$%>\\n]*[#$%>] *\"
174 T: \"^>+ *\"
176 This is a good thing to set in mode hooks.")
178 (defvar comint-delimiter-argument-list ()
179 "List of characters to recognise as separate arguments in input.
180 Strings comprising a character in this list will separate the arguments
181 surrounding them, and also be regarded as arguments in their own right (unlike
182 whitespace). See `comint-arguments'.
183 Defaults to the empty list.
185 For shells, a good value is (?\\| ?& ?< ?> ?\\( ?\\) ?;).
187 This is a good thing to set in mode hooks.")
189 (defcustom comint-input-autoexpand nil
190 "*If non-nil, expand input command history references on completion.
191 This mirrors the optional behavior of tcsh (its autoexpand and histlit).
193 If the value is `input', then the expansion is seen on input.
194 If the value is `history', then the expansion is only when inserting
195 into the buffer's input ring. See also `comint-magic-space' and
196 `comint-dynamic-complete'.
198 This variable is buffer-local."
199 :type '(choice (const :tag "off" nil)
200 (const input)
201 (const history)
202 (other :tag "on" t))
203 :group 'comint)
205 (defcustom comint-input-ignoredups nil
206 "*If non-nil, don't add input matching the last on the input ring.
207 This mirrors the optional behavior of bash.
209 This variable is buffer-local."
210 :type 'boolean
211 :group 'comint)
213 (defcustom comint-input-ring-file-name nil
214 "*If non-nil, name of the file to read/write input history.
215 See also `comint-read-input-ring' and `comint-write-input-ring'.
217 This variable is buffer-local, and is a good thing to set in mode hooks."
218 :type 'boolean
219 :group 'comint)
221 (defcustom comint-scroll-to-bottom-on-input nil
222 "*Controls whether input to interpreter causes window to scroll.
223 If nil, then do not scroll. If t or `all', scroll all windows showing buffer.
224 If `this', scroll only the selected window.
226 The default is nil.
228 See `comint-preinput-scroll-to-bottom'. This variable is buffer-local."
229 :type '(choice (const :tag "off" nil)
230 (const t)
231 (const all)
232 (const this))
233 :group 'comint)
235 (defcustom comint-scroll-to-bottom-on-output nil
236 "*Controls whether interpreter output causes window to scroll.
237 If nil, then do not scroll. If t or `all', scroll all windows showing buffer.
238 If `this', scroll only the selected window.
239 If `others', scroll only those that are not the selected window.
241 The default is nil.
243 See variable `comint-scroll-show-maximum-output' and function
244 `comint-postoutput-scroll-to-bottom'. This variable is buffer-local."
245 :type '(choice (const :tag "off" nil)
246 (const t)
247 (const all)
248 (const this)
249 (const others))
250 :group 'comint)
252 (defcustom comint-scroll-show-maximum-output nil
253 "*Controls how interpreter output causes window to scroll.
254 If non-nil, then show the maximum output when the window is scrolled.
256 See variable `comint-scroll-to-bottom-on-output' and function
257 `comint-postoutput-scroll-to-bottom'. This variable is buffer-local."
258 :type 'boolean
259 :group 'comint)
261 (defcustom comint-buffer-maximum-size 1024
262 "*The maximum size in lines for comint buffers.
263 Comint buffers are truncated from the top to be no greater than this number, if
264 the function `comint-truncate-buffer' is on `comint-output-filter-functions'."
265 :type 'integer
266 :group 'comint)
268 (defvar comint-input-ring-size 32
269 "Size of input history ring.")
271 (defvar comint-input-ring-separator "\n"
272 "Separator between commands in the history file.")
274 (defcustom comint-process-echoes nil
275 "*If non-nil, assume that the subprocess echoes any input.
276 If so, delete one copy of the input so that only one copy eventually
277 appears in the buffer.
279 This variable is buffer-local."
280 :type 'boolean
281 :group 'comint)
283 ;; AIX puts the name of the person being su'd to in front of the prompt.
284 ;; kinit prints a prompt like `Password for devnull@GNU.ORG: '.
285 ;; ksu prints a prompt like `Kerberos password for devnull/root@GNU.ORG: '.
286 ;; ssh-add prints a prompt like `Enter passphrase: '.
287 ;; Some implementations of passwd use "Password (again)" as the 2nd prompt.
288 (defcustom comint-password-prompt-regexp
289 "\\(\\([Oo]ld \\|[Nn]ew \\|Kerberos \\|'s \\|login \\|^\\)\
290 [Pp]assword\\( (again)\\)?\\|pass phrase\\|Enter passphrase\\)\
291 \\( for [^@ \t\n]+@[^@ \t\n]+\\)?:\\s *\\'"
292 "*Regexp matching prompts for passwords in the inferior process.
293 This is used by `comint-watch-for-password-prompt'."
294 :type 'regexp
295 :group 'comint)
297 ;; Here are the per-interpreter hooks.
298 (defvar comint-get-old-input (function comint-get-old-input-default)
299 "Function that returns old text in comint mode.
300 This function is called when return is typed while the point is in old text.
301 It returns the text to be submitted as process input. The default is
302 `comint-get-old-input-default', which grabs the current line, and strips off
303 leading text matching `comint-prompt-regexp'.")
305 (defvar comint-dynamic-complete-functions
306 '(comint-replace-by-expanded-history comint-dynamic-complete-filename)
307 "List of functions called to perform completion.
308 Functions should return non-nil if completion was performed.
309 See also `comint-dynamic-complete'.
311 This is a good thing to set in mode hooks.")
313 (defvar comint-input-filter
314 (function (lambda (str) (not (string-match "\\`\\s *\\'" str))))
315 "Predicate for filtering additions to input history.
316 Takes one argument, the input. If non-nil, the input may be saved on the input
317 history list. Default is to save anything that isn't all whitespace.")
319 (defvar comint-input-filter-functions '()
320 "Functions to call before input is sent to the process.
321 These functions get one argument, a string containing the text to send.
323 This variable is buffer-local.")
325 (defvar comint-output-filter-functions '(comint-postoutput-scroll-to-bottom)
326 "Functions to call after output is inserted into the buffer.
327 One possible function is `comint-postoutput-scroll-to-bottom'.
328 These functions get one argument, a string containing the text as originally
329 inserted. Note that this might not be the same as the buffer contents between
330 `comint-last-output-start' and the buffer's `process-mark', if other filter
331 functions have already modified the buffer.
333 See also `comint-preoutput-filter-functions'.
335 This variable is buffer-local.")
337 (defvar comint-input-sender (function comint-simple-send)
338 "Function to actually send to PROCESS the STRING submitted by user.
339 Usually this is just `comint-simple-send', but if your mode needs to
340 massage the input string, put a different function here.
341 `comint-simple-send' just sends the string plus a newline.
342 This is called from the user command `comint-send-input'.")
344 (defcustom comint-eol-on-send t
345 "*Non-nil means go to the end of the line before sending input.
346 See `comint-send-input'."
347 :type 'boolean
348 :group 'comint)
350 (defcustom comint-mode-hook '()
351 "Called upon entry into comint-mode
352 This is run before the process is cranked up."
353 :type 'hook
354 :group 'comint)
356 (defcustom comint-exec-hook '()
357 "Called each time a process is exec'd by `comint-exec'.
358 This is called after the process is cranked up. It is useful for things that
359 must be done each time a process is executed in a comint mode buffer (e.g.,
360 `(process-kill-without-query)'). In contrast, the `comint-mode-hook' is only
361 executed once when the buffer is created."
362 :type 'hook
363 :group 'comint)
365 (defvar comint-mode-map nil)
367 (defvar comint-ptyp t
368 "Non-nil if communications via pty; false if by pipe. Buffer local.
369 This is to work around a bug in Emacs process signaling.")
371 (defvar comint-input-ring nil)
372 (defvar comint-last-input-start)
373 (defvar comint-last-input-end)
374 (defvar comint-last-output-start)
375 (defvar comint-input-ring-index nil
376 "Index of last matched history element.")
377 (defvar comint-matching-input-from-input-string ""
378 "Input previously used to match input history.")
379 (defvar comint-save-input-ring-index
380 "Last input ring index which you copied.
381 This is to support the command \\[comint-get-next-from-history].")
383 (defvar comint-accum-marker nil
384 "Non-nil if you are accumulating input lines to send as input together.
385 The command \\[comint-accumulate] sets this.")
387 (put 'comint-replace-by-expanded-history 'menu-enable 'comint-input-autoexpand)
388 (put 'comint-input-ring 'permanent-local t)
389 (put 'comint-input-ring-index 'permanent-local t)
390 (put 'comint-save-input-ring-index 'permanent-local t)
391 (put 'comint-input-autoexpand 'permanent-local t)
392 (put 'comint-input-filter-functions 'permanent-local t)
393 (put 'comint-output-filter-functions 'permanent-local t)
394 (put 'comint-preoutput-filter-functions 'permanent-local t)
395 (put 'comint-scroll-to-bottom-on-input 'permanent-local t)
396 (put 'comint-scroll-to-bottom-on-output 'permanent-local t)
397 (put 'comint-scroll-show-maximum-output 'permanent-local t)
398 (put 'comint-ptyp 'permanent-local t)
400 (put 'comint-mode 'mode-class 'special)
402 (defun comint-mode ()
403 "Major mode for interacting with an inferior interpreter.
404 Interpreter name is same as buffer name, sans the asterisks.
405 Return at end of buffer sends line as input.
406 Return not at end copies rest of line to end and sends it.
407 Setting variable `comint-eol-on-send' means jump to the end of the line
408 before submitting new input.
410 This mode is customised to create major modes such as Inferior Lisp
411 mode, Shell mode, etc. This can be done by setting the hooks
412 `comint-input-filter-functions', `comint-input-filter', `comint-input-sender'
413 and `comint-get-old-input' to appropriate functions, and the variable
414 `comint-prompt-regexp' to the appropriate regular expression.
416 An input history is maintained of size `comint-input-ring-size', and
417 can be accessed with the commands \\[comint-next-input], \\[comint-previous-input], and \\[comint-dynamic-list-input-ring].
418 Input ring history expansion can be achieved with the commands
419 \\[comint-replace-by-expanded-history] or \\[comint-magic-space].
420 Input ring expansion is controlled by the variable `comint-input-autoexpand',
421 and addition is controlled by the variable `comint-input-ignoredups'.
423 Commands with no default key bindings include `send-invisible',
424 `comint-dynamic-complete', `comint-dynamic-list-filename-completions', and
425 `comint-magic-space'.
427 Input to, and output from, the subprocess can cause the window to scroll to
428 the end of the buffer. See variables `comint-output-filter-functions',
429 `comint-preoutput-filter-functions', `comint-scroll-to-bottom-on-input',
430 and `comint-scroll-to-bottom-on-output'.
432 If you accidentally suspend your process, use \\[comint-continue-subjob]
433 to continue it.
435 \\{comint-mode-map}
437 Entry to this mode runs the hooks on `comint-mode-hook'."
438 (interactive)
439 ;; Do not remove this. All major modes must do this.
440 (kill-all-local-variables)
441 (setq major-mode 'comint-mode)
442 (setq mode-name "Comint")
443 (setq mode-line-process '(":%s"))
444 (use-local-map comint-mode-map)
445 (make-local-variable 'comint-last-input-start)
446 (setq comint-last-input-start (make-marker))
447 (set-marker comint-last-input-start (point-min))
448 (make-local-variable 'comint-last-input-end)
449 (setq comint-last-input-end (make-marker))
450 (set-marker comint-last-input-end (point-min))
451 (make-local-variable 'comint-last-output-start)
452 (setq comint-last-output-start (make-marker))
453 (make-local-variable 'comint-prompt-regexp) ; Don't set; default
454 (make-local-variable 'comint-input-ring-size) ; ...to global val.
455 (make-local-variable 'comint-input-ring)
456 (make-local-variable 'comint-input-ring-file-name)
457 (or (and (boundp 'comint-input-ring) comint-input-ring)
458 (setq comint-input-ring (make-ring comint-input-ring-size)))
459 (make-local-variable 'comint-input-ring-index)
460 (make-local-variable 'comint-save-input-ring-index)
461 (or (and (boundp 'comint-input-ring-index) comint-input-ring-index)
462 (setq comint-input-ring-index nil))
463 (or (and (boundp 'comint-save-input-ring-index) comint-save-input-ring-index)
464 (setq comint-save-input-ring-index nil))
465 (make-local-variable 'comint-matching-input-from-input-string)
466 (make-local-variable 'comint-input-autoexpand)
467 (make-local-variable 'comint-input-ignoredups)
468 (make-local-variable 'comint-delimiter-argument-list)
469 (make-local-hook 'comint-dynamic-complete-functions)
470 (make-local-variable 'comint-completion-fignore)
471 (make-local-variable 'comint-get-old-input)
472 (make-local-hook 'comint-input-filter-functions)
473 (make-local-variable 'comint-input-filter)
474 (make-local-variable 'comint-input-sender)
475 (make-local-variable 'comint-eol-on-send)
476 (make-local-variable 'comint-scroll-to-bottom-on-input)
477 (make-local-variable 'comint-scroll-to-bottom-on-output)
478 (make-local-variable 'comint-scroll-show-maximum-output)
479 (make-local-hook 'pre-command-hook)
480 (add-hook 'pre-command-hook 'comint-preinput-scroll-to-bottom t t)
481 (make-local-hook 'comint-output-filter-functions)
482 (make-local-hook 'comint-exec-hook)
483 (make-local-variable 'comint-ptyp)
484 (make-local-variable 'comint-process-echoes)
485 (make-local-variable 'comint-file-name-chars)
486 (make-local-variable 'comint-file-name-quote-list)
487 (make-local-variable 'comint-accum-marker)
488 (setq comint-accum-marker (make-marker))
489 (set-marker comint-accum-marker nil)
490 (run-hooks 'comint-mode-hook))
492 (if comint-mode-map
494 ;; Keys:
495 (setq comint-mode-map (make-sparse-keymap))
496 (define-key comint-mode-map "\ep" 'comint-previous-input)
497 (define-key comint-mode-map "\en" 'comint-next-input)
498 (define-key comint-mode-map [C-up] 'comint-previous-input)
499 (define-key comint-mode-map [C-down] 'comint-next-input)
500 (define-key comint-mode-map "\er" 'comint-previous-matching-input)
501 (define-key comint-mode-map "\es" 'comint-next-matching-input)
502 (define-key comint-mode-map [?\C-c ?\M-r] 'comint-previous-matching-input-from-input)
503 (define-key comint-mode-map [?\C-c ?\M-s] 'comint-next-matching-input-from-input)
504 (define-key comint-mode-map "\e\C-l" 'comint-show-output)
505 (define-key comint-mode-map "\C-m" 'comint-send-input)
506 (define-key comint-mode-map "\C-d" 'comint-delchar-or-maybe-eof)
507 (define-key comint-mode-map "\C-c " 'comint-accumulate)
508 (define-key comint-mode-map "\C-c\C-x" 'comint-get-next-from-history)
509 (define-key comint-mode-map "\C-c\C-a" 'comint-bol-or-process-mark)
510 (define-key comint-mode-map "\C-c\C-u" 'comint-kill-input)
511 (define-key comint-mode-map "\C-c\C-w" 'backward-kill-word)
512 (define-key comint-mode-map "\C-c\C-c" 'comint-interrupt-subjob)
513 (define-key comint-mode-map "\C-c\C-z" 'comint-stop-subjob)
514 (define-key comint-mode-map "\C-c\C-\\" 'comint-quit-subjob)
515 (define-key comint-mode-map "\C-c\C-m" 'comint-copy-old-input)
516 (define-key comint-mode-map "\C-c\C-o" 'comint-kill-output)
517 (define-key comint-mode-map "\C-c\C-r" 'comint-show-output)
518 (define-key comint-mode-map "\C-c\C-e" 'comint-show-maximum-output)
519 (define-key comint-mode-map "\C-c\C-l" 'comint-dynamic-list-input-ring)
520 (define-key comint-mode-map "\C-c\C-n" 'comint-next-prompt)
521 (define-key comint-mode-map "\C-c\C-p" 'comint-previous-prompt)
522 (define-key comint-mode-map "\C-c\C-d" 'comint-send-eof)
523 ;; Menu bars:
524 ;; completion:
525 (define-key comint-mode-map [menu-bar completion]
526 (cons "Complete" (make-sparse-keymap "Complete")))
527 (define-key comint-mode-map [menu-bar completion complete-expand]
528 '("Expand File Name" . comint-replace-by-expanded-filename))
529 (define-key comint-mode-map [menu-bar completion complete-listing]
530 '("File Completion Listing" . comint-dynamic-list-filename-completions))
531 (define-key comint-mode-map [menu-bar completion complete-file]
532 '("Complete File Name" . comint-dynamic-complete-filename))
533 (define-key comint-mode-map [menu-bar completion complete]
534 '("Complete Before Point" . comint-dynamic-complete))
535 ;; Input history:
536 (define-key comint-mode-map [menu-bar inout]
537 (cons "In/Out" (make-sparse-keymap "In/Out")))
538 (define-key comint-mode-map [menu-bar inout kill-output]
539 '("Kill Current Output Group" . comint-kill-output))
540 (define-key comint-mode-map [menu-bar inout next-prompt]
541 '("Forward Output Group" . comint-next-prompt))
542 (define-key comint-mode-map [menu-bar inout previous-prompt]
543 '("Backward Output Group" . comint-previous-prompt))
544 (define-key comint-mode-map [menu-bar inout show-maximum-output]
545 '("Show Maximum Output" . comint-show-maximum-output))
546 (define-key comint-mode-map [menu-bar inout show-output]
547 '("Show Current Output Group" . comint-show-output))
548 (define-key comint-mode-map [menu-bar inout kill-input]
549 '("Kill Current Input" . comint-kill-input))
550 (define-key comint-mode-map [menu-bar inout copy-input]
551 '("Copy Old Input" . comint-copy-old-input))
552 (define-key comint-mode-map [menu-bar inout forward-matching-history]
553 '("Forward Matching Input..." . comint-forward-matching-input))
554 (define-key comint-mode-map [menu-bar inout backward-matching-history]
555 '("Backward Matching Input..." . comint-backward-matching-input))
556 (define-key comint-mode-map [menu-bar inout next-matching-history]
557 '("Next Matching Input..." . comint-next-matching-input))
558 (define-key comint-mode-map [menu-bar inout previous-matching-history]
559 '("Previous Matching Input..." . comint-previous-matching-input))
560 (define-key comint-mode-map [menu-bar inout next-matching-history-from-input]
561 '("Next Matching Current Input" . comint-next-matching-input-from-input))
562 (define-key comint-mode-map [menu-bar inout previous-matching-history-from-input]
563 '("Previous Matching Current Input" . comint-previous-matching-input-from-input))
564 (define-key comint-mode-map [menu-bar inout next-history]
565 '("Next Input" . comint-next-input))
566 (define-key comint-mode-map [menu-bar inout previous-history]
567 '("Previous Input" . comint-previous-input))
568 (define-key comint-mode-map [menu-bar inout list-history]
569 '("List Input History" . comint-dynamic-list-input-ring))
570 (define-key comint-mode-map [menu-bar inout expand-history]
571 '("Expand History Before Point" . comint-replace-by-expanded-history))
572 ;; Signals
573 (define-key comint-mode-map [menu-bar signals]
574 (cons "Signals" (make-sparse-keymap "Signals")))
575 (define-key comint-mode-map [menu-bar signals eof]
576 '("EOF" . comint-send-eof))
577 (define-key comint-mode-map [menu-bar signals kill]
578 '("KILL" . comint-kill-subjob))
579 (define-key comint-mode-map [menu-bar signals quit]
580 '("QUIT" . comint-quit-subjob))
581 (define-key comint-mode-map [menu-bar signals cont]
582 '("CONT" . comint-continue-subjob))
583 (define-key comint-mode-map [menu-bar signals stop]
584 '("STOP" . comint-stop-subjob))
585 (define-key comint-mode-map [menu-bar signals break]
586 '("BREAK" . comint-interrupt-subjob))
587 ;; Put them in the menu bar:
588 (setq menu-bar-final-items (append '(completion inout signals)
589 menu-bar-final-items))
592 (defun comint-check-proc (buffer)
593 "Return t if there is a living process associated w/buffer BUFFER.
594 Living means the status is `open', `run', or `stop'.
595 BUFFER can be either a buffer or the name of one."
596 (let ((proc (get-buffer-process buffer)))
597 (and proc (memq (process-status proc) '(open run stop)))))
599 ;;;###autoload
600 (defun make-comint (name program &optional startfile &rest switches)
601 "Make a comint process NAME in a buffer, running PROGRAM.
602 The name of the buffer is made by surrounding NAME with `*'s.
603 PROGRAM should be either a string denoting an executable program to create
604 via `start-process', or a cons pair of the form (HOST . SERVICE) denoting a TCP
605 connection to be opened via `open-network-stream'. If there is already a
606 running process in that buffer, it is not restarted. Optional third arg
607 STARTFILE is the name of a file to send the contents of to the process.
609 If PROGRAM is a string, any more args are arguments to PROGRAM."
610 (or (fboundp 'start-process)
611 (error "Multi-processing is not supported for this system"))
612 (let ((buffer (get-buffer-create (concat "*" name "*"))))
613 ;; If no process, or nuked process, crank up a new one and put buffer in
614 ;; comint mode. Otherwise, leave buffer and existing process alone.
615 (cond ((not (comint-check-proc buffer))
616 (save-excursion
617 (set-buffer buffer)
618 (comint-mode)) ; Install local vars, mode, keymap, ...
619 (comint-exec buffer name program startfile switches)))
620 buffer))
622 ;;;###autoload
623 (defun comint-run (program)
624 "Run PROGRAM in a comint buffer and switch to it.
625 The buffer name is made by surrounding the file name of PROGRAM with `*'s.
626 The file name is used to make a symbol name, such as `comint-sh-hook', and any
627 hooks on this symbol are run in the buffer.
628 See `make-comint' and `comint-exec'."
629 (interactive "sRun program: ")
630 (let ((name (file-name-nondirectory program)))
631 (switch-to-buffer (make-comint name program))
632 (run-hooks (intern-soft (concat "comint-" name "-hook")))))
634 (defun comint-exec (buffer name command startfile switches)
635 "Start up a process in buffer BUFFER for comint modes.
636 Blasts any old process running in the buffer. Doesn't set the buffer mode.
637 You can use this to cheaply run a series of processes in the same comint
638 buffer. The hook `comint-exec-hook' is run after each exec."
639 (save-excursion
640 (set-buffer buffer)
641 (let ((proc (get-buffer-process buffer))) ; Blast any old process.
642 (if proc (delete-process proc)))
643 ;; Crank up a new process
644 (let ((proc
645 (if (consp command)
646 (open-network-stream name buffer (car command) (cdr command))
647 (comint-exec-1 name buffer command switches))))
648 (set-process-filter proc 'comint-output-filter)
649 (make-local-variable 'comint-ptyp)
650 (setq comint-ptyp process-connection-type) ; T if pty, NIL if pipe.
651 ;; Jump to the end, and set the process mark.
652 (goto-char (point-max))
653 (set-marker (process-mark proc) (point))
654 ;; Feed it the startfile.
655 (cond (startfile
656 ;;This is guaranteed to wait long enough
657 ;;but has bad results if the comint does not prompt at all
658 ;; (while (= size (buffer-size))
659 ;; (sleep-for 1))
660 ;;I hope 1 second is enough!
661 (sleep-for 1)
662 (goto-char (point-max))
663 (insert-file-contents startfile)
664 (setq startfile (buffer-substring (point) (point-max)))
665 (delete-region (point) (point-max))
666 (comint-send-string proc startfile)))
667 (run-hooks 'comint-exec-hook)
668 buffer)))
670 ;; This auxiliary function cranks up the process for comint-exec in
671 ;; the appropriate environment.
673 (defun comint-exec-1 (name buffer command switches)
674 (let ((process-environment
675 (nconc
676 ;; If using termcap, we specify `emacs' as the terminal type
677 ;; because that lets us specify a width.
678 ;; If using terminfo, we specify `dumb' because that is
679 ;; a defined terminal type. `emacs' is not a defined terminal type
680 ;; and there is no way for us to define it here.
681 ;; Some programs that use terminfo get very confused
682 ;; if TERM is not a valid terminal type.
683 (if (and (boundp 'system-uses-terminfo) system-uses-terminfo)
684 (list "TERM=dumb" "TERMCAP="
685 (format "COLUMNS=%d" (frame-width)))
686 (list "TERM=emacs"
687 (format "TERMCAP=emacs:co#%d:tc=unknown:" (frame-width))))
688 (if (getenv "EMACS") nil (list "EMACS=t"))
689 process-environment))
690 (default-directory
691 (if (file-accessible-directory-p default-directory)
692 default-directory
693 (char-to-string directory-sep-char)))
694 proc decoding encoding changed)
695 (setq proc (apply 'start-process name buffer command switches))
696 (let ((coding-systems (process-coding-system proc)))
697 (setq decoding (car coding-systems)
698 encoding (cdr coding-systems)))
699 ;; If start-process decided to use some coding system for decoding
700 ;; data sent form the process and the coding system doesn't
701 ;; specify EOL conversion, we had better convert CRLF to LF.
702 (if (vectorp (coding-system-eol-type decoding))
703 (setq decoding (coding-system-change-eol-conversion decoding 'dos)
704 changed t))
705 ;; Even if start-process left the coding system for encoding data
706 ;; sent from the process undecided, we had better use the same one
707 ;; as what we use for decoding. But, we should suppress EOL
708 ;; conversion.
709 (if (and decoding (not encoding))
710 (setq encoding (coding-system-change-eol-conversion decoding 'unix)
711 changed t))
712 (if changed
713 (set-process-coding-system proc decoding encoding))
714 proc))
716 ;; Input history processing in a buffer
717 ;; ===========================================================================
718 ;; Useful input history functions, courtesy of the Ergo group.
720 ;; Eleven commands:
721 ;; comint-dynamic-list-input-ring List history in help buffer.
722 ;; comint-previous-input Previous input...
723 ;; comint-previous-matching-input ...matching a string.
724 ;; comint-previous-matching-input-from-input ... matching the current input.
725 ;; comint-next-input Next input...
726 ;; comint-next-matching-input ...matching a string.
727 ;; comint-next-matching-input-from-input ... matching the current input.
728 ;; comint-backward-matching-input Backwards input...
729 ;; comint-forward-matching-input ...matching a string.
730 ;; comint-replace-by-expanded-history Expand history at point;
731 ;; replace with expanded history.
732 ;; comint-magic-space Expand history and insert space.
734 ;; Three functions:
735 ;; comint-read-input-ring Read into comint-input-ring...
736 ;; comint-write-input-ring Write to comint-input-ring-file-name.
737 ;; comint-replace-by-expanded-history-before-point Workhorse function.
739 (defun comint-read-input-ring (&optional silent)
740 "Sets the buffer's `comint-input-ring' from a history file.
741 The name of the file is given by the variable `comint-input-ring-file-name'.
742 The history ring is of size `comint-input-ring-size', regardless of file size.
743 If `comint-input-ring-file-name' is nil this function does nothing.
745 If the optional argument SILENT is non-nil, we say nothing about a
746 failure to read the history file.
748 This function is useful for major mode commands and mode hooks.
750 The commands stored in the history file are separated by the
751 `comint-input-ring-separator'. The most recent command comes last.
753 See also `comint-input-ignoredups' and `comint-write-input-ring'."
754 (cond ((or (null comint-input-ring-file-name)
755 (equal comint-input-ring-file-name ""))
756 nil)
757 ((not (file-readable-p comint-input-ring-file-name))
758 (or silent
759 (message "Cannot read history file %s"
760 comint-input-ring-file-name)))
762 (let ((history-buf (get-buffer-create " *temp*"))
763 (file comint-input-ring-file-name)
764 (count 0)
765 (ring (make-ring comint-input-ring-size)))
766 (unwind-protect
767 (save-excursion
768 (set-buffer history-buf)
769 (widen)
770 (erase-buffer)
771 (insert-file-contents file)
772 ;; Save restriction in case file is already visited...
773 ;; Watch for those date stamps in history files!
774 (goto-char (point-max))
775 (while (and (< count comint-input-ring-size)
776 (re-search-backward "^[ \t]*\\([^#\n].*\\)[ \t]*$"
777 nil t))
778 (let (start end history)
779 (while (and (< count comint-input-ring-size)
780 (re-search-backward comint-input-ring-separator nil t)
781 (setq end (match-beginning 0))
782 (re-search-backward comint-input-ring-separator nil t)
783 (setq start (match-end 0))
784 (setq history (buffer-substring start end))
785 (goto-char start))
786 (if (or (null comint-input-ignoredups)
787 (ring-empty-p ring)
788 (not (string-equal (ring-ref ring 0) history)))
789 (ring-insert-at-beginning ring history)))
790 (setq count (1+ count)))))
791 (kill-buffer history-buf))
792 (setq comint-input-ring ring
793 comint-input-ring-index nil)))))
795 (defun comint-write-input-ring ()
796 "Writes the buffer's `comint-input-ring' to a history file.
797 The name of the file is given by the variable `comint-input-ring-file-name'.
798 The original contents of the file are lost if `comint-input-ring' is not empty.
799 If `comint-input-ring-file-name' is nil this function does nothing.
801 Useful within process sentinels.
803 See also `comint-read-input-ring'."
804 (cond ((or (null comint-input-ring-file-name)
805 (equal comint-input-ring-file-name "")
806 (null comint-input-ring) (ring-empty-p comint-input-ring))
807 nil)
808 ((not (file-writable-p comint-input-ring-file-name))
809 (message "Cannot write history file %s" comint-input-ring-file-name))
811 (let* ((history-buf (get-buffer-create " *Temp Input History*"))
812 (ring comint-input-ring)
813 (file comint-input-ring-file-name)
814 (index (ring-length ring)))
815 ;; Write it all out into a buffer first. Much faster, but messier,
816 ;; than writing it one line at a time.
817 (save-excursion
818 (set-buffer history-buf)
819 (erase-buffer)
820 (while (> index 0)
821 (setq index (1- index))
822 (insert (ring-ref ring index) comint-input-ring-separator))
823 (write-region (buffer-string) nil file nil 'no-message)
824 (kill-buffer nil))))))
827 (defun comint-dynamic-list-input-ring ()
828 "List in help buffer the buffer's input history."
829 (interactive)
830 (if (or (not (ring-p comint-input-ring))
831 (ring-empty-p comint-input-ring))
832 (message "No history")
833 (let ((history nil)
834 (history-buffer " *Input History*")
835 (index (1- (ring-length comint-input-ring)))
836 (conf (current-window-configuration)))
837 ;; We have to build up a list ourselves from the ring vector.
838 (while (>= index 0)
839 (setq history (cons (ring-ref comint-input-ring index) history)
840 index (1- index)))
841 ;; Change "completion" to "history reference"
842 ;; to make the display accurate.
843 (with-output-to-temp-buffer history-buffer
844 (display-completion-list history)
845 (set-buffer history-buffer)
846 (forward-line 3)
847 (while (search-backward "completion" nil 'move)
848 (replace-match "history reference")))
849 (sit-for 0)
850 (message "Hit space to flush")
851 (let ((ch (read-event)))
852 (if (eq ch ?\ )
853 (set-window-configuration conf)
854 (setq unread-command-events (list ch)))))))
857 (defun comint-regexp-arg (prompt)
858 ;; Return list of regexp and prefix arg using PROMPT.
859 (let* (;; Don't clobber this.
860 (last-command last-command)
861 (regexp (read-from-minibuffer prompt nil nil nil
862 'minibuffer-history-search-history)))
863 (list (if (string-equal regexp "")
864 (setcar minibuffer-history-search-history
865 (nth 1 minibuffer-history-search-history))
866 regexp)
867 (prefix-numeric-value current-prefix-arg))))
869 (defun comint-search-arg (arg)
870 ;; First make sure there is a ring and that we are after the process mark
871 (cond ((not (comint-after-pmark-p))
872 (error "Not at command line"))
873 ((or (null comint-input-ring)
874 (ring-empty-p comint-input-ring))
875 (error "Empty input ring"))
876 ((zerop arg)
877 ;; arg of zero resets search from beginning, and uses arg of 1
878 (setq comint-input-ring-index nil)
881 arg)))
883 (defun comint-search-start (arg)
884 ;; Index to start a directional search, starting at comint-input-ring-index
885 (if comint-input-ring-index
886 ;; If a search is running, offset by 1 in direction of arg
887 (mod (+ comint-input-ring-index (if (> arg 0) 1 -1))
888 (ring-length comint-input-ring))
889 ;; For a new search, start from beginning or end, as appropriate
890 (if (>= arg 0)
891 0 ; First elt for forward search
892 (1- (ring-length comint-input-ring))))) ; Last elt for backward search
894 (defun comint-previous-input-string (arg)
895 "Return the string ARG places along the input ring.
896 Moves relative to `comint-input-ring-index'."
897 (ring-ref comint-input-ring (if comint-input-ring-index
898 (mod (+ arg comint-input-ring-index)
899 (ring-length comint-input-ring))
900 arg)))
902 (defun comint-previous-input (arg)
903 "Cycle backwards through input history."
904 (interactive "*p")
905 (comint-previous-matching-input "." arg))
907 (defun comint-next-input (arg)
908 "Cycle forwards through input history."
909 (interactive "*p")
910 (comint-previous-input (- arg)))
912 (defun comint-previous-matching-input-string (regexp arg)
913 "Return the string matching REGEXP ARG places along the input ring.
914 Moves relative to `comint-input-ring-index'."
915 (let* ((pos (comint-previous-matching-input-string-position regexp arg)))
916 (if pos (ring-ref comint-input-ring pos))))
918 (defun comint-previous-matching-input-string-position (regexp arg &optional start)
919 "Return the index matching REGEXP ARG places along the input ring.
920 Moves relative to START, or `comint-input-ring-index'."
921 (if (or (not (ring-p comint-input-ring))
922 (ring-empty-p comint-input-ring))
923 (error "No history"))
924 (let* ((len (ring-length comint-input-ring))
925 (motion (if (> arg 0) 1 -1))
926 (n (mod (- (or start (comint-search-start arg)) motion) len))
927 (tried-each-ring-item nil)
928 (prev nil))
929 ;; Do the whole search as many times as the argument says.
930 (while (and (/= arg 0) (not tried-each-ring-item))
931 ;; Step once.
932 (setq prev n
933 n (mod (+ n motion) len))
934 ;; If we haven't reached a match, step some more.
935 (while (and (< n len) (not tried-each-ring-item)
936 (not (string-match regexp (ring-ref comint-input-ring n))))
937 (setq n (mod (+ n motion) len)
938 ;; If we have gone all the way around in this search.
939 tried-each-ring-item (= n prev)))
940 (setq arg (if (> arg 0) (1- arg) (1+ arg))))
941 ;; Now that we know which ring element to use, if we found it, return that.
942 (if (string-match regexp (ring-ref comint-input-ring n))
943 n)))
945 (defun comint-previous-matching-input (regexp arg)
946 "Search backwards through input history for match for REGEXP.
947 \(Previous history elements are earlier commands.)
948 With prefix argument N, search for Nth previous match.
949 If N is negative, find the next or Nth next match."
950 (interactive (comint-regexp-arg "Previous input matching (regexp): "))
951 (setq arg (comint-search-arg arg))
952 (let ((pos (comint-previous-matching-input-string-position regexp arg)))
953 ;; Has a match been found?
954 (if (null pos)
955 (error "Not found")
956 (setq comint-input-ring-index pos)
957 (message "History item: %d" (1+ pos))
958 (delete-region
959 ;; Can't use kill-region as it sets this-command
960 (or (marker-position comint-accum-marker)
961 (process-mark (get-buffer-process (current-buffer))))
962 (point))
963 (insert (ring-ref comint-input-ring pos)))))
965 (defun comint-next-matching-input (regexp arg)
966 "Search forwards through input history for match for REGEXP.
967 \(Later history elements are more recent commands.)
968 With prefix argument N, search for Nth following match.
969 If N is negative, find the previous or Nth previous match."
970 (interactive (comint-regexp-arg "Next input matching (regexp): "))
971 (comint-previous-matching-input regexp (- arg)))
973 (defun comint-previous-matching-input-from-input (arg)
974 "Search backwards through input history for match for current input.
975 \(Previous history elements are earlier commands.)
976 With prefix argument N, search for Nth previous match.
977 If N is negative, search forwards for the -Nth following match."
978 (interactive "p")
979 (if (not (memq last-command '(comint-previous-matching-input-from-input
980 comint-next-matching-input-from-input)))
981 ;; Starting a new search
982 (setq comint-matching-input-from-input-string
983 (buffer-substring
984 (or (marker-position comint-accum-marker)
985 (process-mark (get-buffer-process (current-buffer))))
986 (point))
987 comint-input-ring-index nil))
988 (comint-previous-matching-input
989 (concat "^" (regexp-quote comint-matching-input-from-input-string))
990 arg))
992 (defun comint-next-matching-input-from-input (arg)
993 "Search forwards through input history for match for current input.
994 \(Following history elements are more recent commands.)
995 With prefix argument N, search for Nth following match.
996 If N is negative, search backwards for the -Nth previous match."
997 (interactive "p")
998 (comint-previous-matching-input-from-input (- arg)))
1001 (defun comint-replace-by-expanded-history (&optional silent start)
1002 "Expand input command history references before point.
1003 Expansion is dependent on the value of `comint-input-autoexpand'.
1005 This function depends on the buffer's idea of the input history, which may not
1006 match the command interpreter's idea, assuming it has one.
1008 Assumes history syntax is like typical Un*x shells'. However, since emacs
1009 cannot know the interpreter's idea of input line numbers, assuming it has one,
1010 it cannot expand absolute input line number references.
1012 If the optional argument SILENT is non-nil, never complain
1013 even if history reference seems erroneous.
1015 If the optional argument START is non-nil, that specifies the
1016 start of the text to scan for history references, rather
1017 than the logical beginning of line.
1019 See `comint-magic-space' and `comint-replace-by-expanded-history-before-point'.
1021 Returns t if successful."
1022 (interactive)
1023 (if (and comint-input-autoexpand
1024 (string-match "!\\|^\\^" (funcall comint-get-old-input))
1025 (save-excursion (beginning-of-line)
1026 (looking-at comint-prompt-regexp)))
1027 ;; Looks like there might be history references in the command.
1028 (let ((previous-modified-tick (buffer-modified-tick)))
1029 (comint-replace-by-expanded-history-before-point silent start)
1030 (/= previous-modified-tick (buffer-modified-tick)))))
1033 (defun comint-replace-by-expanded-history-before-point (silent &optional start)
1034 "Expand directory stack reference before point.
1035 See `comint-replace-by-expanded-history'. Returns t if successful.
1037 If the optional argument START is non-nil, that specifies the
1038 start of the text to scan for history references, rather
1039 than the logical beginning of line."
1040 (save-excursion
1041 (let ((toend (- (save-excursion (end-of-line nil) (point)) (point)))
1042 (start (or start (progn (comint-bol nil) (point)))))
1043 (while (progn
1044 (skip-chars-forward "^!^"
1045 (save-excursion
1046 (end-of-line nil) (- (point) toend)))
1047 (< (point)
1048 (save-excursion
1049 (end-of-line nil) (- (point) toend))))
1050 ;; This seems a bit complex. We look for references such as !!, !-num,
1051 ;; !foo, !?foo, !{bar}, !?{bar}, ^oh, ^my^, ^god^it, ^never^ends^.
1052 ;; If that wasn't enough, the plings can be suffixed with argument
1053 ;; range specifiers.
1054 ;; Argument ranges are complex too, so we hive off the input line,
1055 ;; referenced with plings, with the range string to `comint-args'.
1056 (setq comint-input-ring-index nil)
1057 (cond ((or (= (preceding-char) ?\\)
1058 (comint-within-quotes start (point)))
1059 ;; The history is quoted, or we're in quotes.
1060 (goto-char (1+ (point))))
1061 ((looking-at "![0-9]+\\($\\|[^-]\\)")
1062 ;; We cannot know the interpreter's idea of input line numbers.
1063 (goto-char (match-end 0))
1064 (message "Absolute reference cannot be expanded"))
1065 ((looking-at "!-\\([0-9]+\\)\\(:?[0-9^$*-]+\\)?")
1066 ;; Just a number of args from `number' lines backward.
1067 (let ((number (1- (string-to-number
1068 (buffer-substring (match-beginning 1)
1069 (match-end 1))))))
1070 (if (<= number (ring-length comint-input-ring))
1071 (progn
1072 (replace-match
1073 (comint-args (comint-previous-input-string number)
1074 (match-beginning 2) (match-end 2))
1075 t t)
1076 (setq comint-input-ring-index number)
1077 (message "History item: %d" (1+ number)))
1078 (goto-char (match-end 0))
1079 (message "Relative reference exceeds input history size"))))
1080 ((or (looking-at "!!?:?\\([0-9^$*-]+\\)") (looking-at "!!"))
1081 ;; Just a number of args from the previous input line.
1082 (replace-match
1083 (comint-args (comint-previous-input-string 0)
1084 (match-beginning 1) (match-end 1))
1085 t t)
1086 (message "History item: previous"))
1087 ((looking-at
1088 "!\\??\\({\\(.+\\)}\\|\\(\\sw+\\)\\)\\(:?[0-9^$*-]+\\)?")
1089 ;; Most recent input starting with or containing (possibly
1090 ;; protected) string, maybe just a number of args. Phew.
1091 (let* ((mb1 (match-beginning 1)) (me1 (match-end 1))
1092 (mb2 (match-beginning 2)) (me2 (match-end 2))
1093 (exp (buffer-substring (or mb2 mb1) (or me2 me1)))
1094 (pref (if (save-match-data (looking-at "!\\?")) "" "^"))
1095 (pos (save-match-data
1096 (comint-previous-matching-input-string-position
1097 (concat pref (regexp-quote exp)) 1))))
1098 (if (null pos)
1099 (progn
1100 (goto-char (match-end 0))
1101 (or silent
1102 (progn (message "Not found")
1103 (ding))))
1104 (setq comint-input-ring-index pos)
1105 (replace-match
1106 (comint-args (ring-ref comint-input-ring pos)
1107 (match-beginning 4) (match-end 4))
1108 t t)
1109 (message "History item: %d" (1+ pos)))))
1110 ((looking-at "\\^\\([^^]+\\)\\^?\\([^^]*\\)\\^?")
1111 ;; Quick substitution on the previous input line.
1112 (let ((old (buffer-substring (match-beginning 1) (match-end 1)))
1113 (new (buffer-substring (match-beginning 2) (match-end 2)))
1114 (pos nil))
1115 (replace-match (comint-previous-input-string 0) t t)
1116 (setq pos (point))
1117 (goto-char (match-beginning 0))
1118 (if (not (search-forward old pos t))
1119 (or silent
1120 (error "Not found"))
1121 (replace-match new t t)
1122 (message "History item: substituted"))))
1124 (forward-char 1)))))))
1127 (defun comint-magic-space (arg)
1128 "Expand input history references before point and insert ARG spaces.
1129 A useful command to bind to SPC. See `comint-replace-by-expanded-history'."
1130 (interactive "p")
1131 (comint-replace-by-expanded-history)
1132 (self-insert-command arg))
1134 (defun comint-within-quotes (beg end)
1135 "Return t if the number of quotes between BEG and END is odd.
1136 Quotes are single and double."
1137 (let ((countsq (comint-how-many-region "\\(^\\|[^\\\\]\\)\'" beg end))
1138 (countdq (comint-how-many-region "\\(^\\|[^\\\\]\\)\"" beg end)))
1139 (or (= (mod countsq 2) 1) (= (mod countdq 2) 1))))
1141 (defun comint-how-many-region (regexp beg end)
1142 "Return number of matches for REGEXP from BEG to END."
1143 (let ((count 0))
1144 (save-excursion
1145 (save-match-data
1146 (goto-char beg)
1147 (while (re-search-forward regexp end t)
1148 (setq count (1+ count)))))
1149 count))
1151 (defun comint-args (string begin end)
1152 ;; From STRING, return the args depending on the range specified in the text
1153 ;; from BEGIN to END. If BEGIN is nil, assume all args. Ignore leading `:'.
1154 ;; Range can be x-y, x-, -y, where x/y can be [0-9], *, ^, $.
1155 (save-match-data
1156 (if (null begin)
1157 (comint-arguments string 0 nil)
1158 (let* ((range (buffer-substring
1159 (if (eq (char-after begin) ?:) (1+ begin) begin) end))
1160 (nth (cond ((string-match "^[*^]" range) 1)
1161 ((string-match "^-" range) 0)
1162 ((string-equal range "$") nil)
1163 (t (string-to-number range))))
1164 (mth (cond ((string-match "[-*$]$" range) nil)
1165 ((string-match "-" range)
1166 (string-to-number (substring range (match-end 0))))
1167 (t nth))))
1168 (comint-arguments string nth mth)))))
1170 ;; Return a list of arguments from ARG. Break it up at the
1171 ;; delimiters in comint-delimiter-argument-list. Returned list is backwards.
1172 (defun comint-delim-arg (arg)
1173 (if (null comint-delimiter-argument-list)
1174 (list arg)
1175 (let ((args nil)
1176 (pos 0)
1177 (len (length arg)))
1178 (while (< pos len)
1179 (let ((char (aref arg pos))
1180 (start pos))
1181 (if (memq char comint-delimiter-argument-list)
1182 (while (and (< pos len) (eq (aref arg pos) char))
1183 (setq pos (1+ pos)))
1184 (while (and (< pos len)
1185 (not (memq (aref arg pos)
1186 comint-delimiter-argument-list)))
1187 (setq pos (1+ pos))))
1188 (setq args (cons (substring arg start pos) args))))
1189 args)))
1191 (defun comint-arguments (string nth mth)
1192 "Return from STRING the NTH to MTH arguments.
1193 NTH and/or MTH can be nil, which means the last argument.
1194 Returned arguments are separated by single spaces.
1195 We assume whitespace separates arguments, except within quotes
1196 and except for a space or tab that immediately follows a backslash.
1197 Also, a run of one or more of a single character
1198 in `comint-delimiter-argument-list' is a separate argument.
1199 Argument 0 is the command name."
1200 ;; The first line handles ordinary characters and backslash-sequences
1201 ;; (except with w32 msdos-like shells, where backslashes are valid).
1202 ;; The second matches "-quoted strings.
1203 ;; The third matches '-quoted strings.
1204 ;; The fourth matches `-quoted strings.
1205 ;; This seems to fit the syntax of BASH 2.0.
1206 (let* ((first (if (and (eq system-type 'windows-nt)
1207 (w32-shell-dos-semantics))
1208 "[^ \n\t\"'`]+\\|"
1209 "[^ \n\t\"'`\\]+\\|\\\\[\"'`\\ \t]+\\|"))
1210 (argpart (concat first
1211 "\\(\"\\([^\"\\]\\|\\\\.\\)*\"\\|\
1212 '[^']*'\\|\
1213 `[^`]*`\\)"))
1214 (args ()) (pos 0)
1215 (count 0)
1216 beg str value quotes)
1217 ;; Build a list of all the args until we have as many as we want.
1218 (while (and (or (null mth) (<= count mth))
1219 (string-match argpart string pos))
1220 (if (and beg (= pos (match-beginning 0)))
1221 ;; It's contiguous, part of the same arg.
1222 (setq pos (match-end 0)
1223 quotes (or quotes (match-beginning 1)))
1224 ;; It's a new separate arg.
1225 (if beg
1226 ;; Put the previous arg, if there was one, onto ARGS.
1227 (setq str (substring string beg pos)
1228 args (if quotes (cons str args)
1229 (nconc (comint-delim-arg str) args))
1230 count (1+ count)))
1231 (setq quotes (match-beginning 1))
1232 (setq beg (match-beginning 0))
1233 (setq pos (match-end 0))))
1234 (if beg
1235 (setq str (substring string beg pos)
1236 args (if quotes (cons str args)
1237 (nconc (comint-delim-arg str) args))
1238 count (1+ count)))
1239 (let ((n (or nth (1- count)))
1240 (m (if mth (1- (- count mth)) 0)))
1241 (mapconcat
1242 (function (lambda (a) a)) (nthcdr n (nreverse (nthcdr m args))) " "))))
1245 ;; Input processing stuff
1248 (defun comint-send-input ()
1249 "Send input to process.
1250 After the process output mark, sends all text from the process mark to
1251 point as input to the process. Before the process output mark, calls value
1252 of variable `comint-get-old-input' to retrieve old input, copies it to the
1253 process mark, and sends it. If variable `comint-process-echoes' is nil,
1254 a terminal newline is also inserted into the buffer and sent to the process
1255 \(if it is non-nil, all text from the process mark to point is deleted,
1256 since it is assumed the remote process will re-echo it).
1258 Any history reference may be expanded depending on the value of the variable
1259 `comint-input-autoexpand'. The list of function names contained in the value
1260 of `comint-input-filter-functions' is called on the input before sending it.
1261 The input is entered into the input history ring, if the value of variable
1262 `comint-input-filter' returns non-nil when called on the input.
1264 If variable `comint-eol-on-send' is non-nil, then point is moved to the
1265 end of line before sending the input.
1267 The values of `comint-get-old-input', `comint-input-filter-functions', and
1268 `comint-input-filter' are chosen according to the command interpreter running
1269 in the buffer. E.g.,
1271 If the interpreter is the csh,
1272 comint-get-old-input is the default: take the current line, discard any
1273 initial string matching regexp comint-prompt-regexp.
1274 comint-input-filter-functions monitors input for \"cd\", \"pushd\", and
1275 \"popd\" commands. When it sees one, it cd's the buffer.
1276 comint-input-filter is the default: returns t if the input isn't all white
1277 space.
1279 If the comint is Lucid Common Lisp,
1280 comint-get-old-input snarfs the sexp ending at point.
1281 comint-input-filter-functions does nothing.
1282 comint-input-filter returns nil if the input matches input-filter-regexp,
1283 which matches (1) all whitespace (2) :a, :c, etc.
1285 Similarly for Soar, Scheme, etc."
1286 (interactive)
1287 ;; Note that the input string does not include its terminal newline.
1288 (let ((proc (get-buffer-process (current-buffer))))
1289 (if (not proc) (error "Current buffer has no process")
1290 (let* ((pmark (process-mark proc))
1291 (intxt (if (>= (point) (marker-position pmark))
1292 (progn (if comint-eol-on-send (end-of-line))
1293 (buffer-substring pmark (point)))
1294 (let ((copy (funcall comint-get-old-input)))
1295 (goto-char pmark)
1296 (insert copy)
1297 copy)))
1298 (input (if (not (eq comint-input-autoexpand 'input))
1299 ;; Just whatever's already there
1300 intxt
1301 ;; Expand and leave it visible in buffer
1302 (comint-replace-by-expanded-history t pmark)
1303 (buffer-substring pmark (point))))
1304 (history (if (not (eq comint-input-autoexpand 'history))
1305 input
1306 ;; This is messy 'cos ultimately the original
1307 ;; functions used do insertion, rather than return
1308 ;; strings. We have to expand, then insert back.
1309 (comint-replace-by-expanded-history t pmark)
1310 (let ((copy (buffer-substring pmark (point)))
1311 (start (point)))
1312 (insert input)
1313 (delete-region pmark start)
1314 copy))))
1315 (if comint-process-echoes
1316 (delete-region pmark (point))
1317 (insert-before-markers ?\n))
1318 (if (and (funcall comint-input-filter history)
1319 (or (null comint-input-ignoredups)
1320 (not (ring-p comint-input-ring))
1321 (ring-empty-p comint-input-ring)
1322 (not (string-equal (ring-ref comint-input-ring 0)
1323 history))))
1324 (ring-insert comint-input-ring history))
1325 (run-hook-with-args 'comint-input-filter-functions
1326 (concat input "\n"))
1327 (setq comint-save-input-ring-index comint-input-ring-index)
1328 (setq comint-input-ring-index nil)
1329 ;; Update the markers before we send the input
1330 ;; in case we get output amidst sending the input.
1331 (set-marker comint-last-input-start pmark)
1332 (set-marker comint-last-input-end (point))
1333 (set-marker (process-mark proc) (point))
1334 ;; clear the "accumulation" marker
1335 (set-marker comint-accum-marker nil)
1336 (funcall comint-input-sender proc input)
1337 ;; This used to call comint-output-filter-functions,
1338 ;; but that scrolled the buffer in undesirable ways.
1339 (run-hook-with-args 'comint-output-filter-functions "")))))
1341 (defvar comint-preoutput-filter-functions nil
1342 "Functions to call before output is inserted into the buffer.
1343 These functions get one argument, a string containing the text to be
1344 inserted. They return the string as it should be inserted.
1346 This variable is buffer-local.")
1348 ;; The purpose of using this filter for comint processes
1349 ;; is to keep comint-last-input-end from moving forward
1350 ;; when output is inserted.
1351 (defun comint-output-filter (process string)
1352 (let ((oprocbuf (process-buffer process)))
1353 ;; First check for killed buffer or no input.
1354 (when (and string oprocbuf (buffer-name oprocbuf))
1355 (with-current-buffer oprocbuf
1356 (let ((functions comint-preoutput-filter-functions))
1357 (while (and functions string)
1358 (setq string (funcall (car functions) string))
1359 (setq functions (cdr functions))))
1360 (let (opoint obeg oend)
1361 (setq opoint (point))
1362 (setq obeg (point-min))
1363 (setq oend (point-max))
1364 (let ((buffer-read-only nil)
1365 (nchars (length string))
1366 (ostart nil))
1367 (widen)
1368 (goto-char (process-mark process))
1369 (setq ostart (point))
1370 (if (<= (point) opoint)
1371 (setq opoint (+ opoint nchars)))
1372 ;; Insert after old_begv, but before old_zv.
1373 (if (< (point) obeg)
1374 (setq obeg (+ obeg nchars)))
1375 (if (<= (point) oend)
1376 (setq oend (+ oend nchars)))
1377 (insert-before-markers string)
1378 ;; Don't insert initial prompt outside the top of the window.
1379 (if (= (window-start (selected-window)) (point))
1380 (set-window-start (selected-window) (- (point) (length string))))
1381 (if (and comint-last-input-end
1382 (marker-buffer comint-last-input-end)
1383 (= (point) comint-last-input-end))
1384 (set-marker comint-last-input-end (- comint-last-input-end nchars)))
1385 (set-marker comint-last-output-start ostart)
1386 (set-marker (process-mark process) (point))
1387 (force-mode-line-update))
1389 (narrow-to-region obeg oend)
1390 (goto-char opoint)
1391 (run-hook-with-args 'comint-output-filter-functions string))))))
1393 (defun comint-preinput-scroll-to-bottom ()
1394 "Go to the end of buffer in all windows showing it.
1395 Movement occurs if point in the selected window is not after the process mark,
1396 and `this-command' is an insertion command. Insertion commands recognised
1397 are `self-insert-command', `comint-magic-space', `yank', and `hilit-yank'.
1398 Depends on the value of `comint-scroll-to-bottom-on-input'.
1400 This function should be a pre-command hook."
1401 (if (and comint-scroll-to-bottom-on-input
1402 (memq this-command '(self-insert-command comint-magic-space yank
1403 hilit-yank)))
1404 (let* ((selected (selected-window))
1405 (current (current-buffer))
1406 (process (get-buffer-process current))
1407 (scroll comint-scroll-to-bottom-on-input))
1408 (if (and process (< (point) (process-mark process)))
1409 (if (eq scroll 'this)
1410 (goto-char (point-max))
1411 (walk-windows
1412 (function (lambda (window)
1413 (if (and (eq (window-buffer window) current)
1414 (or (eq scroll t) (eq scroll 'all)))
1415 (progn
1416 (select-window window)
1417 (goto-char (point-max))
1418 (select-window selected)))))
1419 nil t))))))
1421 (defun comint-postoutput-scroll-to-bottom (string)
1422 "Go to the end of buffer in all windows showing it.
1423 Does not scroll if the current line is the last line in the buffer.
1424 Depends on the value of `comint-scroll-to-bottom-on-output' and
1425 `comint-scroll-show-maximum-output'.
1427 This function should be in the list `comint-output-filter-functions'."
1428 (let* ((selected (selected-window))
1429 (current (current-buffer))
1430 (process (get-buffer-process current))
1431 (scroll comint-scroll-to-bottom-on-output))
1432 (unwind-protect
1433 (if process
1434 (walk-windows
1435 (function (lambda (window)
1436 (if (eq (window-buffer window) current)
1437 (progn
1438 (select-window window)
1439 (if (and (< (point) (process-mark process))
1440 (or (eq scroll t) (eq scroll 'all)
1441 ;; Maybe user wants point to jump to end.
1442 (and (eq scroll 'this) (eq selected window))
1443 (and (eq scroll 'others) (not (eq selected window)))
1444 ;; If point was at the end, keep it at end.
1445 (and (marker-position comint-last-output-start)
1446 (>= (point) comint-last-output-start))))
1447 (goto-char (process-mark process)))
1448 ;; Optionally scroll so that the text
1449 ;; ends at the bottom of the window.
1450 (if (and comint-scroll-show-maximum-output
1451 (>= (point) (process-mark process)))
1452 (save-excursion
1453 (goto-char (point-max))
1454 (recenter -1)))
1455 (select-window selected)))))
1456 nil t))
1457 (set-buffer current))))
1459 (defun comint-truncate-buffer (&optional string)
1460 "Truncate the buffer to `comint-buffer-maximum-size'.
1461 This function could be on `comint-output-filter-functions' or bound to a key."
1462 (interactive)
1463 (save-excursion
1464 (goto-char (process-mark (get-buffer-process (current-buffer))))
1465 (forward-line (- comint-buffer-maximum-size))
1466 (beginning-of-line)
1467 (delete-region (point-min) (point))))
1469 (defun comint-strip-ctrl-m (&optional string)
1470 "Strip trailing `^M' characters from the current output group.
1471 This function could be on `comint-output-filter-functions' or bound to a key."
1472 (interactive)
1473 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
1474 (save-excursion
1475 (condition-case nil
1476 (goto-char
1477 (if (interactive-p) comint-last-input-end comint-last-output-start))
1478 (error nil))
1479 (while (re-search-forward "\r+$" pmark t)
1480 (replace-match "" t t)))))
1481 (defalias 'shell-strip-ctrl-m 'comint-strip-ctrl-m)
1483 (defun comint-show-maximum-output ()
1484 "Put the end of the buffer at the bottom of the window."
1485 (interactive)
1486 (goto-char (point-max))
1487 (recenter -1))
1489 (defun comint-get-old-input-default ()
1490 "Default for `comint-get-old-input'.
1491 Take the current line, and discard any initial text matching
1492 `comint-prompt-regexp'."
1493 (save-excursion
1494 (beginning-of-line)
1495 (comint-skip-prompt)
1496 (let ((beg (point)))
1497 (end-of-line)
1498 (buffer-substring beg (point)))))
1500 (defun comint-copy-old-input ()
1501 "Insert after prompt old input at point as new input to be edited.
1502 Calls `comint-get-old-input' to get old input."
1503 (interactive)
1504 (let ((input (funcall comint-get-old-input))
1505 (process (get-buffer-process (current-buffer))))
1506 (if (not process)
1507 (error "Current buffer has no process")
1508 (goto-char (process-mark process))
1509 (insert input))))
1511 (defun comint-skip-prompt ()
1512 "Skip past the text matching regexp `comint-prompt-regexp'.
1513 If this takes us past the end of the current line, don't skip at all."
1514 (let ((eol (save-excursion (end-of-line) (point))))
1515 (if (and (looking-at comint-prompt-regexp)
1516 (<= (match-end 0) eol))
1517 (goto-char (match-end 0)))))
1519 (defun comint-after-pmark-p ()
1520 "Return t if point is after the process output marker."
1521 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
1522 (<= (marker-position pmark) (point))))
1524 (defun comint-simple-send (proc string)
1525 "Default function for sending to PROC input STRING.
1526 This just sends STRING plus a newline. To override this,
1527 set the hook `comint-input-sender'."
1528 (comint-send-string proc string)
1529 (comint-send-string proc "\n"))
1531 (defun comint-bol (arg)
1532 "Goes to the beginning of line, then skips past the prompt, if any.
1533 If prefix argument is given (\\[universal-argument]) the prompt is not skipped.
1535 The prompt skip is done by skipping text matching the regular expression
1536 `comint-prompt-regexp', a buffer local variable."
1537 (interactive "P")
1538 (beginning-of-line)
1539 (if (null arg) (comint-skip-prompt)))
1541 ;; These three functions are for entering text you don't want echoed or
1542 ;; saved -- typically passwords to ftp, telnet, or somesuch.
1543 ;; Just enter m-x send-invisible and type in your line, or add
1544 ;; `comint-watch-for-password-prompt' to `comint-output-filter-functions'.
1546 (defun comint-read-noecho (prompt &optional stars)
1547 "Read a single line of text from user without echoing, and return it.
1548 Prompt with argument PROMPT, a string. Optional argument STARS causes
1549 input to be echoed with '*' characters on the prompt line. Input ends with
1550 RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. C-g aborts (if
1551 `inhibit-quit' is set because e.g. this function was called from a process
1552 filter and C-g is pressed, this function returns nil rather than a string).
1554 Note that the keystrokes comprising the text can still be recovered
1555 \(temporarily) with \\[view-lossage]. Some people find this worrysome.
1556 Once the caller uses the password, it can erase the password
1557 by doing (fillarray STRING 0)."
1558 (let ((ans "")
1559 (newans nil)
1560 (c 0)
1561 (echo-keystrokes 0)
1562 (cursor-in-echo-area t)
1563 (message-log-max nil)
1564 (done nil))
1565 (while (not done)
1566 (if stars
1567 (message "%s%s" prompt (make-string (length ans) ?*))
1568 (message "%s" prompt))
1569 ;; Use this instead of `read-char' to avoid "Non-character input-event".
1570 (setq c (read-char-exclusive))
1571 (cond ((= c ?\C-g)
1572 ;; This function may get called from a process filter, where
1573 ;; inhibit-quit is set. In later versions of emacs read-char
1574 ;; may clear quit-flag itself and return C-g. That would make
1575 ;; it impossible to quit this loop in a simple way, so
1576 ;; re-enable it here (for backward-compatibility the check for
1577 ;; quit-flag below would still be necessary, so this seems
1578 ;; like the simplest way to do things).
1579 (setq quit-flag t
1580 done t))
1581 ((or (= c ?\r) (= c ?\n) (= c ?\e))
1582 (setq done t))
1583 ((= c ?\C-u)
1584 (fillarray ans 0)
1585 (setq ans ""))
1586 ((and (/= c ?\b) (/= c ?\177))
1587 (setq newans (concat ans (char-to-string c)))
1588 (fillarray ans 0)
1589 (setq ans newans))
1590 ((> (length ans) 0)
1591 (aset ans (1- (length ans)) 0)
1592 (setq ans (substring ans 0 -1)))))
1593 (if quit-flag
1594 ;; Emulate a true quit, except that we have to return a value.
1595 (prog1
1596 (setq quit-flag nil)
1597 (message "Quit")
1598 (beep t))
1599 (message "")
1600 ans)))
1602 (defun send-invisible (str)
1603 "Read a string without echoing.
1604 Then send it to the process running in the current buffer.
1605 The string is sent using `comint-input-sender'.
1606 Security bug: your string can still be temporarily recovered with
1607 \\[view-lossage]."
1608 (interactive "P") ; Defeat snooping via C-x ESC ESC
1609 (let ((proc (get-buffer-process (current-buffer))))
1610 (cond ((not proc)
1611 (error "Current buffer has no process"))
1612 ((stringp str)
1613 (funcall comint-input-sender proc str))
1615 (let ((str (comint-read-noecho "Non-echoed text: " t)))
1616 (if (stringp str)
1617 (send-invisible str)
1618 (message "Warning: text will be echoed")))))))
1620 (defun comint-watch-for-password-prompt (string)
1621 "Prompt in the minibuffer for password and send without echoing.
1622 This function uses `send-invisible' to read and send a password to the buffer's
1623 process if STRING contains a password prompt defined by
1624 `comint-password-prompt-regexp'.
1626 This function could be in the list `comint-output-filter-functions'."
1627 (if (string-match comint-password-prompt-regexp string)
1628 (send-invisible nil)))
1630 ;; Low-level process communication
1632 (defalias 'comint-send-string 'process-send-string)
1633 (defalias 'comint-send-region 'process-send-region)
1635 ;; Random input hackage
1637 (defun comint-kill-output ()
1638 "Kill all output from interpreter since last input.
1639 Does not delete the prompt."
1640 (interactive)
1641 (let ((proc (get-buffer-process (current-buffer)))
1642 (replacement nil))
1643 (save-excursion
1644 (let ((pmark (progn (goto-char (process-mark proc))
1645 (beginning-of-line nil)
1646 (point-marker))))
1647 (delete-region comint-last-input-end pmark)
1648 (goto-char (process-mark proc))
1649 (setq replacement (concat "*** output flushed ***\n"
1650 (buffer-substring pmark (point))))
1651 (delete-region pmark (point))))
1652 ;; Output message and put back prompt
1653 (comint-output-filter proc replacement)))
1655 (defun comint-show-output ()
1656 "Display start of this batch of interpreter output at top of window.
1657 Sets mark to the value of point when this command is run."
1658 (interactive)
1659 (push-mark)
1660 (let ((pos (point)))
1661 (goto-char (or (marker-position comint-last-input-end) (point-max)))
1662 (beginning-of-line 0)
1663 (set-window-start (selected-window) (point))
1664 (comint-skip-prompt)))
1666 (defun comint-interrupt-subjob ()
1667 "Interrupt the current subjob.
1668 This command also kills the pending input
1669 between the process-mark and point."
1670 (interactive)
1671 (comint-kill-input)
1672 (interrupt-process nil comint-ptyp))
1674 (defun comint-kill-subjob ()
1675 "Send kill signal to the current subjob.
1676 This command also kills the pending input
1677 between the process-mark and point."
1678 (interactive)
1679 (comint-kill-input)
1680 (kill-process nil comint-ptyp))
1682 (defun comint-quit-subjob ()
1683 "Send quit signal to the current subjob.
1684 This command also kills the pending input
1685 between the process-mark and point."
1686 (interactive)
1687 (comint-kill-input)
1688 (quit-process nil comint-ptyp))
1690 (defun comint-stop-subjob ()
1691 "Stop the current subjob.
1692 This command also kills the pending input
1693 between the process-mark and point.
1695 WARNING: if there is no current subjob, you can end up suspending
1696 the top-level process running in the buffer. If you accidentally do
1697 this, use \\[comint-continue-subjob] to resume the process. (This
1698 is not a problem with most shells, since they ignore this signal.)"
1699 (interactive)
1700 (comint-kill-input)
1701 (stop-process nil comint-ptyp))
1703 (defun comint-continue-subjob ()
1704 "Send CONT signal to process buffer's process group.
1705 Useful if you accidentally suspend the top-level process."
1706 (interactive)
1707 (continue-process nil comint-ptyp))
1709 (defun comint-kill-input ()
1710 "Kill all text from last stuff output by interpreter to point."
1711 (interactive)
1712 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
1713 (if (> (point) (marker-position pmark))
1714 (kill-region pmark (point)))))
1716 (defun comint-delchar-or-maybe-eof (arg)
1717 "Delete ARG characters forward or send an EOF to subprocess.
1718 Sends an EOF only if point is at the end of the buffer and there is no input."
1719 (interactive "p")
1720 (let ((proc (get-buffer-process (current-buffer))))
1721 (if (and (eobp) proc (= (point) (marker-position (process-mark proc))))
1722 (process-send-eof)
1723 (delete-char arg))))
1725 (defun comint-send-eof ()
1726 "Send an EOF to the current buffer's process."
1727 (interactive)
1728 (process-send-eof))
1731 (defun comint-backward-matching-input (regexp arg)
1732 "Search backward through buffer for match for REGEXP.
1733 Matches are searched for on lines that match `comint-prompt-regexp'.
1734 With prefix argument N, search for Nth previous match.
1735 If N is negative, find the next or Nth next match."
1736 (interactive (comint-regexp-arg "Backward input matching (regexp): "))
1737 (let* ((re (concat comint-prompt-regexp ".*" regexp))
1738 (pos (save-excursion (end-of-line (if (> arg 0) 0 1))
1739 (if (re-search-backward re nil t arg)
1740 (point)))))
1741 (if (null pos)
1742 (progn (message "Not found")
1743 (ding))
1744 (goto-char pos)
1745 (comint-bol nil))))
1747 (defun comint-forward-matching-input (regexp arg)
1748 "Search forward through buffer for match for REGEXP.
1749 Matches are searched for on lines that match `comint-prompt-regexp'.
1750 With prefix argument N, search for Nth following match.
1751 If N is negative, find the previous or Nth previous match."
1752 (interactive (comint-regexp-arg "Forward input matching (regexp): "))
1753 (comint-backward-matching-input regexp (- arg)))
1756 (defun comint-next-prompt (n)
1757 "Move to end of Nth next prompt in the buffer.
1758 See `comint-prompt-regexp'."
1759 (interactive "p")
1760 (let ((paragraph-start comint-prompt-regexp))
1761 (end-of-line (if (> n 0) 1 0))
1762 (forward-paragraph n)
1763 (comint-skip-prompt)))
1765 (defun comint-previous-prompt (n)
1766 "Move to end of Nth previous prompt in the buffer.
1767 See `comint-prompt-regexp'."
1768 (interactive "p")
1769 (comint-next-prompt (- n)))
1771 ;; Support for source-file processing commands.
1772 ;;============================================================================
1773 ;; Many command-interpreters (e.g., Lisp, Scheme, Soar) have
1774 ;; commands that process files of source text (e.g. loading or compiling
1775 ;; files). So the corresponding process-in-a-buffer modes have commands
1776 ;; for doing this (e.g., lisp-load-file). The functions below are useful
1777 ;; for defining these commands.
1779 ;; Alas, these guys don't do exactly the right thing for Lisp, Scheme
1780 ;; and Soar, in that they don't know anything about file extensions.
1781 ;; So the compile/load interface gets the wrong default occasionally.
1782 ;; The load-file/compile-file default mechanism could be smarter -- it
1783 ;; doesn't know about the relationship between filename extensions and
1784 ;; whether the file is source or executable. If you compile foo.lisp
1785 ;; with compile-file, then the next load-file should use foo.bin for
1786 ;; the default, not foo.lisp. This is tricky to do right, particularly
1787 ;; because the extension for executable files varies so much (.o, .bin,
1788 ;; .lbin, .mo, .vo, .ao, ...).
1791 ;; COMINT-SOURCE-DEFAULT -- determines defaults for source-file processing
1792 ;; commands.
1794 ;; COMINT-CHECK-SOURCE -- if FNAME is in a modified buffer, asks you if you
1795 ;; want to save the buffer before issuing any process requests to the command
1796 ;; interpreter.
1798 ;; COMINT-GET-SOURCE -- used by the source-file processing commands to prompt
1799 ;; for the file to process.
1801 ;; (COMINT-SOURCE-DEFAULT previous-dir/file source-modes)
1802 ;;============================================================================
1803 ;; This function computes the defaults for the load-file and compile-file
1804 ;; commands for tea, soar, cmulisp, and cmuscheme modes.
1806 ;; - PREVIOUS-DIR/FILE is a pair (directory . filename) from the last
1807 ;; source-file processing command. NIL if there hasn't been one yet.
1808 ;; - SOURCE-MODES is a list used to determine what buffers contain source
1809 ;; files: if the major mode of the buffer is in SOURCE-MODES, it's source.
1810 ;; Typically, (lisp-mode) or (scheme-mode).
1812 ;; If the command is given while the cursor is inside a string, *and*
1813 ;; the string is an existing filename, *and* the filename is not a directory,
1814 ;; then the string is taken as default. This allows you to just position
1815 ;; your cursor over a string that's a filename and have it taken as default.
1817 ;; If the command is given in a file buffer whose major mode is in
1818 ;; SOURCE-MODES, then the the filename is the default file, and the
1819 ;; file's directory is the default directory.
1821 ;; If the buffer isn't a source file buffer (e.g., it's the process buffer),
1822 ;; then the default directory & file are what was used in the last source-file
1823 ;; processing command (i.e., PREVIOUS-DIR/FILE). If this is the first time
1824 ;; the command has been run (PREVIOUS-DIR/FILE is nil), the default directory
1825 ;; is the cwd, with no default file. (\"no default file\" = nil)
1827 ;; SOURCE-REGEXP is typically going to be something like (tea-mode)
1828 ;; for T programs, (lisp-mode) for Lisp programs, (soar-mode lisp-mode)
1829 ;; for Soar programs, etc.
1831 ;; The function returns a pair: (default-directory . default-file).
1833 (defun comint-source-default (previous-dir/file source-modes)
1834 (cond ((and buffer-file-name (memq major-mode source-modes))
1835 (cons (file-name-directory buffer-file-name)
1836 (file-name-nondirectory buffer-file-name)))
1837 (previous-dir/file)
1839 (cons default-directory nil))))
1842 ;; (COMINT-CHECK-SOURCE fname)
1843 ;;============================================================================
1844 ;; Prior to loading or compiling (or otherwise processing) a file (in the CMU
1845 ;; process-in-a-buffer modes), this function can be called on the filename.
1846 ;; If the file is loaded into a buffer, and the buffer is modified, the user
1847 ;; is queried to see if he wants to save the buffer before proceeding with
1848 ;; the load or compile.
1850 (defun comint-check-source (fname)
1851 (let ((buff (get-file-buffer fname)))
1852 (if (and buff
1853 (buffer-modified-p buff)
1854 (y-or-n-p (format "Save buffer %s first? " (buffer-name buff))))
1855 ;; save BUFF.
1856 (let ((old-buffer (current-buffer)))
1857 (set-buffer buff)
1858 (save-buffer)
1859 (set-buffer old-buffer)))))
1862 ;; (COMINT-GET-SOURCE prompt prev-dir/file source-modes mustmatch-p)
1863 ;;============================================================================
1864 ;; COMINT-GET-SOURCE is used to prompt for filenames in command-interpreter
1865 ;; commands that process source files (like loading or compiling a file).
1866 ;; It prompts for the filename, provides a default, if there is one,
1867 ;; and returns the result filename.
1869 ;; See COMINT-SOURCE-DEFAULT for more on determining defaults.
1871 ;; PROMPT is the prompt string. PREV-DIR/FILE is the (directory . file) pair
1872 ;; from the last source processing command. SOURCE-MODES is a list of major
1873 ;; modes used to determine what file buffers contain source files. (These
1874 ;; two arguments are used for determining defaults). If MUSTMATCH-P is true,
1875 ;; then the filename reader will only accept a file that exists.
1877 ;; A typical use:
1878 ;; (interactive (comint-get-source "Compile file: " prev-lisp-dir/file
1879 ;; '(lisp-mode) t))
1881 ;; This is pretty stupid about strings. It decides we're in a string
1882 ;; if there's a quote on both sides of point on the current line.
1883 (defun comint-extract-string ()
1884 "Return string around POINT that starts the current line, or nil."
1885 (save-excursion
1886 (let* ((point (point))
1887 (bol (progn (beginning-of-line) (point)))
1888 (eol (progn (end-of-line) (point)))
1889 (start (progn (goto-char point)
1890 (and (search-backward "\"" bol t)
1891 (1+ (point)))))
1892 (end (progn (goto-char point)
1893 (and (search-forward "\"" eol t)
1894 (1- (point))))))
1895 (and start end
1896 (buffer-substring start end)))))
1898 (defun comint-get-source (prompt prev-dir/file source-modes mustmatch-p)
1899 (let* ((def (comint-source-default prev-dir/file source-modes))
1900 (stringfile (comint-extract-string))
1901 (sfile-p (and stringfile
1902 (condition-case ()
1903 (file-exists-p stringfile)
1904 (error nil))
1905 (not (file-directory-p stringfile))))
1906 (defdir (if sfile-p (file-name-directory stringfile)
1907 (car def)))
1908 (deffile (if sfile-p (file-name-nondirectory stringfile)
1909 (cdr def)))
1910 (ans (read-file-name (if deffile (format "%s(default %s) "
1911 prompt deffile)
1912 prompt)
1913 defdir
1914 (concat defdir deffile)
1915 mustmatch-p)))
1916 (list (expand-file-name (substitute-in-file-name ans)))))
1918 ;; I am somewhat divided on this string-default feature. It seems
1919 ;; to violate the principle-of-least-astonishment, in that it makes
1920 ;; the default harder to predict, so you actually have to look and see
1921 ;; what the default really is before choosing it. This can trip you up.
1922 ;; On the other hand, it can be useful, I guess. I would appreciate feedback
1923 ;; on this.
1924 ;; -Olin
1927 ;; Simple process query facility.
1928 ;; ===========================================================================
1929 ;; This function is for commands that want to send a query to the process
1930 ;; and show the response to the user. For example, a command to get the
1931 ;; arglist for a Common Lisp function might send a "(arglist 'foo)" query
1932 ;; to an inferior Common Lisp process.
1934 ;; This simple facility just sends strings to the inferior process and pops
1935 ;; up a window for the process buffer so you can see what the process
1936 ;; responds with. We don't do anything fancy like try to intercept what the
1937 ;; process responds with and put it in a pop-up window or on the message
1938 ;; line. We just display the buffer. Low tech. Simple. Works good.
1940 ;; Send to the inferior process PROC the string STR. Pop-up but do not select
1941 ;; a window for the inferior process so that its response can be seen.
1942 (defun comint-proc-query (proc str)
1943 (let* ((proc-buf (process-buffer proc))
1944 (proc-mark (process-mark proc)))
1945 (display-buffer proc-buf)
1946 (set-buffer proc-buf) ; but it's not the selected *window*
1947 (let ((proc-win (get-buffer-window proc-buf))
1948 (proc-pt (marker-position proc-mark)))
1949 (comint-send-string proc str) ; send the query
1950 (accept-process-output proc) ; wait for some output
1951 ;; Try to position the proc window so you can see the answer.
1952 ;; This is bogus code. If you delete the (sit-for 0), it breaks.
1953 ;; I don't know why. Wizards invited to improve it.
1954 (unless (pos-visible-in-window-p proc-pt proc-win)
1955 (let ((opoint (window-point proc-win)))
1956 (set-window-point proc-win proc-mark)
1957 (sit-for 0)
1958 (if (not (pos-visible-in-window-p opoint proc-win))
1959 (push-mark opoint)
1960 (set-window-point proc-win opoint)))))))
1963 ;; Filename/command/history completion in a buffer
1964 ;; ===========================================================================
1965 ;; Useful completion functions, courtesy of the Ergo group.
1967 ;; Six commands:
1968 ;; comint-dynamic-complete Complete or expand command, filename,
1969 ;; history at point.
1970 ;; comint-dynamic-complete-filename Complete filename at point.
1971 ;; comint-dynamic-list-filename-completions List completions in help buffer.
1972 ;; comint-replace-by-expanded-filename Expand and complete filename at point;
1973 ;; replace with expanded/completed name.
1974 ;; comint-dynamic-simple-complete Complete stub given candidates.
1976 ;; These are not installed in the comint-mode keymap. But they are
1977 ;; available for people who want them. Shell-mode installs them:
1978 ;; (define-key shell-mode-map "\t" 'comint-dynamic-complete)
1979 ;; (define-key shell-mode-map "\M-?"
1980 ;; 'comint-dynamic-list-filename-completions)))
1982 ;; Commands like this are fine things to put in load hooks if you
1983 ;; want them present in specific modes.
1985 (defcustom comint-completion-autolist nil
1986 "*If non-nil, automatically list possibilities on partial completion.
1987 This mirrors the optional behavior of tcsh."
1988 :type 'boolean
1989 :group 'comint-completion)
1991 (defcustom comint-completion-addsuffix t
1992 "*If non-nil, add a `/' to completed directories, ` ' to file names.
1993 If a cons pair, it should be of the form (DIRSUFFIX . FILESUFFIX) where
1994 DIRSUFFIX and FILESUFFIX are strings added on unambiguous or exact completion.
1995 This mirrors the optional behavior of tcsh."
1996 :type 'boolean
1997 :group 'comint-completion)
1999 (defcustom comint-completion-recexact nil
2000 "*If non-nil, use shortest completion if characters cannot be added.
2001 This mirrors the optional behavior of tcsh.
2003 A non-nil value is useful if `comint-completion-autolist' is non-nil too."
2004 :type 'boolean
2005 :group 'comint-completion)
2007 (defcustom comint-completion-fignore nil
2008 "*List of suffixes to be disregarded during file completion.
2009 This mirrors the optional behavior of bash and tcsh.
2011 Note that this applies to `comint-dynamic-complete-filename' only."
2012 :type '(repeat (string :tag "Suffix"))
2013 :group 'comint-completion)
2015 (defvar comint-file-name-prefix ""
2016 "Prefix prepended to absolute file names taken from process input.
2017 This is used by comint's and shell's completion functions, and by shell's
2018 directory tracking functions.")
2020 (defvar comint-file-name-chars
2021 (if (memq system-type '(ms-dos windows-nt))
2022 "~/A-Za-z0-9_^$!#%&{}@`'.,:()-"
2023 "~/A-Za-z0-9+@:_.$#%,={}-")
2024 "String of characters valid in a file name.
2025 Note that all non-ASCII characters are considered valid in a file name
2026 regardless of what this variable says.
2028 This is a good thing to set in mode hooks.")
2030 (defvar comint-file-name-quote-list nil
2031 "List of characters to quote with `\\' when in a file name.
2033 This is a good thing to set in mode hooks.")
2036 (defun comint-directory (directory)
2037 ;; Return expanded DIRECTORY, with `comint-file-name-prefix' if absolute.
2038 (expand-file-name (if (file-name-absolute-p directory)
2039 (concat comint-file-name-prefix directory)
2040 directory)))
2043 (defun comint-word (word-chars)
2044 "Return the word of WORD-CHARS at point, or nil if non is found.
2045 Word constituents are considered to be those in WORD-CHARS, which is like the
2046 inside of a \"[...]\" (see `skip-chars-forward'),
2047 plus all non-ASCII characters."
2048 (save-excursion
2049 (let ((non-word-chars (concat "[^\\\\" word-chars "]")) (here (point)))
2050 (while (and (re-search-backward non-word-chars nil 'move)
2051 ;;(memq (char-after (point)) shell-file-name-quote-list)
2052 (or (>= (following-char) 128)
2053 (eq (preceding-char) ?\\)))
2054 (backward-char 1))
2055 ;; Don't go forward over a word-char (this can happen if we're at bob).
2056 (when (or (not (bobp)) (looking-at non-word-chars))
2057 (forward-char 1))
2058 ;; Set match-data to match the entire string.
2059 (when (< (point) here)
2060 (set-match-data (list (point) here))
2061 (match-string 0)))))
2063 (defun comint-substitute-in-file-name (filename)
2064 "Return FILENAME with environment variables substituted.
2065 Supports additional environment variable syntax of the command
2066 interpreter (e.g., the percent notation of cmd.exe on NT)."
2067 (let ((name (substitute-in-file-name filename)))
2068 (if (memq system-type '(ms-dos windows-nt))
2069 (let (env-var-name
2070 env-var-val)
2071 (save-match-data
2072 (while (string-match "%\\([^\\\\/]*\\)%" name)
2073 (setq env-var-name
2074 (substring name (match-beginning 1) (match-end 1)))
2075 (setq env-var-val (if (getenv env-var-name)
2076 (getenv env-var-name)
2077 ""))
2078 (setq name (replace-match env-var-val nil nil name))))))
2079 name))
2081 (defun comint-match-partial-filename ()
2082 "Return the filename at point, or nil if non is found.
2083 Environment variables are substituted. See `comint-word'."
2084 (let ((filename (comint-word comint-file-name-chars)))
2085 (and filename (comint-substitute-in-file-name
2086 (comint-unquote-filename filename)))))
2089 (defun comint-quote-filename (filename)
2090 "Return FILENAME with magic characters quoted.
2091 Magic characters are those in `comint-file-name-quote-list'."
2092 (if (null comint-file-name-quote-list)
2093 filename
2094 (let ((regexp
2095 (format "\\(^\\|[^\\]\\)\\([%s]\\)"
2096 (mapconcat 'char-to-string comint-file-name-quote-list ""))))
2097 (save-match-data
2098 (while (string-match regexp filename)
2099 (setq filename (replace-match "\\1\\\\\\2" nil nil filename)))
2100 filename))))
2102 (defun comint-unquote-filename (filename)
2103 "Return FILENAME with quoted characters unquoted."
2104 (if (null comint-file-name-quote-list)
2105 filename
2106 (save-match-data
2107 (let ((i 0))
2108 (while (string-match "\\\\\\(.\\)" filename i)
2109 (setq filename (replace-match "\\1" nil nil filename))
2110 (setq i (+ 1 (match-beginning 0)))))
2111 filename)))
2114 (defun comint-dynamic-complete ()
2115 "Dynamically perform completion at point.
2116 Calls the functions in `comint-dynamic-complete-functions' to perform
2117 completion until a function returns non-nil, at which point completion is
2118 assumed to have occurred."
2119 (interactive)
2120 (run-hook-with-args-until-success 'comint-dynamic-complete-functions))
2123 (defun comint-dynamic-complete-filename ()
2124 "Dynamically complete the filename at point.
2125 Completes if after a filename. See `comint-match-partial-filename' and
2126 `comint-dynamic-complete-as-filename'.
2127 This function is similar to `comint-replace-by-expanded-filename', except that
2128 it won't change parts of the filename already entered in the buffer; it just
2129 adds completion characters to the end of the filename. A completions listing
2130 may be shown in a help buffer if completion is ambiguous.
2132 Completion is dependent on the value of `comint-completion-addsuffix',
2133 `comint-completion-recexact' and `comint-completion-fignore', and the timing of
2134 completions listing is dependent on the value of `comint-completion-autolist'.
2136 Returns t if successful."
2137 (interactive)
2138 (when (comint-match-partial-filename)
2139 (unless (window-minibuffer-p (selected-window))
2140 (message "Completing file name..."))
2141 (comint-dynamic-complete-as-filename)))
2143 (defun comint-dynamic-complete-as-filename ()
2144 "Dynamically complete at point as a filename.
2145 See `comint-dynamic-complete-filename'. Returns t if successful."
2146 (let* ((completion-ignore-case (memq system-type '(ms-dos windows-nt)))
2147 (completion-ignored-extensions comint-completion-fignore)
2148 ;; If we bind this, it breaks remote directory tracking in rlogin.el.
2149 ;; I think it was originally bound to solve file completion problems,
2150 ;; but subsequent changes may have made this unnecessary. sm.
2151 ;;(file-name-handler-alist nil)
2152 (minibuffer-p (window-minibuffer-p (selected-window)))
2153 (success t)
2154 (dirsuffix (cond ((not comint-completion-addsuffix)
2156 ((not (consp comint-completion-addsuffix))
2157 (char-to-string directory-sep-char))
2159 (car comint-completion-addsuffix))))
2160 (filesuffix (cond ((not comint-completion-addsuffix)
2162 ((not (consp comint-completion-addsuffix))
2163 " ")
2165 (cdr comint-completion-addsuffix))))
2166 (filename (or (comint-match-partial-filename) ""))
2167 (pathdir (file-name-directory filename))
2168 (pathnondir (file-name-nondirectory filename))
2169 (directory (if pathdir (comint-directory pathdir) default-directory))
2170 (completion (file-name-completion pathnondir directory)))
2171 (cond ((null completion)
2172 (message "No completions of %s" filename)
2173 (setq success nil))
2174 ((eq completion t) ; Means already completed "file".
2175 (insert filesuffix)
2176 (unless minibuffer-p
2177 (message "Sole completion")))
2178 ((string-equal completion "") ; Means completion on "directory/".
2179 (comint-dynamic-list-filename-completions))
2180 (t ; Completion string returned.
2181 (let ((file (concat (file-name-as-directory directory) completion)))
2182 (insert (comint-quote-filename
2183 (substring (directory-file-name completion)
2184 (length pathnondir))))
2185 (cond ((symbolp (file-name-completion completion directory))
2186 ;; We inserted a unique completion.
2187 (insert (if (file-directory-p file) dirsuffix filesuffix))
2188 (unless minibuffer-p
2189 (message "Completed")))
2190 ((and comint-completion-recexact comint-completion-addsuffix
2191 (string-equal pathnondir completion)
2192 (file-exists-p file))
2193 ;; It's not unique, but user wants shortest match.
2194 (insert (if (file-directory-p file) dirsuffix filesuffix))
2195 (unless minibuffer-p
2196 (message "Completed shortest")))
2197 ((or comint-completion-autolist
2198 (string-equal pathnondir completion))
2199 ;; It's not unique, list possible completions.
2200 (comint-dynamic-list-filename-completions))
2202 (unless minibuffer-p
2203 (message "Partially completed")))))))
2204 success))
2207 (defun comint-replace-by-expanded-filename ()
2208 "Dynamically expand and complete the filename at point.
2209 Replace the filename with an expanded, canonicalised and completed replacement.
2210 \"Expanded\" means environment variables (e.g., $HOME) and `~'s are replaced
2211 with the corresponding directories. \"Canonicalised\" means `..' and `.' are
2212 removed, and the filename is made absolute instead of relative. For expansion
2213 see `expand-file-name' and `substitute-in-file-name'. For completion see
2214 `comint-dynamic-complete-filename'."
2215 (interactive)
2216 (replace-match (expand-file-name (comint-match-partial-filename)) t t)
2217 (comint-dynamic-complete-filename))
2220 (defun comint-dynamic-simple-complete (stub candidates)
2221 "Dynamically complete STUB from CANDIDATES list.
2222 This function inserts completion characters at point by completing STUB from
2223 the strings in CANDIDATES. A completions listing may be shown in a help buffer
2224 if completion is ambiguous.
2226 Returns nil if no completion was inserted.
2227 Returns `sole' if completed with the only completion match.
2228 Returns `shortest' if completed with the shortest of the completion matches.
2229 Returns `partial' if completed as far as possible with the completion matches.
2230 Returns `listed' if a completion listing was shown.
2232 See also `comint-dynamic-complete-filename'."
2233 (let* ((completion-ignore-case (memq system-type '(ms-dos windows-nt)))
2234 (suffix (cond ((not comint-completion-addsuffix) "")
2235 ((not (consp comint-completion-addsuffix)) " ")
2236 (t (cdr comint-completion-addsuffix))))
2237 (candidates (mapcar (function (lambda (x) (list x))) candidates))
2238 (completions (all-completions stub candidates)))
2239 (cond ((null completions)
2240 (message "No completions of %s" stub)
2241 nil)
2242 ((= 1 (length completions)) ; Gotcha!
2243 (let ((completion (car completions)))
2244 (if (string-equal completion stub)
2245 (message "Sole completion")
2246 (insert (substring completion (length stub)))
2247 (message "Completed"))
2248 (insert suffix)
2249 'sole))
2250 (t ; There's no unique completion.
2251 (let ((completion (try-completion stub candidates)))
2252 ;; Insert the longest substring.
2253 (insert (substring completion (length stub)))
2254 (cond ((and comint-completion-recexact comint-completion-addsuffix
2255 (string-equal stub completion)
2256 (member completion completions))
2257 ;; It's not unique, but user wants shortest match.
2258 (insert suffix)
2259 (message "Completed shortest")
2260 'shortest)
2261 ((or comint-completion-autolist
2262 (string-equal stub completion))
2263 ;; It's not unique, list possible completions.
2264 (comint-dynamic-list-completions completions)
2265 'listed)
2267 (message "Partially completed")
2268 'partial)))))))
2271 (defun comint-dynamic-list-filename-completions ()
2272 "List in help buffer possible completions of the filename at point."
2273 (interactive)
2274 (let* ((completion-ignore-case (memq system-type '(ms-dos windows-nt)))
2275 ;; If we bind this, it breaks remote directory tracking in rlogin.el.
2276 ;; I think it was originally bound to solve file completion problems,
2277 ;; but subsequent changes may have made this unnecessary. sm.
2278 ;;(file-name-handler-alist nil)
2279 (filename (or (comint-match-partial-filename) ""))
2280 (pathdir (file-name-directory filename))
2281 (pathnondir (file-name-nondirectory filename))
2282 (directory (if pathdir (comint-directory pathdir) default-directory))
2283 (completions (file-name-all-completions pathnondir directory)))
2284 (if (not completions)
2285 (message "No completions of %s" filename)
2286 (comint-dynamic-list-completions
2287 (mapcar 'comint-quote-filename completions)))))
2290 (defun comint-dynamic-list-completions (completions)
2291 "List in help buffer sorted COMPLETIONS.
2292 Typing SPC flushes the help buffer."
2293 (let ((conf (current-window-configuration)))
2294 (with-output-to-temp-buffer "*Completions*"
2295 (display-completion-list (sort completions 'string-lessp)))
2296 (message "Hit space to flush")
2297 (let (key first)
2298 (if (save-excursion
2299 (set-buffer (get-buffer "*Completions*"))
2300 (setq key (read-key-sequence nil)
2301 first (aref key 0))
2302 (and (consp first) (consp (event-start first))
2303 (eq (window-buffer (posn-window (event-start first)))
2304 (get-buffer "*Completions*"))
2305 (eq (key-binding key) 'mouse-choose-completion)))
2306 ;; If the user does mouse-choose-completion with the mouse,
2307 ;; execute the command, then delete the completion window.
2308 (progn
2309 (mouse-choose-completion first)
2310 (set-window-configuration conf))
2311 (if (eq first ?\ )
2312 (set-window-configuration conf)
2313 (setq unread-command-events (listify-key-sequence key)))))))
2315 (defun comint-get-next-from-history ()
2316 "After fetching a line from input history, this fetches the following line.
2317 In other words, this recalls the input line after the line you recalled last.
2318 You can use this to repeat a sequence of input lines."
2319 (interactive)
2320 (if comint-save-input-ring-index
2321 (progn
2322 (setq comint-input-ring-index (1+ comint-save-input-ring-index))
2323 (comint-next-input 1))
2324 (message "No previous history command")))
2326 (defun comint-accumulate ()
2327 "Accumulate a line to send as input along with more lines.
2328 This inserts a newline so that you can enter more text
2329 to be sent along with this line. Use \\[comint-send-input]
2330 to send all the accumulated input, at once.
2331 The entire accumulated text becomes one item in the input history
2332 when you send it."
2333 (interactive)
2334 (insert "\n")
2335 (set-marker comint-accum-marker (point))
2336 (if comint-input-ring-index
2337 (setq comint-save-input-ring-index
2338 (- comint-input-ring-index 1))))
2340 (defun comint-goto-process-mark ()
2341 "Move point to the process mark.
2342 The process mark separates output, and input already sent,
2343 from input that has not yet been sent."
2344 (interactive)
2345 (let ((proc (or (get-buffer-process (current-buffer))
2346 (error "Current buffer has no process"))))
2347 (goto-char (process-mark proc))
2348 (message "Point is now at the process mark")))
2350 (defun comint-bol-or-process-mark ()
2351 "Move point to beginning of line (after prompt) or to the process mark.
2352 The first time you use this command, it moves to the beginning of the line
2353 \(but after the prompt, if any). If you repeat it again immediately,
2354 it moves point to the process mark.
2356 The process mark separates the process output, along with input already sent,
2357 from input that has not yet been sent. Ordinarily, the process mark
2358 is at the beginning of the current input line; but if you have
2359 used \\[comint-accumulate] to send multiple lines at once,
2360 the process mark is at the beginning of the accumulated input."
2361 (interactive)
2362 (if (not (eq last-command 'comint-bol-or-process-mark))
2363 (comint-bol nil)
2364 (comint-goto-process-mark)))
2366 (defun comint-set-process-mark ()
2367 "Set the process mark at point."
2368 (interactive)
2369 (let ((proc (or (get-buffer-process (current-buffer))
2370 (error "Current buffer has no process"))))
2371 (set-marker (process-mark proc) (point))
2372 (message "Process mark set")))
2375 ;; Converting process modes to use comint mode
2376 ;; ===========================================================================
2377 ;; The code in the Emacs 19 distribution has all been modified to use comint
2378 ;; where needed. However, there are `third-party' packages out there that
2379 ;; still use the old shell mode. Here's a guide to conversion.
2381 ;; Renaming variables
2382 ;; Most of the work is renaming variables and functions. These are the common
2383 ;; ones:
2384 ;; Local variables:
2385 ;; last-input-start comint-last-input-start
2386 ;; last-input-end comint-last-input-end
2387 ;; shell-prompt-pattern comint-prompt-regexp
2388 ;; shell-set-directory-error-hook <no equivalent>
2389 ;; Miscellaneous:
2390 ;; shell-set-directory <unnecessary>
2391 ;; shell-mode-map comint-mode-map
2392 ;; Commands:
2393 ;; shell-send-input comint-send-input
2394 ;; shell-send-eof comint-delchar-or-maybe-eof
2395 ;; kill-shell-input comint-kill-input
2396 ;; interrupt-shell-subjob comint-interrupt-subjob
2397 ;; stop-shell-subjob comint-stop-subjob
2398 ;; quit-shell-subjob comint-quit-subjob
2399 ;; kill-shell-subjob comint-kill-subjob
2400 ;; kill-output-from-shell comint-kill-output
2401 ;; show-output-from-shell comint-show-output
2402 ;; copy-last-shell-input Use comint-previous-input/comint-next-input
2404 ;; SHELL-SET-DIRECTORY is gone, its functionality taken over by
2405 ;; SHELL-DIRECTORY-TRACKER, the shell mode's comint-input-filter-functions.
2406 ;; Comint mode does not provide functionality equivalent to
2407 ;; shell-set-directory-error-hook; it is gone.
2409 ;; comint-last-input-start is provided for modes which want to munge
2410 ;; the buffer after input is sent, perhaps because the inferior
2411 ;; insists on echoing the input. The LAST-INPUT-START variable in
2412 ;; the old shell package was used to implement a history mechanism,
2413 ;; but you should think twice before using comint-last-input-start
2414 ;; for this; the input history ring often does the job better.
2416 ;; If you are implementing some process-in-a-buffer mode, called foo-mode, do
2417 ;; *not* create the comint-mode local variables in your foo-mode function.
2418 ;; This is not modular. Instead, call comint-mode, and let *it* create the
2419 ;; necessary comint-specific local variables. Then create the
2420 ;; foo-mode-specific local variables in foo-mode. Set the buffer's keymap to
2421 ;; be foo-mode-map, and its mode to be foo-mode. Set the comint-mode hooks
2422 ;; (comint-{prompt-regexp, input-filter, input-filter-functions,
2423 ;; get-old-input) that need to be different from the defaults. Call
2424 ;; foo-mode-hook, and you're done. Don't run the comint-mode hook yourself;
2425 ;; comint-mode will take care of it. The following example, from shell.el,
2426 ;; is typical:
2428 ;; (defvar shell-mode-map '())
2429 ;; (cond ((not shell-mode-map)
2430 ;; (setq shell-mode-map (copy-keymap comint-mode-map))
2431 ;; (define-key shell-mode-map "\C-c\C-f" 'shell-forward-command)
2432 ;; (define-key shell-mode-map "\C-c\C-b" 'shell-backward-command)
2433 ;; (define-key shell-mode-map "\t" 'comint-dynamic-complete)
2434 ;; (define-key shell-mode-map "\M-?"
2435 ;; 'comint-dynamic-list-filename-completions)))
2437 ;; (defun shell-mode ()
2438 ;; (interactive)
2439 ;; (comint-mode)
2440 ;; (setq comint-prompt-regexp shell-prompt-pattern)
2441 ;; (setq major-mode 'shell-mode)
2442 ;; (setq mode-name "Shell")
2443 ;; (use-local-map shell-mode-map)
2444 ;; (make-local-variable 'shell-directory-stack)
2445 ;; (setq shell-directory-stack nil)
2446 ;; (add-hook 'comint-input-filter-functions 'shell-directory-tracker)
2447 ;; (run-hooks 'shell-mode-hook))
2450 ;; Completion for comint-mode users
2452 ;; For modes that use comint-mode, comint-dynamic-complete-functions is the
2453 ;; hook to add completion functions to. Functions on this list should return
2454 ;; non-nil if completion occurs (i.e., further completion should not occur).
2455 ;; You could use comint-dynamic-simple-complete to do the bulk of the
2456 ;; completion job.
2458 (provide 'comint)
2460 ;; comint.el ends here