merge emacs-23
[bpt/emacs.git] / lisp / comint.el
1 ;;; comint.el --- general command interpreter in a window stuff
2
3 ;; Copyright (C) 1988, 1990, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5 ;; Free Software Foundation, Inc.
6
7 ;; Author: Olin Shivers <shivers@cs.cmu.edu>
8 ;; Simon Marshall <simon@gnu.org>
9 ;; Maintainer: FSF
10 ;; Keywords: processes
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26
27 ;;; Commentary:
28
29 ;; This file defines a general command-interpreter-in-a-buffer package
30 ;; (comint mode). The idea is that you can build specific process-in-a-buffer
31 ;; modes on top of comint mode -- e.g., Lisp, shell, scheme, T, soar, ....
32 ;; This way, all these specific packages share a common base functionality,
33 ;; and a common set of bindings, which makes them easier to use (and
34 ;; saves code, implementation time, etc., etc.).
35
36 ;; Several packages are already defined using comint mode:
37 ;; - shell.el defines a shell-in-a-buffer mode.
38 ;; - cmulisp.el defines a simple lisp-in-a-buffer mode.
39 ;;
40 ;; - The file cmuscheme.el defines a scheme-in-a-buffer mode.
41 ;; - The file tea.el tunes scheme and inferior-scheme modes for T.
42 ;; - The file soar.el tunes Lisp and inferior-lisp modes for Soar.
43 ;; - cmutex.el defines TeX and LaTeX modes that invoke TeX, LaTeX, BibTeX,
44 ;; previewers, and printers from within Emacs.
45 ;; - background.el allows csh-like job control inside Emacs.
46 ;; It is pretty easy to make new derived modes for other processes.
47
48 ;; For documentation on the functionality provided by Comint mode, and
49 ;; the hooks available for customising it, see the comments below.
50 ;; For further information on the standard derived modes (shell,
51 ;; inferior-lisp, inferior-scheme, ...), see the relevant source files.
52
53 ;; For hints on converting existing process modes (e.g., tex-mode,
54 ;; background, dbx, gdb, kermit, prolog, telnet) to use comint-mode
55 ;; instead of shell-mode, see the notes at the end of this file.
56
57 \f
58 ;; Brief Command Documentation:
59 ;;============================================================================
60 ;; Comint Mode Commands: (common to all derived modes, like shell & cmulisp
61 ;; mode)
62 ;;
63 ;; M-p comint-previous-input Cycle backwards in input history
64 ;; M-n comint-next-input Cycle forwards
65 ;; M-r comint-history-isearch-backward-regexp Isearch input regexp backward
66 ;; M-C-l comint-show-output Show last batch of process output
67 ;; RET comint-send-input
68 ;; C-d comint-delchar-or-maybe-eof Delete char unless at end of buff
69 ;; C-c C-a comint-bol-or-process-mark First time, move point to bol;
70 ;; second time, move to process-mark.
71 ;; C-c C-u comint-kill-input ^u
72 ;; C-c C-w backward-kill-word ^w
73 ;; C-c C-c comint-interrupt-subjob ^c
74 ;; C-c C-z comint-stop-subjob ^z
75 ;; C-c C-\ comint-quit-subjob ^\
76 ;; C-c C-o comint-delete-output Delete last batch of process output
77 ;; C-c C-r comint-show-output Show last batch of process output
78 ;; C-c C-l comint-dynamic-list-input-ring List input history
79 ;;
80 ;; Not bound by default in comint-mode (some are in shell mode)
81 ;; comint-run Run a program under comint-mode
82 ;; send-invisible Read a line w/o echo, and send to proc
83 ;; comint-dynamic-complete-filename Complete filename at point.
84 ;; comint-dynamic-list-filename-completions List completions in help buffer.
85 ;; comint-replace-by-expanded-filename Expand and complete filename at point;
86 ;; replace with expanded/completed name.
87 ;; comint-replace-by-expanded-history Expand history at point;
88 ;; replace with expanded name.
89 ;; comint-magic-space Expand history and add (a) space(s).
90 ;; comint-kill-subjob No mercy.
91 ;; comint-show-maximum-output Show as much output as possible.
92 ;; comint-continue-subjob Send CONT signal to buffer's process
93 ;; group. Useful if you accidentally
94 ;; suspend your process (with C-c C-z).
95 ;; comint-get-next-from-history Fetch successive input history lines
96 ;; comint-accumulate Combine lines to send them together
97 ;; as input.
98 ;; comint-goto-process-mark Move point to where process-mark is.
99 ;; comint-set-process-mark Set process-mark to point.
100
101 ;; comint-mode-hook is the Comint mode hook. Basically for your keybindings.
102
103 ;;; Code:
104
105 (require 'ring)
106 \f
107 ;; Buffer Local Variables:
108 ;;============================================================================
109 ;; Comint mode buffer local variables:
110 ;; comint-prompt-regexp string comint-bol uses to match prompt
111 ;; comint-delimiter-argument-list list For delimiters and arguments
112 ;; comint-last-input-start marker Handy if inferior always echoes
113 ;; comint-last-input-end marker For comint-delete-output command
114 ;; comint-input-ring-size integer For the input history
115 ;; comint-input-ring ring mechanism
116 ;; comint-input-ring-index number ...
117 ;; comint-save-input-ring-index number ...
118 ;; comint-input-autoexpand symbol ...
119 ;; comint-input-ignoredups boolean ...
120 ;; comint-dynamic-complete-functions hook For the completion mechanism
121 ;; comint-completion-fignore list ...
122 ;; comint-file-name-chars string ...
123 ;; comint-file-name-quote-list list ...
124 ;; comint-get-old-input function Hooks for specific
125 ;; comint-input-filter-functions hook process-in-a-buffer
126 ;; comint-output-filter-functions hook function modes.
127 ;; comint-preoutput-filter-functions hook
128 ;; comint-input-filter function ...
129 ;; comint-input-sender function ...
130 ;; comint-eol-on-send boolean ...
131 ;; comint-process-echoes boolean ...
132 ;; comint-scroll-to-bottom-on-input symbol For scroll behavior
133 ;; comint-move-point-for-output symbol ...
134 ;; comint-scroll-show-maximum-output boolean ...
135 ;; comint-accum-marker maker For comint-accumulate
136 ;;
137 ;; Comint mode non-buffer local variables:
138 ;; comint-completion-addsuffix boolean/cons For file name
139 ;; comint-completion-autolist boolean completion behavior
140 ;; comint-completion-recexact boolean ...
141
142 (defgroup comint nil
143 "General command interpreter in a window stuff."
144 :group 'processes)
145
146 (defgroup comint-completion nil
147 "Completion facilities in comint."
148 :group 'comint)
149
150 (defgroup comint-source nil
151 "Source finding facilities in comint."
152 :prefix "comint-"
153 :group 'comint)
154
155 (defvar comint-prompt-regexp "^"
156 "Regexp to recognize prompts in the inferior process.
157 Defaults to \"^\", the null string at BOL.
158
159 This variable is only used if the variable
160 `comint-use-prompt-regexp' is non-nil.
161
162 Good choices:
163 Canonical Lisp: \"^[^> \\n]*>+:? *\" (Lucid, franz, kcl, T, cscheme, oaklisp)
164 Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\"
165 franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\"
166 kcl: \"^>+ *\"
167 shell: \"^[^#$%>\\n]*[#$%>] *\"
168 T: \"^>+ *\"
169
170 This is a good thing to set in mode hooks.")
171
172 (defcustom comint-prompt-read-only nil
173 "If non-nil, the comint prompt is read only.
174 The read only region includes the newline before the prompt.
175 This does not affect existing prompts.
176 Certain derived modes may override this option.
177
178 If you set this option to t, then the safe way to temporarily
179 override the read-only-ness of comint prompts is to call
180 `comint-kill-whole-line' or `comint-kill-region' with no
181 narrowing in effect. This way you will be certain that none of
182 the remaining prompts will be accidentally messed up. You may
183 wish to put something like the following in your `.emacs' file:
184
185 \(add-hook 'comint-mode-hook
186 (lambda ()
187 (define-key comint-mode-map \"\\C-w\" 'comint-kill-region)
188 (define-key comint-mode-map [C-S-backspace]
189 'comint-kill-whole-line)))
190
191 If you sometimes use comint-mode on text-only terminals or with `emacs -nw',
192 you might wish to use another binding for `comint-kill-whole-line'."
193 :type 'boolean
194 :group 'comint
195 :version "22.1")
196
197 (defvar comint-delimiter-argument-list ()
198 "List of characters to recognize as separate arguments in input.
199 Strings comprising a character in this list will separate the arguments
200 surrounding them, and also be regarded as arguments in their own right (unlike
201 whitespace). See `comint-arguments'.
202 Defaults to the empty list.
203
204 For shells, a good value is (?\\| ?& ?< ?> ?\\( ?\\) ?;).
205
206 This is a good thing to set in mode hooks.")
207
208 (defcustom comint-input-autoexpand nil
209 "If non-nil, expand input command history references on completion.
210 This mirrors the optional behavior of tcsh (its autoexpand and histlist).
211
212 If the value is `input', then the expansion is seen on input.
213 If the value is `history', then the expansion is only when inserting
214 into the buffer's input ring. See also `comint-magic-space' and
215 `comint-dynamic-complete'.
216
217 This variable is buffer-local."
218 :type '(choice (const :tag "off" nil)
219 (const input)
220 (const history)
221 (other :tag "on" t))
222 :group 'comint)
223
224 (defface comint-highlight-input '((t (:weight bold)))
225 "Face to use to highlight user input."
226 :group 'comint)
227
228 (defface comint-highlight-prompt
229 '((((min-colors 88) (background dark)) (:foreground "cyan1"))
230 (((background dark)) (:foreground "cyan"))
231 (t (:foreground "dark blue")))
232 "Face to use to highlight prompts."
233 :group 'comint)
234
235 (defcustom comint-input-ignoredups nil
236 "If non-nil, don't add input matching the last on the input ring.
237 This mirrors the optional behavior of bash.
238
239 This variable is buffer-local."
240 :type 'boolean
241 :group 'comint)
242
243 (defcustom comint-input-ring-file-name nil
244 "If non-nil, name of the file to read/write input history.
245 See also `comint-read-input-ring' and `comint-write-input-ring'.
246
247 This variable is buffer-local, and is a good thing to set in mode hooks."
248 :type '(choice (const :tag "nil" nil)
249 file)
250 :group 'comint)
251
252 (defcustom comint-scroll-to-bottom-on-input nil
253 "Controls whether input to interpreter causes window to scroll.
254 If nil, then do not scroll. If t or `all', scroll all windows showing buffer.
255 If `this', scroll only the selected window.
256
257 The default is nil.
258
259 See `comint-preinput-scroll-to-bottom'. This variable is buffer-local."
260 :type '(choice (const :tag "off" nil)
261 (const t)
262 (const all)
263 (const this))
264 :group 'comint)
265
266 (defcustom comint-move-point-for-output nil
267 "Controls whether interpreter output moves point to the end of the output.
268 If nil, then output never moves point to the output.
269 (If the output occurs at point, it is inserted before point.)
270 If t or `all', move point in all windows showing the buffer.
271 If `this', move point only the selected window.
272 If `others', move point only in other windows, not in the selected window.
273
274 The default is nil.
275
276 See the variable `comint-scroll-show-maximum-output' and the function
277 `comint-postoutput-scroll-to-bottom'.
278 This variable is buffer-local in all Comint buffers."
279 :type '(choice (const :tag "off" nil)
280 (const t)
281 (const all)
282 (const this)
283 (const others))
284 :group 'comint)
285
286 (defvaralias 'comint-scroll-to-bottom-on-output 'comint-move-point-for-output)
287
288 (defcustom comint-scroll-show-maximum-output t
289 "Controls how to scroll due to interpreter output.
290 This variable applies when point is at the end of the buffer
291 \(either because it was originally there, or because
292 `comint-move-point-for-output' said to move it there)
293 and output from the subprocess is inserted.
294
295 Non-nil means scroll so that the window is full of text
296 and point is on the last line. A value of nil
297 means don't do anything special--scroll normally.
298
299 See also the variable `comint-move-point-for-output' and the function
300 `comint-postoutput-scroll-to-bottom'.
301 This variable is buffer-local in all Comint buffers."
302 :type 'boolean
303 :group 'comint)
304
305 (defcustom comint-buffer-maximum-size 1024
306 "The maximum size in lines for Comint buffers.
307 Comint buffers are truncated from the top to be no greater than this number, if
308 the function `comint-truncate-buffer' is on `comint-output-filter-functions'."
309 :type 'integer
310 :group 'comint)
311
312 ;; FIXME: this should be defcustom
313 (defcustom comint-input-ring-size 500
314 "Size of the input history ring in `comint-mode'."
315 :type 'integer
316 :group 'comint
317 :version "23.2")
318
319 (defvar comint-input-ring-separator "\n"
320 "Separator between commands in the history file.")
321
322 (defvar comint-input-history-ignore "^#"
323 "Regexp for history entries that should be ignored when Comint initializes.")
324
325 (defcustom comint-process-echoes nil
326 "If non-nil, assume that the subprocess echoes any input.
327 If so, delete one copy of the input so that only one copy eventually
328 appears in the buffer.
329
330 This variable is buffer-local."
331 :type 'boolean
332 :group 'comint)
333
334 ;; AIX puts the name of the person being su'd to in front of the prompt.
335 ;; kinit prints a prompt like `Password for devnull@GNU.ORG: '.
336 ;; ksu prints a prompt like `Kerberos password for devnull/root@GNU.ORG: '.
337 ;; ssh-add prints a prompt like `Enter passphrase: '.
338 ;; plink prints a prompt like `Passphrase for key "root@GNU.ORG": '.
339 ;; Ubuntu's sudo prompts like `[sudo] password for user:'
340 ;; Some implementations of passwd use "Password (again)" as the 2nd prompt.
341 ;; Something called "perforce" uses "Enter password:".
342 (defcustom comint-password-prompt-regexp
343 "\\(\\([Ee]nter \\(?:same \\|the \\)?\\|[Oo]ld \\|[Nn]ew \\|'s \\|login \\|\
344 Kerberos \\|CVS \\|UNIX \\| SMB \\|LDAP \\|\\[sudo] \\|^\\)\
345 \[Pp]assword\\( (again)\\)?\\|\
346 pass phrase\\|\\(Enter \\|Repeat \\|Bad \\)?[Pp]assphrase\\)\
347 \\(?:, try again\\)?\\(?: for [^:]+\\)?:\\s *\\'"
348 "Regexp matching prompts for passwords in the inferior process.
349 This is used by `comint-watch-for-password-prompt'."
350 :version "23.3"
351 :type 'regexp
352 :group 'comint)
353
354 ;; Here are the per-interpreter hooks.
355 (defvar comint-get-old-input (function comint-get-old-input-default)
356 "Function that returns old text in Comint mode.
357 This function is called when return is typed while the point is in old
358 text. It returns the text to be submitted as process input. The
359 default is `comint-get-old-input-default', which either grabs the
360 current input field or grabs the current line and strips off leading
361 text matching `comint-prompt-regexp', depending on the value of
362 `comint-use-prompt-regexp'.")
363
364 (defvar comint-dynamic-complete-functions
365 '(comint-replace-by-expanded-history comint-dynamic-complete-filename)
366 "List of functions called to perform completion.
367 Functions should return non-nil if completion was performed.
368 See also `comint-dynamic-complete'.
369
370 This is a good thing to set in mode hooks.")
371
372 (defvar comint-input-filter
373 (function (lambda (str) (not (string-match "\\`\\s *\\'" str))))
374 "Predicate for filtering additions to input history.
375 Takes one argument, the input. If non-nil, the input may be saved on the input
376 history list. Default is to save anything that isn't all whitespace.")
377
378 (defvar comint-input-filter-functions '()
379 "Abnormal hook run before input is sent to the process.
380 These functions get one argument, a string containing the text to send.")
381
382 ;;;###autoload
383 (defvar comint-output-filter-functions '(comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)
384 "Functions to call after output is inserted into the buffer.
385 One possible function is `comint-postoutput-scroll-to-bottom'.
386 These functions get one argument, a string containing the text as originally
387 inserted. Note that this might not be the same as the buffer contents between
388 `comint-last-output-start' and the buffer's `process-mark', if other filter
389 functions have already modified the buffer.
390
391 See also `comint-preoutput-filter-functions'.
392
393 You can use `add-hook' to add functions to this list
394 either globally or locally.")
395
396 (defvar comint-input-sender-no-newline nil
397 "Non-nil directs the `comint-input-sender' function not to send a newline.")
398
399 (defvar comint-input-sender (function comint-simple-send)
400 "Function to actually send to PROCESS the STRING submitted by user.
401 Usually this is just `comint-simple-send', but if your mode needs to
402 massage the input string, put a different function here.
403 `comint-simple-send' just sends the string plus a newline.
404 \(If `comint-input-sender-no-newline' is non-nil, it omits the newline.)
405 This is called from the user command `comint-send-input'.")
406
407 (defcustom comint-eol-on-send t
408 "Non-nil means go to the end of the line before sending input.
409 See `comint-send-input'."
410 :type 'boolean
411 :group 'comint)
412
413 ;; Note: If it is decided to purge comint-prompt-regexp from the source
414 ;; entirely, searching for uses of this variable will help to identify
415 ;; places that need attention.
416 (defcustom comint-use-prompt-regexp nil
417 "If non-nil, use `comint-prompt-regexp' to recognize prompts.
418 If nil, then program output and user-input are given different `field'
419 properties, which Emacs commands can use to distinguish them (in
420 particular, common movement commands such as `beginning-of-line'
421 respect field boundaries in a natural way)."
422 :type 'boolean
423 :group 'comint)
424
425 ;; Autoload is necessary for Custom to recognize old alias.
426 ;;;###autoload
427 (define-obsolete-variable-alias 'comint-use-prompt-regexp-instead-of-fields
428 'comint-use-prompt-regexp "22.1")
429
430 (defcustom comint-mode-hook nil
431 "Hook run upon entry to `comint-mode'.
432 This is run before the process is cranked up."
433 :type 'hook
434 :group 'comint)
435
436 (defcustom comint-exec-hook '()
437 "Hook run each time a process is exec'd by `comint-exec'.
438 This is called after the process is cranked up. It is useful for things that
439 must be done each time a process is executed in a Comint mode buffer (e.g.,
440 `(process-kill-without-query)'). In contrast, the `comint-mode-hook' is only
441 executed once when the buffer is created."
442 :type 'hook
443 :group 'comint)
444
445 (defvar comint-mode-map
446 (let ((map (make-sparse-keymap)))
447 ;; Keys:
448 (define-key map "\ep" 'comint-previous-input)
449 (define-key map "\en" 'comint-next-input)
450 (define-key map [C-up] 'comint-previous-input)
451 (define-key map [C-down] 'comint-next-input)
452 (define-key map "\er" 'comint-history-isearch-backward-regexp)
453 (define-key map [?\C-c ?\M-r] 'comint-previous-matching-input-from-input)
454 (define-key map [?\C-c ?\M-s] 'comint-next-matching-input-from-input)
455 (define-key map "\e\C-l" 'comint-show-output)
456 (define-key map "\C-m" 'comint-send-input)
457 (define-key map "\C-d" 'comint-delchar-or-maybe-eof)
458 ;; The following two are standardly aliased to C-d,
459 ;; but they should never do EOF, just delete.
460 (define-key map [delete] 'delete-char)
461 (define-key map [kp-delete] 'delete-char)
462 (define-key map "\C-c " 'comint-accumulate)
463 (define-key map "\C-c\C-x" 'comint-get-next-from-history)
464 (define-key map "\C-c\C-a" 'comint-bol-or-process-mark)
465 (define-key map "\C-c\C-u" 'comint-kill-input)
466 (define-key map "\C-c\C-w" 'backward-kill-word)
467 (define-key map "\C-c\C-c" 'comint-interrupt-subjob)
468 (define-key map "\C-c\C-z" 'comint-stop-subjob)
469 (define-key map "\C-c\C-\\" 'comint-quit-subjob)
470 (define-key map "\C-c\C-m" 'comint-copy-old-input)
471 (define-key map "\C-c\C-o" 'comint-delete-output)
472 (define-key map "\C-c\C-r" 'comint-show-output)
473 (define-key map "\C-c\C-e" 'comint-show-maximum-output)
474 (define-key map "\C-c\C-l" 'comint-dynamic-list-input-ring)
475 (define-key map "\C-c\C-n" 'comint-next-prompt)
476 (define-key map "\C-c\C-p" 'comint-previous-prompt)
477 (define-key map "\C-c\C-d" 'comint-send-eof)
478 (define-key map "\C-c\C-s" 'comint-write-output)
479 (define-key map "\C-c." 'comint-insert-previous-argument)
480 ;; Mouse Buttons:
481 (define-key map [mouse-2] 'comint-insert-input)
482 ;; Menu bars:
483 ;; completion:
484 (define-key map [menu-bar completion]
485 (cons "Complete" (make-sparse-keymap "Complete")))
486 (define-key map [menu-bar completion complete-expand]
487 '("Expand File Name" . comint-replace-by-expanded-filename))
488 (define-key map [menu-bar completion complete-listing]
489 '("File Completion Listing" . comint-dynamic-list-filename-completions))
490 (define-key map [menu-bar completion complete-file]
491 '("Complete File Name" . comint-dynamic-complete-filename))
492 (define-key map [menu-bar completion complete]
493 '("Complete Before Point" . comint-dynamic-complete))
494 ;; Input history:
495 (define-key map [menu-bar inout]
496 (cons "In/Out" (make-sparse-keymap "In/Out")))
497 (define-key map [menu-bar inout delete-output]
498 '("Delete Current Output Group" . comint-delete-output))
499 (define-key map [menu-bar inout append-output-to-file]
500 '("Append Current Output Group to File" . comint-append-output-to-file))
501 (define-key map [menu-bar inout write-output]
502 '("Write Current Output Group to File" . comint-write-output))
503 (define-key map [menu-bar inout next-prompt]
504 '("Forward Output Group" . comint-next-prompt))
505 (define-key map [menu-bar inout previous-prompt]
506 '("Backward Output Group" . comint-previous-prompt))
507 (define-key map [menu-bar inout show-maximum-output]
508 '("Show Maximum Output" . comint-show-maximum-output))
509 (define-key map [menu-bar inout show-output]
510 '("Show Current Output Group" . comint-show-output))
511 (define-key map [menu-bar inout kill-input]
512 '("Kill Current Input" . comint-kill-input))
513 (define-key map [menu-bar inout copy-input]
514 '("Copy Old Input" . comint-copy-old-input))
515 (define-key map [menu-bar inout history-isearch-backward-regexp]
516 '("Isearch Input Regexp Backward..." . comint-history-isearch-backward-regexp))
517 (define-key map [menu-bar inout history-isearch-backward]
518 '("Isearch Input String Backward..." . comint-history-isearch-backward))
519 (define-key map [menu-bar inout forward-matching-history]
520 '("Forward Matching Input..." . comint-forward-matching-input))
521 (define-key map [menu-bar inout backward-matching-history]
522 '("Backward Matching Input..." . comint-backward-matching-input))
523 (define-key map [menu-bar inout next-matching-history]
524 '("Next Matching Input..." . comint-next-matching-input))
525 (define-key map [menu-bar inout previous-matching-history]
526 '("Previous Matching Input..." . comint-previous-matching-input))
527 (define-key map [menu-bar inout next-matching-history-from-input]
528 '("Next Matching Current Input" . comint-next-matching-input-from-input))
529 (define-key map [menu-bar inout previous-matching-history-from-input]
530 '("Previous Matching Current Input" . comint-previous-matching-input-from-input))
531 (define-key map [menu-bar inout next-history]
532 '("Next Input" . comint-next-input))
533 (define-key map [menu-bar inout previous-history]
534 '("Previous Input" . comint-previous-input))
535 (define-key map [menu-bar inout list-history]
536 '("List Input History" . comint-dynamic-list-input-ring))
537 (define-key map [menu-bar inout expand-history]
538 '("Expand History Before Point" . comint-replace-by-expanded-history))
539 ;; Signals
540 (let ((signals-map (make-sparse-keymap "Signals")))
541 (define-key map [menu-bar signals] (cons "Signals" signals-map))
542 (define-key signals-map [eof] '("EOF" . comint-send-eof))
543 (define-key signals-map [kill] '("KILL" . comint-kill-subjob))
544 (define-key signals-map [quit] '("QUIT" . comint-quit-subjob))
545 (define-key signals-map [cont] '("CONT" . comint-continue-subjob))
546 (define-key signals-map [stop] '("STOP" . comint-stop-subjob))
547 (define-key signals-map [break] '("BREAK" . comint-interrupt-subjob)))
548 ;; Put them in the menu bar:
549 (setq menu-bar-final-items (append '(completion inout signals)
550 menu-bar-final-items))
551 map))
552
553 ;; Fixme: Is this still relevant?
554 (defvar comint-ptyp t
555 "Non-nil if communications via pty; false if by pipe. Buffer local.
556 This is to work around a bug in Emacs process signaling.")
557
558 (defvar comint-input-ring nil)
559 (defvar comint-last-input-start nil)
560 (defvar comint-last-input-end nil)
561 (defvar comint-last-output-start nil)
562 (defvar comint-input-ring-index nil
563 "Index of last matched history element.")
564 (defvar comint-matching-input-from-input-string ""
565 "Input previously used to match input history.")
566 (defvar comint-save-input-ring-index nil
567 "Last input ring index which you copied.
568 This is to support the command \\[comint-get-next-from-history].")
569
570 (defvar comint-accum-marker nil
571 "Non-nil if you are accumulating input lines to send as input together.
572 The command \\[comint-accumulate] sets this.")
573
574 (defvar comint-stored-incomplete-input nil
575 "Stored input for history cycling.")
576
577 (put 'comint-replace-by-expanded-history 'menu-enable 'comint-input-autoexpand)
578 (put 'comint-input-ring 'permanent-local t)
579 (put 'comint-input-ring-index 'permanent-local t)
580 (put 'comint-save-input-ring-index 'permanent-local t)
581 (put 'comint-input-autoexpand 'permanent-local t)
582 (put 'comint-input-filter-functions 'permanent-local t)
583 (put 'comint-output-filter-functions 'permanent-local t)
584 (put 'comint-preoutput-filter-functions 'permanent-local t)
585 (put 'comint-scroll-to-bottom-on-input 'permanent-local t)
586 (put 'comint-move-point-for-output 'permanent-local t)
587 (put 'comint-scroll-show-maximum-output 'permanent-local t)
588 (put 'comint-ptyp 'permanent-local t)
589
590 (put 'comint-mode 'mode-class 'special)
591
592 (define-derived-mode comint-mode fundamental-mode "Comint"
593 "Major mode for interacting with an inferior interpreter.
594 Interpreter name is same as buffer name, sans the asterisks.
595 Return at end of buffer sends line as input.
596 Return not at end copies rest of line to end and sends it.
597 Setting variable `comint-eol-on-send' means jump to the end of the line
598 before submitting new input.
599
600 This mode is customized to create major modes such as Inferior Lisp
601 mode, Shell mode, etc. This can be done by setting the hooks
602 `comint-input-filter-functions', `comint-input-filter', `comint-input-sender'
603 and `comint-get-old-input' to appropriate functions, and the variable
604 `comint-prompt-regexp' to the appropriate regular expression.
605
606 An input history is maintained of size `comint-input-ring-size', and
607 can be accessed with the commands \\[comint-next-input], \\[comint-previous-input], and \\[comint-dynamic-list-input-ring].
608 Input ring history expansion can be achieved with the commands
609 \\[comint-replace-by-expanded-history] or \\[comint-magic-space].
610 Input ring expansion is controlled by the variable `comint-input-autoexpand',
611 and addition is controlled by the variable `comint-input-ignoredups'.
612
613 Commands with no default key bindings include `send-invisible',
614 `comint-dynamic-complete', `comint-dynamic-list-filename-completions', and
615 `comint-magic-space'.
616
617 Input to, and output from, the subprocess can cause the window to scroll to
618 the end of the buffer. See variables `comint-output-filter-functions',
619 `comint-preoutput-filter-functions', `comint-scroll-to-bottom-on-input',
620 and `comint-move-point-for-output'.
621
622 If you accidentally suspend your process, use \\[comint-continue-subjob]
623 to continue it.
624
625 \\{comint-mode-map}
626
627 Entry to this mode runs the hooks on `comint-mode-hook'."
628 (setq mode-line-process '(":%s"))
629 (set (make-local-variable 'window-point-insertion-type) t)
630 (set (make-local-variable 'comint-last-input-start) (point-min-marker))
631 (set (make-local-variable 'comint-last-input-end) (point-min-marker))
632 (set (make-local-variable 'comint-last-output-start) (make-marker))
633 (make-local-variable 'comint-last-prompt-overlay)
634 (make-local-variable 'comint-prompt-regexp) ; Don't set; default
635 (make-local-variable 'comint-input-ring-size) ; ...to global val.
636 (make-local-variable 'comint-input-ring)
637 (make-local-variable 'comint-input-ring-file-name)
638 (or (and (boundp 'comint-input-ring) comint-input-ring)
639 (setq comint-input-ring (make-ring comint-input-ring-size)))
640 (make-local-variable 'comint-input-ring-index)
641 (make-local-variable 'comint-save-input-ring-index)
642 (or (and (boundp 'comint-input-ring-index) comint-input-ring-index)
643 (setq comint-input-ring-index nil))
644 (or (and (boundp 'comint-save-input-ring-index) comint-save-input-ring-index)
645 (setq comint-save-input-ring-index nil))
646 (make-local-variable 'comint-matching-input-from-input-string)
647 (make-local-variable 'comint-input-autoexpand)
648 (make-local-variable 'comint-input-ignoredups)
649 (make-local-variable 'comint-delimiter-argument-list)
650 (make-local-variable 'comint-completion-fignore)
651 (make-local-variable 'comint-get-old-input)
652 (make-local-variable 'comint-input-filter)
653 (make-local-variable 'comint-input-sender)
654 (make-local-variable 'comint-eol-on-send)
655 (make-local-variable 'comint-scroll-to-bottom-on-input)
656 (make-local-variable 'comint-move-point-for-output)
657 (make-local-variable 'comint-scroll-show-maximum-output)
658 (make-local-variable 'comint-stored-incomplete-input)
659 ;; Following disabled because it seems to break the case when
660 ;; comint-scroll-show-maximum-output is nil, and no-one can remember
661 ;; what the original problem was. If there are problems with point
662 ;; not going to the end, consider re-enabling this.
663 ;; http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00827.html
664 ;;
665 ;; This makes it really work to keep point at the bottom.
666 ;; (make-local-variable 'scroll-conservatively)
667 ;; (setq scroll-conservatively 10000)
668 (add-hook 'pre-command-hook 'comint-preinput-scroll-to-bottom t t)
669 (make-local-variable 'comint-ptyp)
670 (make-local-variable 'comint-process-echoes)
671 (make-local-variable 'comint-file-name-chars)
672 (make-local-variable 'comint-file-name-quote-list)
673 (make-local-variable 'comint-accum-marker)
674 (setq comint-accum-marker (make-marker))
675 (make-local-variable 'font-lock-defaults)
676 (setq font-lock-defaults '(nil t))
677 (add-hook 'change-major-mode-hook 'font-lock-defontify nil t)
678 (add-hook 'isearch-mode-hook 'comint-history-isearch-setup nil t)
679 ;; This behavior is not useful in comint buffers, and is annoying
680 (set (make-local-variable 'next-line-add-newlines) nil))
681
682 (defun comint-check-proc (buffer)
683 "Return non-nil if there is a living process associated w/buffer BUFFER.
684 Living means the status is `open', `run', or `stop'.
685 BUFFER can be either a buffer or the name of one."
686 (let ((proc (get-buffer-process buffer)))
687 (and proc (memq (process-status proc) '(open run stop)))))
688
689 ;;;###autoload
690 (defun make-comint-in-buffer (name buffer program &optional startfile &rest switches)
691 "Make a Comint process NAME in BUFFER, running PROGRAM.
692 If BUFFER is nil, it defaults to NAME surrounded by `*'s.
693 PROGRAM should be either a string denoting an executable program to create
694 via `start-file-process', or a cons pair of the form (HOST . SERVICE) denoting
695 a TCP connection to be opened via `open-network-stream'. If there is already
696 a running process in that buffer, it is not restarted. Optional fourth arg
697 STARTFILE is the name of a file, whose contents are sent to the
698 process as its initial input.
699
700 If PROGRAM is a string, any more args are arguments to PROGRAM.
701
702 Returns the (possibly newly created) process buffer."
703 (or (fboundp 'start-file-process)
704 (error "Multi-processing is not supported for this system"))
705 (setq buffer (get-buffer-create (or buffer (concat "*" name "*"))))
706 ;; If no process, or nuked process, crank up a new one and put buffer in
707 ;; comint mode. Otherwise, leave buffer and existing process alone.
708 (unless (comint-check-proc buffer)
709 (with-current-buffer buffer
710 (unless (derived-mode-p 'comint-mode)
711 (comint-mode))) ; Install local vars, mode, keymap, ...
712 (comint-exec buffer name program startfile switches))
713 buffer)
714
715 ;;;###autoload
716 (defun make-comint (name program &optional startfile &rest switches)
717 "Make a Comint process NAME in a buffer, running PROGRAM.
718 The name of the buffer is made by surrounding NAME with `*'s.
719 PROGRAM should be either a string denoting an executable program to create
720 via `start-file-process', or a cons pair of the form (HOST . SERVICE) denoting
721 a TCP connection to be opened via `open-network-stream'. If there is already
722 a running process in that buffer, it is not restarted. Optional third arg
723 STARTFILE is the name of a file, whose contents are sent to the
724 process as its initial input.
725
726 If PROGRAM is a string, any more args are arguments to PROGRAM.
727
728 Returns the (possibly newly created) process buffer."
729 (apply #'make-comint-in-buffer name nil program startfile switches))
730
731 ;;;###autoload
732 (defun comint-run (program)
733 "Run PROGRAM in a Comint buffer and switch to it.
734 The buffer name is made by surrounding the file name of PROGRAM with `*'s.
735 The file name is used to make a symbol name, such as `comint-sh-hook', and any
736 hooks on this symbol are run in the buffer.
737 See `make-comint' and `comint-exec'."
738 (interactive "sRun program: ")
739 (let ((name (file-name-nondirectory program)))
740 (switch-to-buffer (make-comint name program))
741 (run-hooks (intern-soft (concat "comint-" name "-hook")))))
742
743 (defun comint-exec (buffer name command startfile switches)
744 "Start up a process named NAME in buffer BUFFER for Comint modes.
745 Runs the given COMMAND with SWITCHES, and initial input from STARTFILE.
746 Blasts any old process running in the buffer. Doesn't set the buffer mode.
747 You can use this to cheaply run a series of processes in the same Comint
748 buffer. The hook `comint-exec-hook' is run after each exec."
749 (with-current-buffer buffer
750 (let ((proc (get-buffer-process buffer))) ; Blast any old process.
751 (if proc (delete-process proc)))
752 ;; Crank up a new process
753 (let ((proc
754 (if (consp command)
755 (open-network-stream name buffer (car command) (cdr command))
756 (comint-exec-1 name buffer command switches))))
757 (set-process-filter proc 'comint-output-filter)
758 (make-local-variable 'comint-ptyp)
759 (setq comint-ptyp process-connection-type) ; t if pty, nil if pipe.
760 ;; Jump to the end, and set the process mark.
761 (goto-char (point-max))
762 (set-marker (process-mark proc) (point))
763 ;; Feed it the startfile.
764 (cond (startfile
765 ;;This is guaranteed to wait long enough
766 ;;but has bad results if the comint does not prompt at all
767 ;; (while (= size (buffer-size))
768 ;; (sleep-for 1))
769 ;;I hope 1 second is enough!
770 (sleep-for 1)
771 (goto-char (point-max))
772 (insert-file-contents startfile)
773 (setq startfile (buffer-substring (point) (point-max)))
774 (delete-region (point) (point-max))
775 (comint-send-string proc startfile)))
776 (run-hooks 'comint-exec-hook)
777 buffer)))
778
779 ;; This auxiliary function cranks up the process for comint-exec in
780 ;; the appropriate environment.
781
782 (defun comint-exec-1 (name buffer command switches)
783 (let ((process-environment
784 (nconc
785 ;; If using termcap, we specify `emacs' as the terminal type
786 ;; because that lets us specify a width.
787 ;; If using terminfo, we specify `dumb' because that is
788 ;; a defined terminal type. `emacs' is not a defined terminal type
789 ;; and there is no way for us to define it here.
790 ;; Some programs that use terminfo get very confused
791 ;; if TERM is not a valid terminal type.
792 ;; ;; There is similar code in compile.el.
793 (if (and (boundp 'system-uses-terminfo) system-uses-terminfo)
794 (list "TERM=dumb" "TERMCAP="
795 (format "COLUMNS=%d" (window-width)))
796 (list "TERM=emacs"
797 (format "TERMCAP=emacs:co#%d:tc=unknown:" (window-width))))
798 (unless (getenv "EMACS")
799 (list "EMACS=t"))
800 (list (format "INSIDE_EMACS=%s,comint" emacs-version))
801 process-environment))
802 (default-directory
803 (if (file-accessible-directory-p default-directory)
804 default-directory
805 "/"))
806 proc decoding encoding changed)
807 (let ((exec-path (if (and command (file-name-directory command))
808 ;; If the command has slashes, make sure we
809 ;; first look relative to the current directory.
810 (cons default-directory exec-path) exec-path)))
811 (setq proc (apply 'start-file-process name buffer command switches)))
812 ;; Some file name handler cannot start a process, fe ange-ftp.
813 (unless (processp proc) (error "No process started"))
814 (let ((coding-systems (process-coding-system proc)))
815 (setq decoding (car coding-systems)
816 encoding (cdr coding-systems)))
817 ;; Even if start-file-process left the coding system for encoding data
818 ;; sent from the process undecided, we had better use the same one
819 ;; as what we use for decoding. But, we should suppress EOL
820 ;; conversion.
821 (if (and decoding (not encoding))
822 (setq encoding (coding-system-change-eol-conversion decoding 'unix)
823 changed t))
824 (if changed
825 (set-process-coding-system proc decoding encoding))
826 proc))
827
828 (defun comint-insert-input (event)
829 "In a Comint buffer, set the current input to the previous input at point.
830 If there is no previous input at point, run the command specified
831 by the global keymap (usually `mouse-yank-at-click')."
832 (interactive "e")
833 ;; Don't set the mouse here, since it may otherwise change the behavior
834 ;; of the command on which we fallback if there's no field at point.
835 ;; (mouse-set-point event)
836 (let ((pos (posn-point (event-end event)))
837 field input)
838 (with-selected-window (posn-window (event-end event))
839 ;; If pos is at the very end of a field, the mouse-click was
840 ;; probably outside (to the right) of the field.
841 (and (< pos (field-end pos))
842 (setq field (field-at-pos pos))
843 (setq input (field-string-no-properties pos))))
844 (if (or (null comint-accum-marker)
845 (not (eq field 'input)))
846 ;; Fall back to the global definition if (i) the selected
847 ;; buffer is not a comint buffer (which can happen if a
848 ;; non-comint window was selected and we clicked in a comint
849 ;; window), or (ii) there is no input at POS.
850 (let* ((keys (this-command-keys))
851 (last-key (and (vectorp keys) (aref keys (1- (length keys)))))
852 (fun (and last-key (lookup-key global-map (vector last-key)))))
853 (and fun (not (eq fun 'comint-insert-input))
854 (call-interactively fun)))
855 (with-selected-window (posn-window (event-end event))
856 ;; Otherwise, insert the previous input.
857 (goto-char (point-max))
858 ;; First delete any old unsent input at the end
859 (delete-region
860 (or (marker-position comint-accum-marker)
861 (process-mark (get-buffer-process (current-buffer))))
862 (point))
863 ;; Insert the input at point
864 (insert input)))))
865 \f
866 ;; Input history processing in a buffer
867 ;; ===========================================================================
868 ;; Useful input history functions, courtesy of the Ergo group.
869
870 ;; Eleven commands:
871 ;; comint-dynamic-list-input-ring List history in help buffer.
872 ;; comint-previous-input Previous input...
873 ;; comint-previous-matching-input ...matching a string.
874 ;; comint-previous-matching-input-from-input ... matching the current input.
875 ;; comint-next-input Next input...
876 ;; comint-next-matching-input ...matching a string.
877 ;; comint-next-matching-input-from-input ... matching the current input.
878 ;; comint-backward-matching-input Backwards input...
879 ;; comint-forward-matching-input ...matching a string.
880 ;; comint-replace-by-expanded-history Expand history at point;
881 ;; replace with expanded history.
882 ;; comint-magic-space Expand history and insert space.
883 ;;
884 ;; Three functions:
885 ;; comint-read-input-ring Read into comint-input-ring...
886 ;; comint-write-input-ring Write to comint-input-ring-file-name.
887 ;; comint-replace-by-expanded-history-before-point Workhorse function.
888
889 (defun comint-read-input-ring (&optional silent)
890 "Set the buffer's `comint-input-ring' from a history file.
891 The name of the file is given by the variable `comint-input-ring-file-name'.
892 The history ring is of size `comint-input-ring-size', regardless of file size.
893 If `comint-input-ring-file-name' is nil this function does nothing.
894
895 If the optional argument SILENT is non-nil, we say nothing about a
896 failure to read the history file.
897
898 This function is useful for major mode commands and mode hooks.
899
900 The commands stored in the history file are separated by the
901 `comint-input-ring-separator', and entries that match
902 `comint-input-history-ignore' are ignored. The most recent command
903 comes last.
904
905 See also `comint-input-ignoredups' and `comint-write-input-ring'."
906 (cond ((or (null comint-input-ring-file-name)
907 (equal comint-input-ring-file-name ""))
908 nil)
909 ((not (file-readable-p comint-input-ring-file-name))
910 (or silent
911 (message "Cannot read history file %s"
912 comint-input-ring-file-name)))
913 (t
914 (let* ((history-buf (get-buffer-create " *temp*"))
915 (file comint-input-ring-file-name)
916 (count 0)
917 (size comint-input-ring-size)
918 (ring (make-ring size)))
919 (unwind-protect
920 (with-current-buffer history-buf
921 (widen)
922 (erase-buffer)
923 (insert-file-contents file)
924 ;; Save restriction in case file is already visited...
925 ;; Watch for those date stamps in history files!
926 (goto-char (point-max))
927 (let (start end history)
928 (while (and (< count size)
929 (re-search-backward comint-input-ring-separator
930 nil t)
931 (setq end (match-beginning 0)))
932 (setq start
933 (if (re-search-backward comint-input-ring-separator
934 nil t)
935 (match-end 0)
936 (point-min)))
937 (setq history (buffer-substring start end))
938 (goto-char start)
939 (if (and (not (string-match comint-input-history-ignore
940 history))
941 (or (null comint-input-ignoredups)
942 (ring-empty-p ring)
943 (not (string-equal (ring-ref ring 0)
944 history))))
945 (progn
946 (ring-insert-at-beginning ring history)
947 (setq count (1+ count)))))))
948 (kill-buffer history-buf))
949 (setq comint-input-ring ring
950 comint-input-ring-index nil)))))
951
952 (defun comint-write-input-ring ()
953 "Writes the buffer's `comint-input-ring' to a history file.
954 The name of the file is given by the variable `comint-input-ring-file-name'.
955 The original contents of the file are lost if `comint-input-ring' is not empty.
956 If `comint-input-ring-file-name' is nil this function does nothing.
957
958 Useful within process sentinels.
959
960 See also `comint-read-input-ring'."
961 (cond ((or (null comint-input-ring-file-name)
962 (equal comint-input-ring-file-name "")
963 (null comint-input-ring) (ring-empty-p comint-input-ring))
964 nil)
965 ((not (file-writable-p comint-input-ring-file-name))
966 (message "Cannot write history file %s" comint-input-ring-file-name))
967 (t
968 (let* ((history-buf (get-buffer-create " *Temp Input History*"))
969 (ring comint-input-ring)
970 (file comint-input-ring-file-name)
971 (index (ring-length ring)))
972 ;; Write it all out into a buffer first. Much faster, but messier,
973 ;; than writing it one line at a time.
974 (with-current-buffer history-buf
975 (erase-buffer)
976 (while (> index 0)
977 (setq index (1- index))
978 (insert (ring-ref ring index) comint-input-ring-separator))
979 (write-region (buffer-string) nil file nil 'no-message)
980 (kill-buffer nil))))))
981
982
983 (defvar comint-dynamic-list-input-ring-window-conf)
984
985 (defun comint-dynamic-list-input-ring-select ()
986 "Choose the input history entry that point is in or next to."
987 (interactive)
988 (let ((buffer completion-reference-buffer)
989 beg end completion)
990 (if (and (not (eobp)) (get-text-property (point) 'mouse-face))
991 (setq end (point) beg (1+ (point))))
992 (if (and (not (bobp)) (get-text-property (1- (point)) 'mouse-face))
993 (setq end (1- (point)) beg (point)))
994 (if (null beg)
995 (error "No history entry here"))
996 (setq beg (previous-single-property-change beg 'mouse-face))
997 (setq end (or (next-single-property-change end 'mouse-face) (point-max)))
998 (setq completion (buffer-substring beg end))
999 (set-window-configuration comint-dynamic-list-input-ring-window-conf)
1000 (choose-completion-string completion buffer)))
1001
1002 (defun comint-dynamic-list-input-ring ()
1003 "List in help buffer the buffer's input history."
1004 (interactive)
1005 (if (or (not (ring-p comint-input-ring))
1006 (ring-empty-p comint-input-ring))
1007 (message "No history")
1008 (let ((history nil)
1009 (history-buffer " *Input History*")
1010 (index (1- (ring-length comint-input-ring)))
1011 (conf (current-window-configuration)))
1012 ;; We have to build up a list ourselves from the ring vector.
1013 (dotimes (index (ring-length comint-input-ring))
1014 (push (ring-ref comint-input-ring index) history))
1015 ;; Show them most-recent-first.
1016 (setq history (nreverse history))
1017 ;; Change "completion" to "history reference"
1018 ;; to make the display accurate.
1019 (with-output-to-temp-buffer history-buffer
1020 (display-completion-list history)
1021 (set-buffer history-buffer)
1022 (let ((keymap (make-sparse-keymap)))
1023 (set-keymap-parent keymap (current-local-map))
1024 (define-key keymap "\C-m" 'comint-dynamic-list-input-ring-select)
1025 (use-local-map keymap))
1026 (forward-line 3)
1027 (while (search-backward "completion" nil 'move)
1028 (replace-match "history reference")))
1029 (sit-for 0)
1030 (message "Hit space to flush")
1031 (setq comint-dynamic-list-input-ring-window-conf conf)
1032 (let ((ch (read-event)))
1033 (if (eq ch ?\s)
1034 (set-window-configuration conf)
1035 (setq unread-command-events (list ch)))))))
1036
1037
1038 (defun comint-regexp-arg (prompt)
1039 "Return list of regexp and prefix arg using PROMPT."
1040 (let* (;; Don't clobber this.
1041 (last-command last-command)
1042 (regexp (read-from-minibuffer prompt nil nil nil
1043 'minibuffer-history-search-history)))
1044 ;; If the user didn't enter anything, nothing is added to m-h-s-h.
1045 ;; Use the previous search regexp, if there is one.
1046 (list (if (string-equal regexp "")
1047 (or (car minibuffer-history-search-history)
1048 regexp)
1049 regexp)
1050 (prefix-numeric-value current-prefix-arg))))
1051
1052 (defun comint-search-arg (arg)
1053 ;; First make sure there is a ring and that we are after the process mark
1054 (cond ((not (comint-after-pmark-p))
1055 (error "Not at command line"))
1056 ((or (null comint-input-ring)
1057 (ring-empty-p comint-input-ring))
1058 (error "Empty input ring"))
1059 ((zerop arg)
1060 ;; arg of zero resets search from beginning, and uses arg of 1
1061 (setq comint-input-ring-index nil)
1062 1)
1063 (t
1064 arg)))
1065
1066 (defun comint-restore-input ()
1067 "Restore unfinished input."
1068 (interactive)
1069 (when comint-input-ring-index
1070 (comint-delete-input)
1071 (when (> (length comint-stored-incomplete-input) 0)
1072 (insert comint-stored-incomplete-input)
1073 (message "Input restored"))
1074 (setq comint-input-ring-index nil)))
1075
1076 (defun comint-search-start (arg)
1077 "Index to start a directional search, starting at `comint-input-ring-index'."
1078 (if comint-input-ring-index
1079 ;; If a search is running, offset by 1 in direction of arg
1080 (mod (+ comint-input-ring-index (if (> arg 0) 1 -1))
1081 (ring-length comint-input-ring))
1082 ;; For a new search, start from beginning or end, as appropriate
1083 (if (>= arg 0)
1084 0 ; First elt for forward search
1085 (1- (ring-length comint-input-ring))))) ; Last elt for backward search
1086
1087 (defun comint-previous-input-string (arg)
1088 "Return the string ARG places along the input ring.
1089 Moves relative to `comint-input-ring-index'."
1090 (ring-ref comint-input-ring (if comint-input-ring-index
1091 (mod (+ arg comint-input-ring-index)
1092 (ring-length comint-input-ring))
1093 arg)))
1094
1095 (defun comint-previous-input (arg)
1096 "Cycle backwards through input history, saving input."
1097 (interactive "*p")
1098 (if (and comint-input-ring-index
1099 (or ;; leaving the "end" of the ring
1100 (and (< arg 0) ; going down
1101 (eq comint-input-ring-index 0))
1102 (and (> arg 0) ; going up
1103 (eq comint-input-ring-index
1104 (1- (ring-length comint-input-ring)))))
1105 comint-stored-incomplete-input)
1106 (comint-restore-input)
1107 (comint-previous-matching-input "." arg)))
1108
1109 (defun comint-next-input (arg)
1110 "Cycle forwards through input history."
1111 (interactive "*p")
1112 (comint-previous-input (- arg)))
1113
1114 (defun comint-previous-matching-input-string (regexp arg)
1115 "Return the string matching REGEXP ARG places along the input ring.
1116 Moves relative to `comint-input-ring-index'."
1117 (let* ((pos (comint-previous-matching-input-string-position regexp arg)))
1118 (if pos (ring-ref comint-input-ring pos))))
1119
1120 (defun comint-previous-matching-input-string-position (regexp arg &optional start)
1121 "Return the index matching REGEXP ARG places along the input ring.
1122 Moves relative to START, or `comint-input-ring-index'."
1123 (if (or (not (ring-p comint-input-ring))
1124 (ring-empty-p comint-input-ring))
1125 (error "No history"))
1126 (let* ((len (ring-length comint-input-ring))
1127 (motion (if (> arg 0) 1 -1))
1128 (n (mod (- (or start (comint-search-start arg)) motion) len))
1129 (tried-each-ring-item nil)
1130 (prev nil))
1131 ;; Do the whole search as many times as the argument says.
1132 (while (and (/= arg 0) (not tried-each-ring-item))
1133 ;; Step once.
1134 (setq prev n
1135 n (mod (+ n motion) len))
1136 ;; If we haven't reached a match, step some more.
1137 (while (and (< n len) (not tried-each-ring-item)
1138 (not (string-match regexp (ring-ref comint-input-ring n))))
1139 (setq n (mod (+ n motion) len)
1140 ;; If we have gone all the way around in this search.
1141 tried-each-ring-item (= n prev)))
1142 (setq arg (if (> arg 0) (1- arg) (1+ arg))))
1143 ;; Now that we know which ring element to use, if we found it, return that.
1144 (if (string-match regexp (ring-ref comint-input-ring n))
1145 n)))
1146
1147 (defun comint-delete-input ()
1148 "Delete all input between accumulation or process mark and point."
1149 (delete-region
1150 ;; Can't use kill-region as it sets this-command
1151 (or (marker-position comint-accum-marker)
1152 (process-mark (get-buffer-process (current-buffer))))
1153 (point-max)))
1154
1155 (defun comint-previous-matching-input (regexp n)
1156 "Search backwards through input history for match for REGEXP.
1157 \(Previous history elements are earlier commands.)
1158 With prefix argument N, search for Nth previous match.
1159 If N is negative, find the next or Nth next match."
1160 (interactive (comint-regexp-arg "Previous input matching (regexp): "))
1161 (setq n (comint-search-arg n))
1162 (let ((pos (comint-previous-matching-input-string-position regexp n)))
1163 ;; Has a match been found?
1164 (if (null pos)
1165 (error "Not found")
1166 ;; If leaving the edit line, save partial input
1167 (if (null comint-input-ring-index) ;not yet on ring
1168 (setq comint-stored-incomplete-input
1169 (funcall comint-get-old-input)))
1170 (setq comint-input-ring-index pos)
1171 (message "History item: %d" (1+ pos))
1172 (comint-delete-input)
1173 (insert (ring-ref comint-input-ring pos)))))
1174
1175 (defun comint-next-matching-input (regexp n)
1176 "Search forwards through input history for match for REGEXP.
1177 \(Later history elements are more recent commands.)
1178 With prefix argument N, search for Nth following match.
1179 If N is negative, find the previous or Nth previous match."
1180 (interactive (comint-regexp-arg "Next input matching (regexp): "))
1181 (comint-previous-matching-input regexp (- n)))
1182
1183 (defun comint-previous-matching-input-from-input (n)
1184 "Search backwards through input history for match for current input.
1185 \(Previous history elements are earlier commands.)
1186 With prefix argument N, search for Nth previous match.
1187 If N is negative, search forwards for the -Nth following match."
1188 (interactive "p")
1189 (if (not (memq last-command '(comint-previous-matching-input-from-input
1190 comint-next-matching-input-from-input)))
1191 ;; Starting a new search
1192 (setq comint-matching-input-from-input-string
1193 (buffer-substring
1194 (or (marker-position comint-accum-marker)
1195 (process-mark (get-buffer-process (current-buffer))))
1196 (point))
1197 comint-input-ring-index nil))
1198 (comint-previous-matching-input
1199 (concat "^" (regexp-quote comint-matching-input-from-input-string))
1200 n))
1201
1202 (defun comint-next-matching-input-from-input (n)
1203 "Search forwards through input history for match for current input.
1204 \(Following history elements are more recent commands.)
1205 With prefix argument N, search for Nth following match.
1206 If N is negative, search backwards for the -Nth previous match."
1207 (interactive "p")
1208 (comint-previous-matching-input-from-input (- n)))
1209
1210
1211 (defun comint-replace-by-expanded-history (&optional silent start)
1212 "Expand input command history references before point.
1213 Expansion is dependent on the value of `comint-input-autoexpand'.
1214
1215 This function depends on the buffer's idea of the input history, which may not
1216 match the command interpreter's idea, assuming it has one.
1217
1218 Assumes history syntax is like typical Un*x shells'. However, since Emacs
1219 cannot know the interpreter's idea of input line numbers, assuming it has one,
1220 it cannot expand absolute input line number references.
1221
1222 If the optional argument SILENT is non-nil, never complain
1223 even if history reference seems erroneous.
1224
1225 If the optional argument START is non-nil, that specifies the
1226 start of the text to scan for history references, rather
1227 than the logical beginning of line.
1228
1229 See `comint-magic-space' and `comint-replace-by-expanded-history-before-point'.
1230
1231 Returns t if successful."
1232 (interactive)
1233 (if (and comint-input-autoexpand
1234 (if comint-use-prompt-regexp
1235 ;; Use comint-prompt-regexp
1236 (save-excursion
1237 (beginning-of-line)
1238 (looking-at (concat comint-prompt-regexp "!\\|\\^")))
1239 ;; Use input fields. User input that hasn't been entered
1240 ;; yet, at the end of the buffer, has a nil `field' property.
1241 (and (null (get-char-property (point) 'field))
1242 (string-match "!\\|^\\^" (field-string)))))
1243 ;; Looks like there might be history references in the command.
1244 (let ((previous-modified-tick (buffer-modified-tick)))
1245 (comint-replace-by-expanded-history-before-point silent start)
1246 (/= previous-modified-tick (buffer-modified-tick)))))
1247
1248
1249 (defun comint-replace-by-expanded-history-before-point (silent &optional start)
1250 "Expand directory stack reference before point.
1251 See `comint-replace-by-expanded-history'. Returns t if successful.
1252
1253 If the optional argument START is non-nil, that specifies the
1254 start of the text to scan for history references, rather
1255 than the logical beginning of line."
1256 (save-excursion
1257 (let ((toend (- (line-end-position) (point)))
1258 (start (or start (comint-line-beginning-position))))
1259 (goto-char start)
1260 (while (progn
1261 (skip-chars-forward "^!^" (- (line-end-position) toend))
1262 (< (point) (- (line-end-position) toend)))
1263 ;; This seems a bit complex. We look for references such as !!, !-num,
1264 ;; !foo, !?foo, !{bar}, !?{bar}, ^oh, ^my^, ^god^it, ^never^ends^.
1265 ;; If that wasn't enough, the plings can be suffixed with argument
1266 ;; range specifiers.
1267 ;; Argument ranges are complex too, so we hive off the input line,
1268 ;; referenced with plings, with the range string to `comint-args'.
1269 (setq comint-input-ring-index nil)
1270 (cond ((or (= (preceding-char) ?\\)
1271 (comint-within-quotes start (point)))
1272 ;; The history is quoted, or we're in quotes.
1273 (goto-char (1+ (point))))
1274 ((looking-at "![0-9]+\\($\\|[^-]\\)")
1275 ;; We cannot know the interpreter's idea of input line numbers.
1276 (goto-char (match-end 0))
1277 (message "Absolute reference cannot be expanded"))
1278 ((looking-at "!-\\([0-9]+\\)\\(:?[0-9^$*-]+\\)?")
1279 ;; Just a number of args from `number' lines backward.
1280 (let ((number (1- (string-to-number
1281 (buffer-substring (match-beginning 1)
1282 (match-end 1))))))
1283 (if (<= number (ring-length comint-input-ring))
1284 (progn
1285 (replace-match
1286 (comint-args (comint-previous-input-string number)
1287 (match-beginning 2) (match-end 2))
1288 t t)
1289 (setq comint-input-ring-index number)
1290 (message "History item: %d" (1+ number)))
1291 (goto-char (match-end 0))
1292 (message "Relative reference exceeds input history size"))))
1293 ((or (looking-at "!!?:?\\([0-9^$*-]+\\)") (looking-at "!!"))
1294 ;; Just a number of args from the previous input line.
1295 (replace-match (comint-previous-input-string 0) t t)
1296 (message "History item: previous"))
1297 ((looking-at
1298 "!\\??\\({\\(.+\\)}\\|\\(\\sw+\\)\\)\\(:?[0-9^$*-]+\\)?")
1299 ;; Most recent input starting with or containing (possibly
1300 ;; protected) string, maybe just a number of args. Phew.
1301 (let* ((mb1 (match-beginning 1)) (me1 (match-end 1))
1302 (mb2 (match-beginning 2)) (me2 (match-end 2))
1303 (exp (buffer-substring (or mb2 mb1) (or me2 me1)))
1304 (pref (if (save-match-data (looking-at "!\\?")) "" "^"))
1305 (pos (save-match-data
1306 (comint-previous-matching-input-string-position
1307 (concat pref (regexp-quote exp)) 1))))
1308 (if (null pos)
1309 (progn
1310 (goto-char (match-end 0))
1311 (or silent
1312 (progn (message "Not found")
1313 (ding))))
1314 (setq comint-input-ring-index pos)
1315 (replace-match
1316 (comint-args (ring-ref comint-input-ring pos)
1317 (match-beginning 4) (match-end 4))
1318 t t)
1319 (message "History item: %d" (1+ pos)))))
1320 ((looking-at "\\^\\([^^]+\\)\\^?\\([^^]*\\)\\^?")
1321 ;; Quick substitution on the previous input line.
1322 (let ((old (buffer-substring (match-beginning 1) (match-end 1)))
1323 (new (buffer-substring (match-beginning 2) (match-end 2)))
1324 (pos nil))
1325 (replace-match (comint-previous-input-string 0) t t)
1326 (setq pos (point))
1327 (goto-char (match-beginning 0))
1328 (if (not (search-forward old pos t))
1329 (or silent
1330 (error "Not found"))
1331 (replace-match new t t)
1332 (message "History item: substituted"))))
1333 (t
1334 (forward-char 1)))))))
1335
1336
1337 (defun comint-magic-space (arg)
1338 "Expand input history references before point and insert ARG spaces.
1339 A useful command to bind to SPC. See `comint-replace-by-expanded-history'."
1340 (interactive "p")
1341 (comint-replace-by-expanded-history)
1342 (self-insert-command arg))
1343 \f
1344 ;; Isearch in comint input history
1345
1346 (defcustom comint-history-isearch nil
1347 "Non-nil to Isearch in input history only, not in comint buffer output.
1348 If t, usual Isearch keys like `C-r' and `C-M-r' in comint mode search
1349 in the input history.
1350 If `dwim', Isearch keys search in the input history only when initial
1351 point position is at the comint command line. When starting Isearch
1352 from other parts of the comint buffer, they search in the comint buffer.
1353 If nil, Isearch operates on the whole comint buffer."
1354 :type '(choice (const :tag "Don't search in input history" nil)
1355 (const :tag "When point is on command line initially, search history" dwim)
1356 (const :tag "Always search in input history" t))
1357 :group 'comint
1358 :version "23.2")
1359
1360 (defun comint-history-isearch-backward ()
1361 "Search for a string backward in input history using Isearch."
1362 (interactive)
1363 (let ((comint-history-isearch t))
1364 (isearch-backward)))
1365
1366 (defun comint-history-isearch-backward-regexp ()
1367 "Search for a regular expression backward in input history using Isearch."
1368 (interactive)
1369 (let ((comint-history-isearch t))
1370 (isearch-backward-regexp)))
1371
1372 (defvar comint-history-isearch-message-overlay nil)
1373 (make-variable-buffer-local 'comint-history-isearch-message-overlay)
1374
1375 (defun comint-history-isearch-setup ()
1376 "Set up a comint for using Isearch to search the input history.
1377 Intended to be added to `isearch-mode-hook' in `comint-mode'."
1378 (when (or (eq comint-history-isearch t)
1379 (and (eq comint-history-isearch 'dwim)
1380 ;; Point is at command line.
1381 (comint-after-pmark-p)))
1382 (setq isearch-message-prefix-add "history ")
1383 (set (make-local-variable 'isearch-search-fun-function)
1384 'comint-history-isearch-search)
1385 (set (make-local-variable 'isearch-message-function)
1386 'comint-history-isearch-message)
1387 (set (make-local-variable 'isearch-wrap-function)
1388 'comint-history-isearch-wrap)
1389 (set (make-local-variable 'isearch-push-state-function)
1390 'comint-history-isearch-push-state)
1391 (add-hook 'isearch-mode-end-hook 'comint-history-isearch-end nil t)))
1392
1393 (defun comint-history-isearch-end ()
1394 "Clean up the comint after terminating Isearch in comint."
1395 (if comint-history-isearch-message-overlay
1396 (delete-overlay comint-history-isearch-message-overlay))
1397 (setq isearch-message-prefix-add nil)
1398 (setq isearch-search-fun-function nil)
1399 (setq isearch-message-function nil)
1400 (setq isearch-wrap-function nil)
1401 (setq isearch-push-state-function nil)
1402 (remove-hook 'isearch-mode-end-hook 'comint-history-isearch-end t))
1403
1404 (defun comint-goto-input (pos)
1405 "Put input history item of the absolute history position POS."
1406 ;; If leaving the edit line, save partial unfinished input.
1407 (if (null comint-input-ring-index)
1408 (setq comint-stored-incomplete-input
1409 (funcall comint-get-old-input)))
1410 (setq comint-input-ring-index pos)
1411 (comint-delete-input)
1412 (if (and pos (not (ring-empty-p comint-input-ring)))
1413 (insert (ring-ref comint-input-ring pos))
1414 ;; Restore partial unfinished input.
1415 (when (> (length comint-stored-incomplete-input) 0)
1416 (insert comint-stored-incomplete-input))))
1417
1418 (defun comint-history-isearch-search ()
1419 "Return the proper search function, for Isearch in input history."
1420 (cond
1421 (isearch-word
1422 (if isearch-forward 'word-search-forward 'word-search-backward))
1423 (t
1424 (lambda (string bound noerror)
1425 (let ((search-fun
1426 ;; Use standard functions to search within comint text
1427 (cond
1428 (isearch-regexp
1429 (if isearch-forward 're-search-forward 're-search-backward))
1430 (t
1431 (if isearch-forward 'search-forward 'search-backward))))
1432 found)
1433 ;; Avoid lazy-highlighting matches in the comint prompt and in the
1434 ;; output when searching forward. Lazy-highlight calls this lambda
1435 ;; with the bound arg, so skip the prompt and the output.
1436 (if (and bound isearch-forward (not (comint-after-pmark-p)))
1437 (goto-char (process-mark (get-buffer-process (current-buffer)))))
1438 (or
1439 ;; 1. First try searching in the initial comint text
1440 (funcall search-fun string
1441 (if isearch-forward bound (comint-line-beginning-position))
1442 noerror)
1443 ;; 2. If the above search fails, start putting next/prev history
1444 ;; elements in the comint successively, and search the string
1445 ;; in them. Do this only when bound is nil (i.e. not while
1446 ;; lazy-highlighting search strings in the current comint text).
1447 (unless bound
1448 (condition-case nil
1449 (progn
1450 (while (not found)
1451 (cond (isearch-forward
1452 ;; Signal an error here explicitly, because
1453 ;; `comint-next-input' doesn't signal an error.
1454 (when (null comint-input-ring-index)
1455 (error "End of history; no next item"))
1456 (comint-next-input 1)
1457 (goto-char (comint-line-beginning-position)))
1458 (t
1459 ;; Signal an error here explicitly, because
1460 ;; `comint-previous-input' doesn't signal an error.
1461 (when (eq comint-input-ring-index
1462 (1- (ring-length comint-input-ring)))
1463 (error "Beginning of history; no preceding item"))
1464 (comint-previous-input 1)
1465 (goto-char (point-max))))
1466 (setq isearch-barrier (point) isearch-opoint (point))
1467 ;; After putting the next/prev history element, search
1468 ;; the string in them again, until comint-next-input
1469 ;; or comint-previous-input raises an error at the
1470 ;; beginning/end of history.
1471 (setq found (funcall search-fun string
1472 (unless isearch-forward
1473 ;; For backward search, don't search
1474 ;; in the comint prompt
1475 (comint-line-beginning-position))
1476 noerror)))
1477 ;; Return point of the new search result
1478 (point))
1479 ;; Return nil on the error "no next/preceding item"
1480 (error nil)))))))))
1481
1482 (defun comint-history-isearch-message (&optional c-q-hack ellipsis)
1483 "Display the input history search prompt.
1484 If there are no search errors, this function displays an overlay with
1485 the Isearch prompt which replaces the original comint prompt.
1486 Otherwise, it displays the standard Isearch message returned from
1487 `isearch-message'."
1488 (if (not (and isearch-success (not isearch-error)))
1489 ;; Use standard function `isearch-message' when not in comint prompt,
1490 ;; or search fails, or has an error (like incomplete regexp).
1491 ;; This function displays isearch message in the echo area,
1492 ;; so it's possible to see what is wrong in the search string.
1493 (isearch-message c-q-hack ellipsis)
1494 ;; Otherwise, put the overlay with the standard isearch prompt over
1495 ;; the initial comint prompt.
1496 (if (overlayp comint-history-isearch-message-overlay)
1497 (move-overlay comint-history-isearch-message-overlay
1498 (save-excursion (forward-line 0) (point))
1499 (comint-line-beginning-position))
1500 (setq comint-history-isearch-message-overlay
1501 (make-overlay (save-excursion (forward-line 0) (point))
1502 (comint-line-beginning-position)))
1503 (overlay-put comint-history-isearch-message-overlay 'evaporate t))
1504 (overlay-put comint-history-isearch-message-overlay
1505 'display (isearch-message-prefix c-q-hack ellipsis))
1506 ;; And clear any previous isearch message.
1507 (message "")))
1508
1509 (defun comint-history-isearch-wrap ()
1510 "Wrap the input history search when search fails.
1511 Move point to the first history element for a forward search,
1512 or to the last history element for a backward search."
1513 (unless isearch-word
1514 ;; When `comint-history-isearch-search' fails on reaching the
1515 ;; beginning/end of the history, wrap the search to the first/last
1516 ;; input history element.
1517 (if isearch-forward
1518 (comint-goto-input (1- (ring-length comint-input-ring)))
1519 (comint-goto-input nil))
1520 (setq isearch-success t))
1521 (goto-char (if isearch-forward (comint-line-beginning-position) (point-max))))
1522
1523 (defun comint-history-isearch-push-state ()
1524 "Save a function restoring the state of input history search.
1525 Save `comint-input-ring-index' to the additional state parameter
1526 in the search status stack."
1527 `(lambda (cmd)
1528 (comint-history-isearch-pop-state cmd ,comint-input-ring-index)))
1529
1530 (defun comint-history-isearch-pop-state (cmd hist-pos)
1531 "Restore the input history search state.
1532 Go to the history element by the absolute history position HIST-POS."
1533 (comint-goto-input hist-pos))
1534
1535 \f
1536 (defun comint-within-quotes (beg end)
1537 "Return t if the number of quotes between BEG and END is odd.
1538 Quotes are single and double."
1539 (let ((countsq (comint-how-many-region "\\(^\\|[^\\\\]\\)\'" beg end))
1540 (countdq (comint-how-many-region "\\(^\\|[^\\\\]\\)\"" beg end)))
1541 (or (= (mod countsq 2) 1) (= (mod countdq 2) 1))))
1542
1543 (defun comint-how-many-region (regexp beg end)
1544 "Return number of matches for REGEXP from BEG to END."
1545 (let ((count 0))
1546 (save-excursion
1547 (save-match-data
1548 (goto-char beg)
1549 (while (re-search-forward regexp end t)
1550 (setq count (1+ count)))))
1551 count))
1552
1553 (defun comint-args (string begin end)
1554 ;; From STRING, return the args depending on the range specified in the text
1555 ;; from BEGIN to END. If BEGIN is nil, assume all args. Ignore leading `:'.
1556 ;; Range can be x-y, x-, -y, where x/y can be [0-9], *, ^, $.
1557 (save-match-data
1558 (if (null begin)
1559 (comint-arguments string 0 nil)
1560 (let* ((range (buffer-substring
1561 (if (eq (char-after begin) ?:) (1+ begin) begin) end))
1562 (nth (cond ((string-match "^[*^]" range) 1)
1563 ((string-match "^-" range) 0)
1564 ((string-equal range "$") nil)
1565 (t (string-to-number range))))
1566 (mth (cond ((string-match "[-*$]$" range) nil)
1567 ((string-match "-" range)
1568 (string-to-number (substring range (match-end 0))))
1569 (t nth))))
1570 (comint-arguments string nth mth)))))
1571
1572 (defun comint-delim-arg (arg)
1573 "Return a list of arguments from ARG.
1574 Break it up at the delimiters in `comint-delimiter-argument-list'.
1575 Returned list is backwards.
1576
1577 Characters with non-nil values of the text property `literal' are
1578 assumed to have literal values (e.g., backslash-escaped
1579 characters), and are not considered to be delimiters."
1580 (if (null comint-delimiter-argument-list)
1581 (list arg)
1582 (let ((args nil)
1583 (pos 0)
1584 (len (length arg)))
1585 (while (< pos len)
1586 (let ((char (aref arg pos))
1587 (start pos))
1588 (if (and (memq char comint-delimiter-argument-list)
1589 ;; Ignore backslash-escaped characters.
1590 (not (get-text-property pos 'literal arg)))
1591 (while (and (< pos len) (eq (aref arg pos) char))
1592 (setq pos (1+ pos)))
1593 (while (and (< pos len)
1594 (not (and (memq (aref arg pos)
1595 comint-delimiter-argument-list)
1596 (not (get-text-property
1597 pos 'literal arg)))))
1598 (setq pos (1+ pos))))
1599 (setq args (cons (substring arg start pos) args))))
1600 args)))
1601
1602 (defun comint-arguments (string nth mth)
1603 "Return from STRING the NTH to MTH arguments.
1604 NTH and/or MTH can be nil, which means the last argument.
1605 Returned arguments are separated by single spaces.
1606 We assume whitespace separates arguments, except within quotes
1607 and except for a space or tab that immediately follows a backslash.
1608 Also, a run of one or more of a single character
1609 in `comint-delimiter-argument-list' is a separate argument.
1610 Argument 0 is the command name."
1611 ;; The first line handles ordinary characters and backslash-sequences
1612 ;; (except with w32 msdos-like shells, where backslashes are valid).
1613 ;; The second matches "-quoted strings.
1614 ;; The third matches '-quoted strings.
1615 ;; The fourth matches `-quoted strings.
1616 ;; This seems to fit the syntax of BASH 2.0.
1617 (let* ((backslash-escape (not (and (fboundp 'w32-shell-dos-semantics)
1618 (w32-shell-dos-semantics))))
1619 (first (if backslash-escape
1620 "[^ \n\t\"'`\\]\\|\\(\\\\.\\)\\|"
1621 "[^ \n\t\"'`]+\\|"))
1622 (argpart (concat first
1623 "\\(\"\\([^\"\\]\\|\\\\.\\)*\"\\|\
1624 '[^']*'\\|\
1625 `[^`]*`\\)"))
1626 (quote-subexpr (if backslash-escape 2 1))
1627 (args ()) (pos 0)
1628 (count 0)
1629 beg str quotes)
1630 ;; Build a list of all the args until we have as many as we want.
1631 (while (and (or (null mth) (<= count mth))
1632 (string-match argpart string pos))
1633 ;; Apply the `literal' text property to backslash-escaped
1634 ;; characters, so that `comint-delim-arg' won't break them up.
1635 (and backslash-escape
1636 (match-beginning 1)
1637 (put-text-property (match-beginning 1) (match-end 1)
1638 'literal t string))
1639 (if (and beg (= pos (match-beginning 0)))
1640 ;; It's contiguous, part of the same arg.
1641 (setq pos (match-end 0)
1642 quotes (or quotes (match-beginning quote-subexpr)))
1643 ;; It's a new separate arg.
1644 (if beg
1645 ;; Put the previous arg, if there was one, onto ARGS.
1646 (setq str (substring string beg pos)
1647 args (if quotes (cons str args)
1648 (nconc (comint-delim-arg str) args))))
1649 (setq count (length args))
1650 (setq quotes (match-beginning quote-subexpr))
1651 (setq beg (match-beginning 0))
1652 (setq pos (match-end 0))))
1653 (if beg
1654 (setq str (substring string beg pos)
1655 args (if quotes (cons str args)
1656 (nconc (comint-delim-arg str) args))))
1657 (setq count (length args))
1658 (let ((n (or nth (1- count)))
1659 (m (if mth (1- (- count mth)) 0)))
1660 (mapconcat
1661 (function (lambda (a) a)) (nthcdr n (nreverse (nthcdr m args))) " "))))
1662 \f
1663 ;;
1664 ;; Input processing stuff
1665 ;;
1666 (defun comint-add-to-input-history (cmd)
1667 "Add CMD to the input history.
1668 Ignore duplicates if `comint-input-ignoredups' is non-nil."
1669 (if (and (funcall comint-input-filter cmd)
1670 (or (null comint-input-ignoredups)
1671 (not (ring-p comint-input-ring))
1672 (ring-empty-p comint-input-ring)
1673 (not (string-equal (ring-ref comint-input-ring 0)
1674 cmd))))
1675 (ring-insert comint-input-ring cmd)))
1676
1677 (defun comint-send-input (&optional no-newline artificial)
1678 "Send input to process.
1679 After the process output mark, sends all text from the process mark to
1680 point as input to the process. Before the process output mark, calls
1681 value of variable `comint-get-old-input' to retrieve old input, copies
1682 it to the process mark, and sends it.
1683
1684 This command also sends and inserts a final newline, unless
1685 NO-NEWLINE is non-nil.
1686
1687 Any history reference may be expanded depending on the value of the variable
1688 `comint-input-autoexpand'. The list of function names contained in the value
1689 of `comint-input-filter-functions' is called on the input before sending it.
1690 The input is entered into the input history ring, if the value of variable
1691 `comint-input-filter' returns non-nil when called on the input.
1692
1693 If variable `comint-eol-on-send' is non-nil, then point is moved to the
1694 end of line before sending the input.
1695
1696 After the input has been sent, if `comint-process-echoes' is non-nil,
1697 then `comint-send-input' waits to see if the process outputs a string
1698 matching the input, and if so, deletes that part of the output.
1699 If ARTIFICIAL is non-nil, it inhibits such deletion.
1700 Callers sending input not from the user should use ARTIFICIAL = t.
1701
1702 The values of `comint-get-old-input', `comint-input-filter-functions', and
1703 `comint-input-filter' are chosen according to the command interpreter running
1704 in the buffer. E.g.,
1705
1706 If the interpreter is the csh,
1707 `comint-get-old-input' is the default:
1708 If `comint-use-prompt-regexp' is nil, then
1709 either return the current input field, if point is on an input
1710 field, or the current line, if point is on an output field.
1711 If `comint-use-prompt-regexp' is non-nil, then
1712 return the current line with any initial string matching the
1713 regexp `comint-prompt-regexp' removed.
1714 `comint-input-filter-functions' monitors input for \"cd\", \"pushd\", and
1715 \"popd\" commands. When it sees one, it cd's the buffer.
1716 `comint-input-filter' is the default: returns t if the input isn't all white
1717 space.
1718
1719 If the Comint is Lucid Common Lisp,
1720 `comint-get-old-input' snarfs the sexp ending at point.
1721 `comint-input-filter-functions' does nothing.
1722 `comint-input-filter' returns nil if the input matches input-filter-regexp,
1723 which matches (1) all whitespace (2) :a, :c, etc.
1724
1725 Similarly for Soar, Scheme, etc."
1726 (interactive)
1727 ;; Note that the input string does not include its terminal newline.
1728 (let ((proc (get-buffer-process (current-buffer))))
1729 (if (not proc) (error "Current buffer has no process")
1730 (widen)
1731 (let* ((pmark (process-mark proc))
1732 (intxt (if (>= (point) (marker-position pmark))
1733 (progn (if comint-eol-on-send (end-of-line))
1734 (buffer-substring pmark (point)))
1735 (let ((copy (funcall comint-get-old-input)))
1736 (goto-char pmark)
1737 (insert copy)
1738 copy)))
1739 (input (if (not (eq comint-input-autoexpand 'input))
1740 ;; Just whatever's already there
1741 intxt
1742 ;; Expand and leave it visible in buffer
1743 (comint-replace-by-expanded-history t pmark)
1744 (buffer-substring pmark (point))))
1745 (history (if (not (eq comint-input-autoexpand 'history))
1746 input
1747 ;; This is messy 'cos ultimately the original
1748 ;; functions used do insertion, rather than return
1749 ;; strings. We have to expand, then insert back.
1750 (comint-replace-by-expanded-history t pmark)
1751 (let ((copy (buffer-substring pmark (point)))
1752 (start (point)))
1753 (insert input)
1754 (delete-region pmark start)
1755 copy))))
1756
1757 (unless no-newline
1758 (insert ?\n))
1759
1760 (comint-add-to-input-history history)
1761
1762 (run-hook-with-args 'comint-input-filter-functions
1763 (if no-newline input
1764 (concat input "\n")))
1765
1766 (let ((beg (marker-position pmark))
1767 (end (if no-newline (point) (1- (point))))
1768 (inhibit-modification-hooks t))
1769 (when (> end beg)
1770 (add-text-properties beg end
1771 '(front-sticky t
1772 font-lock-face comint-highlight-input))
1773 (unless comint-use-prompt-regexp
1774 ;; Give old user input a field property of `input', to
1775 ;; distinguish it from both process output and unsent
1776 ;; input. The terminating newline is put into a special
1777 ;; `boundary' field to make cursor movement between input
1778 ;; and output fields smoother.
1779 (add-text-properties
1780 beg end
1781 '(mouse-face highlight
1782 help-echo "mouse-2: insert after prompt as new input"
1783 field input))))
1784 (unless (or no-newline comint-use-prompt-regexp)
1785 ;; Cover the terminating newline
1786 (add-text-properties end (1+ end)
1787 '(rear-nonsticky t
1788 field boundary
1789 inhibit-line-move-field-capture t))))
1790
1791 (comint-snapshot-last-prompt)
1792
1793 (setq comint-save-input-ring-index comint-input-ring-index)
1794 (setq comint-input-ring-index nil)
1795 ;; Update the markers before we send the input
1796 ;; in case we get output amidst sending the input.
1797 (set-marker comint-last-input-start pmark)
1798 (set-marker comint-last-input-end (point))
1799 (set-marker (process-mark proc) (point))
1800 ;; clear the "accumulation" marker
1801 (set-marker comint-accum-marker nil)
1802 (let ((comint-input-sender-no-newline no-newline))
1803 (funcall comint-input-sender proc input))
1804
1805 ;; Optionally delete echoed input (after checking it).
1806 (when (and comint-process-echoes (not artificial))
1807 (let ((echo-len (- comint-last-input-end
1808 comint-last-input-start)))
1809 ;; Wait for all input to be echoed:
1810 (while (and (accept-process-output proc)
1811 (> (+ comint-last-input-end echo-len)
1812 (point-max))
1813 (zerop
1814 (compare-buffer-substrings
1815 nil comint-last-input-start
1816 (- (point-max) echo-len)
1817 ;; Above difference is equivalent to
1818 ;; (+ comint-last-input-start
1819 ;; (- (point-max) comint-last-input-end))
1820 nil comint-last-input-end (point-max)))))
1821 (if (and
1822 (<= (+ comint-last-input-end echo-len)
1823 (point-max))
1824 (zerop
1825 (compare-buffer-substrings
1826 nil comint-last-input-start comint-last-input-end
1827 nil comint-last-input-end
1828 (+ comint-last-input-end echo-len))))
1829 ;; Certain parts of the text to be deleted may have
1830 ;; been mistaken for prompts. We have to prevent
1831 ;; problems when `comint-prompt-read-only' is non-nil.
1832 (let ((inhibit-read-only t))
1833 (delete-region comint-last-input-end
1834 (+ comint-last-input-end echo-len))
1835 (when comint-prompt-read-only
1836 (save-excursion
1837 (goto-char comint-last-input-end)
1838 (comint-update-fence)))))))
1839
1840 ;; This used to call comint-output-filter-functions,
1841 ;; but that scrolled the buffer in undesirable ways.
1842 (run-hook-with-args 'comint-output-filter-functions "")))))
1843
1844 (defvar comint-preoutput-filter-functions nil
1845 "List of functions to call before inserting Comint output into the buffer.
1846 Each function gets one argument, a string containing the text received
1847 from the subprocess. It should return the string to insert, perhaps
1848 the same string that was received, or perhaps a modified or transformed
1849 string.
1850
1851 The functions on the list are called sequentially, and each one is
1852 given the string returned by the previous one. The string returned by
1853 the last function is the text that is actually inserted in the
1854 redirection buffer.
1855
1856 You can use `add-hook' to add functions to this list
1857 either globally or locally.")
1858
1859 (defvar comint-inhibit-carriage-motion nil
1860 "If nil, Comint will interpret `carriage control' characters in output.
1861 See `comint-carriage-motion' for details.")
1862
1863 ;; When non-nil, this is an overlay over the last recognized prompt in
1864 ;; the buffer; it is used when highlighting the prompt.
1865 (defvar comint-last-prompt-overlay nil)
1866
1867 (defun comint-snapshot-last-prompt ()
1868 "`snapshot' any current `comint-last-prompt-overlay'.
1869 Freeze its attributes in place, even when more input comes along
1870 and moves the prompt overlay."
1871 (when comint-last-prompt-overlay
1872 (let ((inhibit-read-only t)
1873 (inhibit-modification-hooks t))
1874 (add-text-properties (overlay-start comint-last-prompt-overlay)
1875 (overlay-end comint-last-prompt-overlay)
1876 (overlay-properties comint-last-prompt-overlay)))))
1877
1878 (defun comint-carriage-motion (start end)
1879 "Interpret carriage control characters in the region from START to END.
1880 Translate carriage return/linefeed sequences to linefeeds.
1881 Make single carriage returns delete to the beginning of the line.
1882 Make backspaces delete the previous character."
1883 (save-excursion
1884 ;; We used to check the existence of \b and \r at first to avoid
1885 ;; calling save-match-data and save-restriction. But, such a
1886 ;; check is not necessary now because we don't use regexp search
1887 ;; nor save-restriction. Note that the buffer is already widen,
1888 ;; and calling narrow-to-region and widen are not that heavy.
1889 (goto-char start)
1890 (let* ((inhibit-field-text-motion t)
1891 (inhibit-read-only t)
1892 (lbeg (line-beginning-position))
1893 delete-end ch)
1894 ;; If the preceding text is marked as "must-overwrite", record
1895 ;; it in delete-end.
1896 (when (and (> start (point-min))
1897 (get-text-property (1- start) 'comint-must-overwrite))
1898 (setq delete-end (point-marker))
1899 (remove-text-properties lbeg start '(comint-must-overwrite nil)))
1900 (narrow-to-region lbeg end)
1901 ;; Handle BS, LF, and CR specially.
1902 (while (and (skip-chars-forward "^\b\n\r") (not (eobp)))
1903 (setq ch (following-char))
1904 (cond ((= ch ?\b) ; CH = BS
1905 (delete-char 1)
1906 (if (> (point) lbeg)
1907 (delete-char -1)))
1908 ((= ch ?\n)
1909 (when delete-end ; CH = LF
1910 (if (< delete-end (point))
1911 (delete-region lbeg delete-end))
1912 (set-marker delete-end nil)
1913 (setq delete-end nil))
1914 (forward-char 1)
1915 (setq lbeg (point)))
1916 (t ; CH = CR
1917 (delete-char 1)
1918 (if delete-end
1919 (when (< delete-end (point))
1920 (delete-region lbeg delete-end)
1921 (move-marker delete-end (point)))
1922 (setq delete-end (point-marker))))))
1923 (when delete-end
1924 (if (< delete-end (point))
1925 ;; As there's a text after the last CR, make the current
1926 ;; line contain only that text.
1927 (delete-region lbeg delete-end)
1928 ;; Remember that the process output ends by CR, and thus we
1929 ;; must overwrite the contents of the current line next
1930 ;; time.
1931 (put-text-property lbeg delete-end 'comint-must-overwrite t))
1932 (set-marker delete-end nil))
1933 (widen))))
1934
1935 ;; The purpose of using this filter for comint processes
1936 ;; is to keep comint-last-input-end from moving forward
1937 ;; when output is inserted.
1938 (defun comint-output-filter (process string)
1939 (let ((oprocbuf (process-buffer process)))
1940 ;; First check for killed buffer or no input.
1941 (when (and string oprocbuf (buffer-name oprocbuf))
1942 (with-current-buffer oprocbuf
1943 ;; Run preoutput filters
1944 (let ((functions comint-preoutput-filter-functions))
1945 (while (and functions string)
1946 (if (eq (car functions) t)
1947 (let ((functions
1948 (default-value 'comint-preoutput-filter-functions)))
1949 (while (and functions string)
1950 (setq string (funcall (car functions) string))
1951 (setq functions (cdr functions))))
1952 (setq string (funcall (car functions) string)))
1953 (setq functions (cdr functions))))
1954
1955 ;; Insert STRING
1956 (let ((inhibit-read-only t)
1957 ;; The point should float after any insertion we do.
1958 (saved-point (copy-marker (point) t)))
1959
1960 ;; We temporarly remove any buffer narrowing, in case the
1961 ;; process mark is outside of the restriction
1962 (save-restriction
1963 (widen)
1964
1965 (goto-char (process-mark process))
1966 (set-marker comint-last-output-start (point))
1967
1968 ;; insert-before-markers is a bad thing. XXX
1969 ;; Luckily we don't have to use it any more, we use
1970 ;; window-point-insertion-type instead.
1971 (insert string)
1972
1973 ;; Advance process-mark
1974 (set-marker (process-mark process) (point))
1975
1976 (unless comint-inhibit-carriage-motion
1977 ;; Interpret any carriage motion characters (newline, backspace)
1978 (comint-carriage-motion comint-last-output-start (point)))
1979
1980 ;; Run these hooks with point where the user had it.
1981 (goto-char saved-point)
1982 (run-hook-with-args 'comint-output-filter-functions string)
1983 (set-marker saved-point (point))
1984
1985 (goto-char (process-mark process)) ; in case a filter moved it
1986
1987 (unless comint-use-prompt-regexp
1988 (let ((inhibit-read-only t)
1989 (inhibit-modification-hooks t))
1990 (add-text-properties comint-last-output-start (point)
1991 '(front-sticky
1992 (field inhibit-line-move-field-capture)
1993 rear-nonsticky t
1994 field output
1995 inhibit-line-move-field-capture t))))
1996
1997 ;; Highlight the prompt, where we define `prompt' to mean
1998 ;; the most recent output that doesn't end with a newline.
1999 (let ((prompt-start (save-excursion (forward-line 0) (point)))
2000 (inhibit-read-only t)
2001 (inhibit-modification-hooks t))
2002 (when comint-prompt-read-only
2003 (or (= (point-min) prompt-start)
2004 (get-text-property (1- prompt-start) 'read-only)
2005 (put-text-property
2006 (1- prompt-start) prompt-start 'read-only 'fence))
2007 (add-text-properties
2008 prompt-start (point)
2009 '(read-only t rear-nonsticky t front-sticky (read-only))))
2010 (unless (and (bolp) (null comint-last-prompt-overlay))
2011 ;; Need to create or move the prompt overlay (in the case
2012 ;; where there is no prompt ((bolp) == t), we still do
2013 ;; this if there's already an existing overlay).
2014 (if comint-last-prompt-overlay
2015 ;; Just move an existing overlay
2016 (move-overlay comint-last-prompt-overlay
2017 prompt-start (point))
2018 ;; Need to create the overlay
2019 (setq comint-last-prompt-overlay
2020 (make-overlay prompt-start (point)))
2021 (overlay-put comint-last-prompt-overlay
2022 'font-lock-face 'comint-highlight-prompt))))
2023
2024 (goto-char saved-point)))))))
2025
2026 (defun comint-preinput-scroll-to-bottom ()
2027 "Go to the end of buffer in all windows showing it.
2028 Movement occurs if point in the selected window is not after the process mark,
2029 and `this-command' is an insertion command. Insertion commands recognized
2030 are `self-insert-command', `comint-magic-space', `yank', and `hilit-yank'.
2031 Depends on the value of `comint-scroll-to-bottom-on-input'.
2032
2033 This function should be a pre-command hook."
2034 (if (and comint-scroll-to-bottom-on-input
2035 (memq this-command '(self-insert-command comint-magic-space yank
2036 hilit-yank)))
2037 (let* ((selected (selected-window))
2038 (current (current-buffer))
2039 (process (get-buffer-process current))
2040 (scroll comint-scroll-to-bottom-on-input))
2041 (if (and process (< (point) (process-mark process)))
2042 (if (eq scroll 'this)
2043 (goto-char (point-max))
2044 (walk-windows
2045 (lambda (window)
2046 (if (and (eq (window-buffer window) current)
2047 (or (eq scroll t) (eq scroll 'all)))
2048 (progn
2049 (select-window window)
2050 (goto-char (point-max))
2051 (select-window selected))))
2052 nil t))))))
2053
2054 (defun comint-postoutput-scroll-to-bottom (string)
2055 "Go to the end of buffer in some or all windows showing it.
2056 Does not scroll if the current line is the last line in the buffer.
2057 Depends on the value of `comint-move-point-for-output' and
2058 `comint-scroll-show-maximum-output'.
2059
2060 This function should be in the list `comint-output-filter-functions'."
2061 (let* ((selected (selected-window))
2062 (current (current-buffer))
2063 (process (get-buffer-process current))
2064 (scroll comint-move-point-for-output))
2065 (unwind-protect
2066 (if process
2067 (walk-windows
2068 (lambda (window)
2069 (when (eq (window-buffer window) current)
2070 (select-window window)
2071 (if (and (< (point) (process-mark process))
2072 (or (eq scroll t) (eq scroll 'all)
2073 ;; Maybe user wants point to jump to end.
2074 (and (eq scroll 'this) (eq selected window))
2075 (and (eq scroll 'others) (not (eq selected window)))
2076 ;; If point was at the end, keep it at end.
2077 (and (marker-position comint-last-output-start)
2078 (>= (point) comint-last-output-start))))
2079 (goto-char (process-mark process)))
2080 ;; Optionally scroll so that the text
2081 ;; ends at the bottom of the window.
2082 (if (and comint-scroll-show-maximum-output
2083 (= (point) (point-max)))
2084 (save-excursion
2085 (goto-char (point-max))
2086 (recenter (- -1 scroll-margin))))
2087 (select-window selected)))
2088 nil t))
2089 (set-buffer current))))
2090
2091 (defun comint-truncate-buffer (&optional string)
2092 "Truncate the buffer to `comint-buffer-maximum-size'.
2093 This function could be on `comint-output-filter-functions' or bound to a key."
2094 (interactive)
2095 (save-excursion
2096 (goto-char (process-mark (get-buffer-process (current-buffer))))
2097 (forward-line (- comint-buffer-maximum-size))
2098 (beginning-of-line)
2099 (let ((inhibit-read-only t))
2100 (delete-region (point-min) (point)))))
2101
2102 (defun comint-strip-ctrl-m (&optional string)
2103 "Strip trailing `^M' characters from the current output group.
2104 This function could be on `comint-output-filter-functions' or bound to a key."
2105 (interactive)
2106 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
2107 (save-excursion
2108 (condition-case nil
2109 (goto-char
2110 (if (called-interactively-p 'interactive)
2111 comint-last-input-end comint-last-output-start))
2112 (error nil))
2113 (while (re-search-forward "\r+$" pmark t)
2114 (replace-match "" t t)))))
2115 (defalias 'shell-strip-ctrl-m 'comint-strip-ctrl-m)
2116
2117 (defun comint-show-maximum-output ()
2118 "Put the end of the buffer at the bottom of the window."
2119 (interactive)
2120 (goto-char (point-max))
2121 (recenter (- -1 scroll-margin)))
2122
2123 (defun comint-get-old-input-default ()
2124 "Default for `comint-get-old-input'.
2125 If `comint-use-prompt-regexp' is nil, then either
2126 return the current input field, if point is on an input field, or the
2127 current line, if point is on an output field.
2128 If `comint-use-prompt-regexp' is non-nil, then return
2129 the current line with any initial string matching the regexp
2130 `comint-prompt-regexp' removed."
2131 (let ((bof (field-beginning)))
2132 (if (eq (get-char-property bof 'field) 'input)
2133 (field-string-no-properties bof)
2134 (comint-bol)
2135 (buffer-substring-no-properties (point) (line-end-position)))))
2136
2137 (defun comint-copy-old-input ()
2138 "Insert after prompt old input at point as new input to be edited.
2139 Calls `comint-get-old-input' to get old input."
2140 (interactive)
2141 (let ((input (funcall comint-get-old-input))
2142 (process (get-buffer-process (current-buffer))))
2143 (if (not process)
2144 (error "Current buffer has no process")
2145 (goto-char (process-mark process))
2146 (insert input))))
2147
2148 (defun comint-skip-prompt ()
2149 "Skip past the text matching regexp `comint-prompt-regexp'.
2150 If this takes us past the end of the current line, don't skip at all."
2151 (if (and (looking-at comint-prompt-regexp)
2152 (<= (match-end 0) (line-end-position)))
2153 (goto-char (match-end 0))))
2154
2155 (defun comint-after-pmark-p ()
2156 "Return t if point is after the process output marker."
2157 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
2158 (<= (marker-position pmark) (point))))
2159
2160 (defun comint-simple-send (proc string)
2161 "Default function for sending to PROC input STRING.
2162 This just sends STRING plus a newline. To override this,
2163 set the hook `comint-input-sender'."
2164 (let ((send-string
2165 (if comint-input-sender-no-newline
2166 string
2167 ;; Sending as two separate strings does not work
2168 ;; on Windows, so concat the \n before sending.
2169 (concat string "\n"))))
2170 (comint-send-string proc send-string))
2171 (if (and comint-input-sender-no-newline
2172 (not (string-equal string "")))
2173 (process-send-eof)))
2174
2175 (defun comint-line-beginning-position ()
2176 "Return the buffer position of the beginning of the line, after any prompt.
2177 If `comint-use-prompt-regexp' is non-nil, then the prompt skip is done by
2178 skipping text matching the regular expression `comint-prompt-regexp',
2179 a buffer local variable."
2180 (if comint-use-prompt-regexp
2181 ;; Use comint-prompt-regexp
2182 (save-excursion
2183 (beginning-of-line)
2184 (comint-skip-prompt)
2185 (point))
2186 ;; Use input fields. Note that, unlike the behavior of
2187 ;; `line-beginning-position' inside a field, this function will
2188 ;; return the position of the end of a prompt, even if the point is
2189 ;; already inside the prompt. In order to do this, it assumes that
2190 ;; if there are two fields on a line, then the first one is the
2191 ;; prompt, and the second one is an input field, and is front-sticky
2192 ;; (as input fields should be).
2193 (constrain-to-field (line-beginning-position) (line-end-position))))
2194
2195 (defun comint-bol (&optional arg)
2196 "Go to the beginning of line, then skip past the prompt, if any.
2197 If prefix argument is given (\\[universal-argument]) the prompt is not skipped.
2198 If `comint-use-prompt-regexp' is non-nil, then the prompt skip is done
2199 by skipping text matching the regular expression `comint-prompt-regexp',
2200 a buffer local variable."
2201 (interactive "P")
2202 (if arg
2203 ;; Unlike `beginning-of-line', forward-line ignores field boundaries
2204 (forward-line 0)
2205 (goto-char (comint-line-beginning-position))))
2206
2207 ;; For compatibility.
2208 (defun comint-read-noecho (prompt &optional ignore)
2209 (read-passwd prompt))
2210
2211 ;; These three functions are for entering text you don't want echoed or
2212 ;; saved -- typically passwords to ftp, telnet, or somesuch.
2213 ;; Just enter m-x send-invisible and type in your line.
2214
2215 (defun send-invisible (&optional prompt)
2216 "Read a string without echoing.
2217 Then send it to the process running in the current buffer.
2218 The string is sent using `comint-input-sender'.
2219 Security bug: your string can still be temporarily recovered with
2220 \\[view-lossage]; `clear-this-command-keys' can fix that."
2221 (interactive "P") ; Defeat snooping via C-x ESC ESC
2222 (let ((proc (get-buffer-process (current-buffer)))
2223 (prefix
2224 (if (eq (window-buffer (selected-window)) (current-buffer))
2225 ""
2226 (format "(In buffer %s) "
2227 (current-buffer)))))
2228 (if proc
2229 (let ((str (read-passwd (concat prefix
2230 (or prompt "Non-echoed text: ")))))
2231 (if (stringp str)
2232 (progn
2233 (comint-snapshot-last-prompt)
2234 (funcall comint-input-sender proc str))
2235 (message "Warning: text will be echoed")))
2236 (error "Buffer %s has no process" (current-buffer)))))
2237
2238 (defun comint-watch-for-password-prompt (string)
2239 "Prompt in the minibuffer for password and send without echoing.
2240 This function uses `send-invisible' to read and send a password to the buffer's
2241 process if STRING contains a password prompt defined by
2242 `comint-password-prompt-regexp'.
2243
2244 This function could be in the list `comint-output-filter-functions'."
2245 (when (string-match comint-password-prompt-regexp string)
2246 (when (string-match "^[ \n\r\t\v\f\b\a]+" string)
2247 (setq string (replace-match "" t t string)))
2248 (send-invisible string)))
2249 \f
2250 ;; Low-level process communication
2251
2252 (defun comint-send-string (process string)
2253 "Like `process-send-string', but also does extra bookkeeping for Comint mode."
2254 (if process
2255 (with-current-buffer (if (processp process)
2256 (process-buffer process)
2257 (get-buffer process))
2258 (comint-snapshot-last-prompt))
2259 (comint-snapshot-last-prompt))
2260 (process-send-string process string))
2261
2262 (defun comint-send-region (process start end)
2263 "Like `process-send-region', but also does extra bookkeeping for Comint mode."
2264 (if process
2265 (with-current-buffer (if (processp process)
2266 (process-buffer process)
2267 (get-buffer process))
2268 (comint-snapshot-last-prompt))
2269 (comint-snapshot-last-prompt))
2270 (process-send-region process start end))
2271
2272 \f
2273 ;; Random input hackage
2274
2275 (defun comint-delete-output ()
2276 "Delete all output from interpreter since last input.
2277 Does not delete the prompt."
2278 (interactive)
2279 (let ((proc (get-buffer-process (current-buffer)))
2280 (replacement nil)
2281 (inhibit-read-only t))
2282 (save-excursion
2283 (let ((pmark (progn (goto-char (process-mark proc))
2284 (forward-line 0)
2285 (point-marker))))
2286 (delete-region comint-last-input-end pmark)
2287 (goto-char (process-mark proc))
2288 (setq replacement (concat "*** output flushed ***\n"
2289 (buffer-substring pmark (point))))
2290 (delete-region pmark (point))))
2291 ;; Output message and put back prompt
2292 (comint-output-filter proc replacement)))
2293 (define-obsolete-function-alias 'comint-kill-output
2294 'comint-delete-output "21.1")
2295
2296 (defun comint-write-output (filename &optional append mustbenew)
2297 "Write output from interpreter since last input to FILENAME.
2298 Any prompt at the end of the output is not written.
2299
2300 If the optional argument APPEND (the prefix argument when interactive)
2301 is non-nil, the output is appended to the file instead.
2302
2303 If the optional argument MUSTBENEW is non-nil, check for an existing
2304 file with the same name. If MUSTBENEW is `excl', that means to get an
2305 error if the file already exists; never overwrite. If MUSTBENEW is
2306 neither nil nor `excl', that means ask for confirmation before
2307 overwriting, but do go ahead and overwrite the file if the user
2308 confirms. When interactive, MUSTBENEW is nil when appending, and t
2309 otherwise."
2310 (interactive
2311 (list (read-file-name
2312 (if current-prefix-arg
2313 "Append output to file: "
2314 "Write output to file: "))
2315 current-prefix-arg
2316 (not current-prefix-arg)))
2317 (save-excursion
2318 (goto-char (process-mark (get-buffer-process (current-buffer))))
2319 (forward-line 0)
2320 (write-region comint-last-input-end (point) filename
2321 append nil nil mustbenew)))
2322
2323 ;; This function exists for the benefit of the menu; from the keyboard,
2324 ;; users can just use `comint-write-output' with a prefix arg.
2325 (defun comint-append-output-to-file (filename)
2326 "Append output from interpreter since last input to FILENAME.
2327 Any prompt at the end of the output is not written."
2328 (interactive "fAppend output to file: ")
2329 (comint-write-output filename t))
2330
2331 (defun comint-show-output ()
2332 "Display start of this batch of interpreter output at top of window.
2333 Sets mark to the value of point when this command is run."
2334 (interactive)
2335 (push-mark)
2336 (let ((pos (or (marker-position comint-last-input-end) (point-max))))
2337 (cond (comint-use-prompt-regexp
2338 (goto-char pos)
2339 (beginning-of-line 0)
2340 (set-window-start (selected-window) (point))
2341 (comint-skip-prompt))
2342 (t
2343 (goto-char (field-beginning pos))
2344 (set-window-start (selected-window) (point))))))
2345
2346
2347 (defun comint-interrupt-subjob ()
2348 "Interrupt the current subjob.
2349 This command also kills the pending input
2350 between the process mark and point."
2351 (interactive)
2352 (comint-skip-input)
2353 (interrupt-process nil comint-ptyp)
2354 ;; (process-send-string nil "\n")
2355 )
2356
2357 (defun comint-kill-subjob ()
2358 "Send kill signal to the current subjob.
2359 This command also kills the pending input
2360 between the process mark and point."
2361 (interactive)
2362 (comint-skip-input)
2363 (kill-process nil comint-ptyp))
2364
2365 (defun comint-quit-subjob ()
2366 "Send quit signal to the current subjob.
2367 This command also kills the pending input
2368 between the process mark and point."
2369 (interactive)
2370 (comint-skip-input)
2371 (quit-process nil comint-ptyp))
2372
2373 (defun comint-stop-subjob ()
2374 "Stop the current subjob.
2375 This command also kills the pending input
2376 between the process mark and point.
2377
2378 WARNING: if there is no current subjob, you can end up suspending
2379 the top-level process running in the buffer. If you accidentally do
2380 this, use \\[comint-continue-subjob] to resume the process. (This
2381 is not a problem with most shells, since they ignore this signal.)"
2382 (interactive)
2383 (comint-skip-input)
2384 (stop-process nil comint-ptyp))
2385
2386 (defun comint-continue-subjob ()
2387 "Send CONT signal to process buffer's process group.
2388 Useful if you accidentally suspend the top-level process."
2389 (interactive)
2390 (continue-process nil comint-ptyp))
2391
2392 (defun comint-skip-input ()
2393 "Skip all pending input, from last stuff output by interpreter to point.
2394 This means mark it as if it had been sent as input, without sending it."
2395 (let ((comint-input-sender 'ignore)
2396 (comint-input-filter-functions nil))
2397 (comint-send-input t t))
2398 (end-of-line)
2399 (let ((pos (point))
2400 (marker (process-mark (get-buffer-process (current-buffer)))))
2401 (insert " " (key-description (this-command-keys)))
2402 (if (= marker pos)
2403 (set-marker marker (point)))))
2404
2405 (defun comint-kill-input ()
2406 "Kill all text from last stuff output by interpreter to point."
2407 (interactive)
2408 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
2409 (if (> (point) (marker-position pmark))
2410 (kill-region pmark (point)))))
2411
2412 (defun comint-delchar-or-maybe-eof (arg)
2413 "Delete ARG characters forward or send an EOF to subprocess.
2414 Sends an EOF only if point is at the end of the buffer and there is no input."
2415 (interactive "p")
2416 (let ((proc (get-buffer-process (current-buffer))))
2417 (if (and (eobp) proc (= (point) (marker-position (process-mark proc))))
2418 (comint-send-eof)
2419 (delete-char arg))))
2420
2421 (defun comint-send-eof ()
2422 "Send an EOF to the current buffer's process."
2423 (interactive)
2424 (comint-send-input t t)
2425 (process-send-eof))
2426
2427
2428 (defun comint-backward-matching-input (regexp n)
2429 "Search backward through buffer for input fields that match REGEXP.
2430 If `comint-use-prompt-regexp' is non-nil, then input fields are identified
2431 by lines that match `comint-prompt-regexp'.
2432
2433 With prefix argument N, search for Nth previous match.
2434 If N is negative, find the next or Nth next match."
2435 (interactive (comint-regexp-arg "Backward input matching (regexp): "))
2436 (if comint-use-prompt-regexp
2437 ;; Use comint-prompt-regexp
2438 (let* ((re (concat comint-prompt-regexp ".*" regexp))
2439 (pos (save-excursion (end-of-line (if (> n 0) 0 1))
2440 (if (re-search-backward re nil t n)
2441 (point)))))
2442 (if (null pos)
2443 (progn (message "Not found")
2444 (ding))
2445 (goto-char pos)
2446 (comint-bol nil)))
2447 ;; Use input fields
2448 (let* ((dir (if (< n 0) -1 1))
2449 (pos
2450 (save-excursion
2451 (while (/= n 0)
2452 (unless (re-search-backward regexp nil t dir)
2453 (error "Not found"))
2454 (when (eq (get-char-property (point) 'field) 'input)
2455 (setq n (- n dir))))
2456 (field-beginning))))
2457 (goto-char pos))))
2458
2459
2460 (defun comint-forward-matching-input (regexp n)
2461 "Search forward through buffer for input fields that match REGEXP.
2462 If `comint-use-prompt-regexp' is non-nil, then input fields are identified
2463 by lines that match `comint-prompt-regexp'.
2464
2465 With prefix argument N, search for Nth following match.
2466 If N is negative, find the previous or Nth previous match."
2467 (interactive (comint-regexp-arg "Forward input matching (regexp): "))
2468 (comint-backward-matching-input regexp (- n)))
2469
2470
2471 (defun comint-next-prompt (n)
2472 "Move to end of Nth next prompt in the buffer.
2473 If `comint-use-prompt-regexp' is nil, then this means the beginning of
2474 the Nth next `input' field, otherwise, it means the Nth occurrence of
2475 text matching `comint-prompt-regexp'."
2476 (interactive "p")
2477 (if comint-use-prompt-regexp
2478 ;; Use comint-prompt-regexp
2479 (let ((paragraph-start comint-prompt-regexp))
2480 (end-of-line (if (> n 0) 1 0))
2481 (forward-paragraph n)
2482 (comint-skip-prompt))
2483 ;; Use input fields
2484 (let ((pos (point))
2485 (input-pos nil)
2486 prev-pos)
2487 (while (/= n 0)
2488 (setq prev-pos pos)
2489 (setq pos
2490 (if (> n 0)
2491 (next-single-char-property-change pos 'field)
2492 (previous-single-char-property-change pos 'field)))
2493 (cond ((or (null pos) (= pos prev-pos))
2494 ;; Ran off the end of the buffer.
2495 (when (> n 0)
2496 ;; There's always an input field at the end of the
2497 ;; buffer, but it has a `field' property of nil.
2498 (setq input-pos (point-max)))
2499 ;; stop iterating
2500 (setq n 0))
2501 ((eq (get-char-property pos 'field) 'input)
2502 (setq n (if (< n 0) (1+ n) (1- n)))
2503 (setq input-pos pos))))
2504 (when input-pos
2505 (goto-char input-pos)))))
2506
2507
2508 (defun comint-previous-prompt (n)
2509 "Move to end of Nth previous prompt in the buffer.
2510 If `comint-use-prompt-regexp' is nil, then this means the beginning of
2511 the Nth previous `input' field, otherwise, it means the Nth occurrence of
2512 text matching `comint-prompt-regexp'."
2513 (interactive "p")
2514 (comint-next-prompt (- n)))
2515
2516 ;; State used by `comint-insert-previous-argument' when cycling.
2517 (defvar comint-insert-previous-argument-last-start-pos nil)
2518 (make-variable-buffer-local 'comint-insert-previous-argument-last-start-pos)
2519 (defvar comint-insert-previous-argument-last-index nil)
2520 (make-variable-buffer-local 'comint-insert-previous-argument-last-index)
2521
2522 ;; Needs fixing:
2523 ;; make comint-arguments understand negative indices as bash does
2524 (defun comint-insert-previous-argument (index)
2525 "Insert the INDEXth argument from the previous Comint command-line at point.
2526 Spaces are added at beginning and/or end of the inserted string if
2527 necessary to ensure that it's separated from adjacent arguments.
2528 Interactively, if no prefix argument is given, the last argument is inserted.
2529 Repeated interactive invocations will cycle through the same argument
2530 from progressively earlier commands (using the value of INDEX specified
2531 with the first command).
2532 This command is like `M-.' in bash."
2533 (interactive "P")
2534 (unless (null index)
2535 (setq index (prefix-numeric-value index)))
2536 (cond ((eq last-command this-command)
2537 ;; Delete last input inserted by this command.
2538 (delete-region comint-insert-previous-argument-last-start-pos (point))
2539 (setq index comint-insert-previous-argument-last-index))
2540 (t
2541 ;; This is a non-repeat invocation, so initialize state.
2542 (setq comint-input-ring-index nil)
2543 (setq comint-insert-previous-argument-last-index index)
2544 (when (null comint-insert-previous-argument-last-start-pos)
2545 ;; First usage; initialize to a marker
2546 (setq comint-insert-previous-argument-last-start-pos
2547 (make-marker)))))
2548 ;; Make sure we're not in the prompt, and add a beginning space if necess.
2549 (if (<= (point) (comint-line-beginning-position))
2550 (comint-bol)
2551 (just-one-space))
2552 ;; Remember the beginning of what we insert, so we can delete it if
2553 ;; the command is repeated.
2554 (set-marker comint-insert-previous-argument-last-start-pos (point))
2555 ;; Insert the argument.
2556 (let ((input-string (comint-previous-input-string 0)))
2557 (when (string-match "[ \t\n]*&" input-string)
2558 ;; strip terminating '&'
2559 (setq input-string (substring input-string 0 (match-beginning 0))))
2560 (insert (comint-arguments input-string index index)))
2561 ;; Make next invocation return arg from previous input
2562 (setq comint-input-ring-index (1+ (or comint-input-ring-index 0)))
2563 ;; Add a terminating space if necessary.
2564 (unless (eolp)
2565 (just-one-space)))
2566
2567 \f
2568 ;; Support editing with `comint-prompt-read-only' set to t.
2569
2570 (defun comint-update-fence ()
2571 "Update read-only status of newline before point.
2572 The `fence' read-only property is used to indicate that a newline
2573 is read-only for no other reason than to \"fence off\" a
2574 following front-sticky read-only region. This is used to
2575 implement comint read-only prompts. If the text after a newline
2576 changes, the read-only status of that newline may need updating.
2577 That is what this function does.
2578
2579 This function does nothing if point is not at the beginning of a
2580 line, or is at the beginning of the accessible portion of the buffer.
2581 Otherwise, if the character after point has a front-sticky
2582 read-only property, then the preceding newline is given a
2583 read-only property of `fence', unless it already is read-only.
2584 If the character after point does not have a front-sticky
2585 read-only property, any read-only property of `fence' on the
2586 preceding newline is removed."
2587 (let* ((pt (point)) (lst (get-text-property pt 'front-sticky))
2588 (inhibit-modification-hooks t))
2589 (and (bolp)
2590 (not (bobp))
2591 (if (and (get-text-property pt 'read-only)
2592 (if (listp lst) (memq 'read-only lst) t))
2593 (unless (get-text-property (1- pt) 'read-only)
2594 (put-text-property (1- pt) pt 'read-only 'fence))
2595 (when (eq (get-text-property (1- pt) 'read-only) 'fence)
2596 (remove-list-of-text-properties (1- pt) pt '(read-only)))))))
2597
2598 (defun comint-kill-whole-line (&optional count)
2599 "Kill current line, ignoring read-only and field properties.
2600 With prefix arg COUNT, kill that many lines starting from the current line.
2601 If COUNT is negative, kill backward. Also kill the preceding newline,
2602 instead of the trailing one. \(This is meant to make \\[repeat] work well
2603 with negative arguments.)
2604 If COUNT is zero, kill current line but exclude the trailing newline.
2605 The read-only status of newlines is updated with `comint-update-fence',
2606 if necessary."
2607 (interactive "p")
2608 (let ((inhibit-read-only t) (inhibit-field-text-motion t))
2609 (kill-whole-line count)
2610 (when (>= count 0) (comint-update-fence))))
2611
2612 (defun comint-kill-region (beg end &optional yank-handler)
2613 "Like `kill-region', but ignores read-only properties, if safe.
2614 This command assumes that the buffer contains read-only
2615 \"prompts\" which are regions with front-sticky read-only
2616 properties at the beginning of a line, with the preceding newline
2617 being read-only to protect the prompt. This is true of the
2618 comint prompts if `comint-prompt-read-only' is non-nil. This
2619 command will not delete the region if this would create mutilated
2620 or out of place prompts. That is, if any part of a prompt is
2621 deleted, the entire prompt must be deleted and all remaining
2622 prompts should stay at the beginning of a line. If this is not
2623 the case, this command just calls `kill-region' with all
2624 read-only properties intact. The read-only status of newlines is
2625 updated using `comint-update-fence', if necessary."
2626 (interactive "r")
2627 (save-excursion
2628 (let* ((true-beg (min beg end))
2629 (true-end (max beg end))
2630 (beg-bolp (progn (goto-char true-beg) (bolp)))
2631 (beg-lst (get-text-property true-beg 'front-sticky))
2632 (beg-bad (and (get-text-property true-beg 'read-only)
2633 (if (listp beg-lst) (memq 'read-only beg-lst) t)))
2634 (end-bolp (progn (goto-char true-end) (bolp)))
2635 (end-lst (get-text-property true-end 'front-sticky))
2636 (end-bad (and (get-text-property true-end 'read-only)
2637 (if (listp end-lst) (memq 'read-only end-lst) t))))
2638 (if (or (and (not beg-bolp) (or beg-bad end-bad))
2639 (and (not end-bolp) end-bad))
2640 (kill-region beg end yank-handler)
2641 (let ((inhibit-read-only t))
2642 (kill-region beg end yank-handler)
2643 (comint-update-fence))))))
2644 (set-advertised-calling-convention 'comint-kill-region '(beg end) "23.3")
2645
2646 \f
2647 ;; Support for source-file processing commands.
2648 ;;============================================================================
2649 ;; Many command-interpreters (e.g., Lisp, Scheme, Soar) have
2650 ;; commands that process files of source text (e.g. loading or compiling
2651 ;; files). So the corresponding process-in-a-buffer modes have commands
2652 ;; for doing this (e.g., lisp-load-file). The functions below are useful
2653 ;; for defining these commands.
2654 ;;
2655 ;; Alas, these guys don't do exactly the right thing for Lisp, Scheme
2656 ;; and Soar, in that they don't know anything about file extensions.
2657 ;; So the compile/load interface gets the wrong default occasionally.
2658 ;; The load-file/compile-file default mechanism could be smarter -- it
2659 ;; doesn't know about the relationship between filename extensions and
2660 ;; whether the file is source or executable. If you compile foo.lisp
2661 ;; with compile-file, then the next load-file should use foo.bin for
2662 ;; the default, not foo.lisp. This is tricky to do right, particularly
2663 ;; because the extension for executable files varies so much (.o, .bin,
2664 ;; .lbin, .mo, .vo, .ao, ...).
2665
2666
2667 ;; COMINT-SOURCE-DEFAULT -- determines defaults for source-file processing
2668 ;; commands.
2669 ;;
2670 ;; COMINT-CHECK-SOURCE -- if FNAME is in a modified buffer, asks you if you
2671 ;; want to save the buffer before issuing any process requests to the command
2672 ;; interpreter.
2673 ;;
2674 ;; COMINT-GET-SOURCE -- used by the source-file processing commands to prompt
2675 ;; for the file to process.
2676
2677 (defun comint-source-default (previous-dir/file source-modes)
2678 "Compute the defaults for `load-file' and `compile-file' commands.
2679
2680 PREVIOUS-DIR/FILE is a pair (DIRECTORY . FILENAME) from the last
2681 source-file processing command, or nil if there hasn't been one yet.
2682 SOURCE-MODES is a list used to determine what buffers contain source
2683 files: if the major mode of the buffer is in SOURCE-MODES, it's source.
2684 Typically, (lisp-mode) or (scheme-mode).
2685
2686 If the command is given while the cursor is inside a string, *and*
2687 the string is an existing filename, *and* the filename is not a directory,
2688 then the string is taken as default. This allows you to just position
2689 your cursor over a string that's a filename and have it taken as default.
2690
2691 If the command is given in a file buffer whose major mode is in
2692 SOURCE-MODES, then the filename is the default file, and the
2693 file's directory is the default directory.
2694
2695 If the buffer isn't a source file buffer (e.g., it's the process buffer),
2696 then the default directory & file are what was used in the last source-file
2697 processing command (i.e., PREVIOUS-DIR/FILE). If this is the first time
2698 the command has been run (PREVIOUS-DIR/FILE is nil), the default directory
2699 is the cwd, with no default file. (\"no default file\" = nil)
2700
2701 SOURCE-MODES is typically going to be something like (tea-mode)
2702 for T programs, (lisp-mode) for Lisp programs, (soar-mode lisp-mode)
2703 for Soar programs, etc.
2704
2705 The function returns a pair: (default-directory . default-file)."
2706 (cond ((and buffer-file-name (memq major-mode source-modes))
2707 (cons (file-name-directory buffer-file-name)
2708 (file-name-nondirectory buffer-file-name)))
2709 (previous-dir/file)
2710 (t
2711 (cons default-directory nil))))
2712
2713
2714 (defun comint-check-source (fname)
2715 "Check whether to save buffers visiting file FNAME.
2716 Prior to loading or compiling (or otherwise processing) a file (in the CMU
2717 process-in-a-buffer modes), this function can be called on the filename.
2718 If the file is loaded into a buffer, and the buffer is modified, the user
2719 is queried to see if he wants to save the buffer before proceeding with
2720 the load or compile."
2721 (let ((buff (get-file-buffer fname)))
2722 (if (and buff
2723 (buffer-modified-p buff)
2724 (y-or-n-p (format "Save buffer %s first? " (buffer-name buff))))
2725 ;; save BUFF.
2726 (let ((old-buffer (current-buffer)))
2727 (set-buffer buff)
2728 (save-buffer)
2729 (set-buffer old-buffer)))))
2730
2731 (defun comint-extract-string ()
2732 "Return string around point, or nil."
2733 (let ((syntax (syntax-ppss)))
2734 (when (nth 3 syntax)
2735 (condition-case ()
2736 (buffer-substring-no-properties (1+ (nth 8 syntax))
2737 (progn (goto-char (nth 8 syntax))
2738 (forward-sexp)
2739 (1- (point))))
2740 (error nil)))))
2741
2742 (defun comint-get-source (prompt prev-dir/file source-modes mustmatch-p)
2743 "Prompt for filenames in commands that process source files,
2744 e.g. loading or compiling a file.
2745 Provides a default, if there is one, and returns the result filename.
2746
2747 See `comint-source-default' for more on determining defaults.
2748
2749 PROMPT is the prompt string. PREV-DIR/FILE is the (DIRECTORY . FILE) pair
2750 from the last source processing command. SOURCE-MODES is a list of major
2751 modes used to determine what file buffers contain source files. (These
2752 two arguments are used for determining defaults.) If MUSTMATCH-P is true,
2753 then the filename reader will only accept a file that exists.
2754
2755 A typical use:
2756 (interactive (comint-get-source \"Compile file: \" prev-lisp-dir/file
2757 '(lisp-mode) t))"
2758 (let* ((def (comint-source-default prev-dir/file source-modes))
2759 (stringfile (comint-extract-string))
2760 (sfile-p (and stringfile
2761 (condition-case ()
2762 (file-exists-p stringfile)
2763 (error nil))
2764 (not (file-directory-p stringfile))))
2765 (defdir (if sfile-p (file-name-directory stringfile)
2766 (car def)))
2767 (deffile (if sfile-p (file-name-nondirectory stringfile)
2768 (cdr def)))
2769 (ans (read-file-name (if deffile (format "%s(default %s) "
2770 prompt deffile)
2771 prompt)
2772 defdir
2773 (concat defdir deffile)
2774 mustmatch-p)))
2775 (list (expand-file-name (substitute-in-file-name ans)))))
2776
2777 ;; I am somewhat divided on this string-default feature. It seems
2778 ;; to violate the principle-of-least-astonishment, in that it makes
2779 ;; the default harder to predict, so you actually have to look and see
2780 ;; what the default really is before choosing it. This can trip you up.
2781 ;; On the other hand, it can be useful, I guess. I would appreciate feedback
2782 ;; on this.
2783 ;; -Olin
2784
2785 \f
2786 ;; Simple process query facility.
2787 ;; ===========================================================================
2788 ;; This function is for commands that want to send a query to the process
2789 ;; and show the response to the user. For example, a command to get the
2790 ;; arglist for a Common Lisp function might send a "(arglist 'foo)" query
2791 ;; to an inferior Common Lisp process.
2792 ;;
2793 ;; This simple facility just sends strings to the inferior process and pops
2794 ;; up a window for the process buffer so you can see what the process
2795 ;; responds with. We don't do anything fancy like try to intercept what the
2796 ;; process responds with and put it in a pop-up window or on the message
2797 ;; line. We just display the buffer. Low tech. Simple. Works good.
2798
2799 (defun comint-proc-query (proc str)
2800 "Send to the inferior process PROC the string STR.
2801 Pop-up but do not select a window for the inferior process so that
2802 its response can be seen."
2803 (let* ((proc-buf (process-buffer proc))
2804 (proc-mark (process-mark proc)))
2805 (display-buffer proc-buf)
2806 (set-buffer proc-buf) ; but it's not the selected *window*
2807 (let ((proc-win (get-buffer-window proc-buf 0))
2808 (proc-pt (marker-position proc-mark)))
2809 (comint-send-string proc str) ; send the query
2810 (accept-process-output proc) ; wait for some output
2811 ;; Try to position the proc window so you can see the answer.
2812 ;; This is bogus code. If you delete the (sit-for 0), it breaks.
2813 ;; I don't know why. Wizards invited to improve it.
2814 (unless (pos-visible-in-window-p proc-pt proc-win)
2815 (let ((opoint (window-point proc-win)))
2816 (set-window-point proc-win proc-mark)
2817 (sit-for 0)
2818 (if (not (pos-visible-in-window-p opoint proc-win))
2819 (push-mark opoint)
2820 (set-window-point proc-win opoint)))))))
2821
2822 \f
2823 ;; Filename/command/history completion in a buffer
2824 ;; ===========================================================================
2825 ;; Useful completion functions, courtesy of the Ergo group.
2826
2827 ;; Six commands:
2828 ;; comint-dynamic-complete Complete or expand command, filename,
2829 ;; history at point.
2830 ;; comint-dynamic-complete-filename Complete filename at point.
2831 ;; comint-dynamic-list-filename-completions List completions in help buffer.
2832 ;; comint-replace-by-expanded-filename Expand and complete filename at point;
2833 ;; replace with expanded/completed name.
2834 ;; comint-dynamic-simple-complete Complete stub given candidates.
2835
2836 ;; These are not installed in the comint-mode keymap. But they are
2837 ;; available for people who want them. Shell-mode installs them:
2838 ;; (define-key shell-mode-map "\t" 'comint-dynamic-complete)
2839 ;; (define-key shell-mode-map "\M-?"
2840 ;; 'comint-dynamic-list-filename-completions)))
2841 ;;
2842 ;; Commands like this are fine things to put in load hooks if you
2843 ;; want them present in specific modes.
2844
2845 (defcustom comint-completion-autolist nil
2846 "If non-nil, automatically list possibilities on partial completion.
2847 This mirrors the optional behavior of tcsh."
2848 :type 'boolean
2849 :group 'comint-completion)
2850
2851 (defcustom comint-completion-addsuffix t
2852 "If non-nil, add a `/' to completed directories, ` ' to file names.
2853 If a cons pair, it should be of the form (DIRSUFFIX . FILESUFFIX) where
2854 DIRSUFFIX and FILESUFFIX are strings added on unambiguous or exact completion.
2855 This mirrors the optional behavior of tcsh."
2856 :type '(choice (const :tag "None" nil)
2857 (const :tag "Add /" t)
2858 (cons :tag "Suffix pair"
2859 (string :tag "Directory suffix")
2860 (string :tag "File suffix")))
2861 :group 'comint-completion)
2862
2863 (defcustom comint-completion-recexact nil
2864 "If non-nil, use shortest completion if characters cannot be added.
2865 This mirrors the optional behavior of tcsh.
2866
2867 A non-nil value is useful if `comint-completion-autolist' is non-nil too."
2868 :type 'boolean
2869 :group 'comint-completion)
2870
2871 (defcustom comint-completion-fignore nil
2872 "List of suffixes to be disregarded during file completion.
2873 This mirrors the optional behavior of bash and tcsh.
2874
2875 Note that this applies to `comint-dynamic-complete-filename' only."
2876 :type '(repeat (string :tag "Suffix"))
2877 :group 'comint-completion)
2878
2879 ;;;###autoload
2880 (defvar comint-file-name-prefix (purecopy "")
2881 "Prefix prepended to absolute file names taken from process input.
2882 This is used by Comint's and shell's completion functions, and by shell's
2883 directory tracking functions.")
2884
2885 (defvar comint-file-name-chars
2886 (if (memq system-type '(ms-dos windows-nt cygwin))
2887 "~/A-Za-z0-9_^$!#%&{}@`'.,:()-"
2888 "[]~/A-Za-z0-9+@:_.$#%,={}-")
2889 "String of characters valid in a file name.
2890 Note that all non-ASCII characters are considered valid in a file name
2891 regardless of what this variable says.
2892
2893 This is a good thing to set in mode hooks.")
2894
2895 (defvar comint-file-name-quote-list nil
2896 "List of characters to quote with `\\' when in a file name.
2897
2898 This is a good thing to set in mode hooks.")
2899
2900
2901 (defun comint-directory (directory)
2902 "Return expanded DIRECTORY, with `comint-file-name-prefix' if absolute."
2903 (expand-file-name (if (file-name-absolute-p directory)
2904 (concat comint-file-name-prefix directory)
2905 directory)))
2906
2907
2908 (defun comint-word (word-chars)
2909 "Return the word of WORD-CHARS at point, or nil if none is found.
2910 Word constituents are considered to be those in WORD-CHARS, which is like the
2911 inside of a \"[...]\" (see `skip-chars-forward'), plus all non-ASCII characters."
2912 (save-excursion
2913 (let ((here (point))
2914 giveup)
2915 (while (not giveup)
2916 (let ((startpoint (point)))
2917 (skip-chars-backward (concat "\\\\" word-chars))
2918 ;; Fixme: This isn't consistent with Bash, at least -- not
2919 ;; all non-ASCII chars should be word constituents.
2920 (if (and (> (- (point) 2) (point-min))
2921 (= (char-after (- (point) 2)) ?\\))
2922 (forward-char -2))
2923 (if (and (> (- (point) 1) (point-min))
2924 (>= (char-after (- (point) 1)) 128))
2925 (forward-char -1))
2926 (if (= (point) startpoint)
2927 (setq giveup t))))
2928 ;; Set match-data to match the entire string.
2929 (when (< (point) here)
2930 (set-match-data (list (point) here))
2931 (match-string 0)))))
2932
2933 (defun comint-substitute-in-file-name (filename)
2934 "Return FILENAME with environment variables substituted.
2935 Supports additional environment variable syntax of the command
2936 interpreter (e.g., the percent notation of cmd.exe on NT)."
2937 (let ((name (substitute-in-file-name filename)))
2938 (if (memq system-type '(ms-dos windows-nt))
2939 (let (env-var-name
2940 env-var-val)
2941 (save-match-data
2942 (while (string-match "%\\([^\\\\/]*\\)%" name)
2943 (setq env-var-name (match-string 1 name))
2944 (setq env-var-val (or (getenv env-var-name) ""))
2945 (setq name (replace-match env-var-val t t name))))))
2946 name))
2947
2948 (defun comint-match-partial-filename ()
2949 "Return the filename at point, or nil if none is found.
2950 Environment variables are substituted. See `comint-word'."
2951 (let ((filename (comint-word comint-file-name-chars)))
2952 (and filename (comint-substitute-in-file-name
2953 (comint-unquote-filename filename)))))
2954
2955
2956 (defun comint-quote-filename (filename)
2957 "Return FILENAME with magic characters quoted.
2958 Magic characters are those in `comint-file-name-quote-list'."
2959 (if (null comint-file-name-quote-list)
2960 filename
2961 (let ((regexp
2962 (format "[%s]"
2963 (mapconcat 'char-to-string comint-file-name-quote-list ""))))
2964 (save-match-data
2965 (let ((i 0))
2966 (while (string-match regexp filename i)
2967 (setq filename (replace-match "\\\\\\&" nil nil filename))
2968 (setq i (1+ (match-end 0)))))
2969 filename))))
2970
2971 (defun comint-unquote-filename (filename)
2972 "Return FILENAME with quoted characters unquoted."
2973 (if (null comint-file-name-quote-list)
2974 filename
2975 (save-match-data
2976 (let ((i 0))
2977 (while (string-match "\\\\\\(.\\)" filename i)
2978 (setq filename (replace-match "\\1" nil nil filename))
2979 (setq i (+ 1 (match-beginning 0)))))
2980 filename)))
2981
2982
2983 (defun comint-dynamic-complete ()
2984 "Dynamically perform completion at point.
2985 Calls the functions in `comint-dynamic-complete-functions' to perform
2986 completion until a function returns non-nil, at which point completion is
2987 assumed to have occurred."
2988 (interactive)
2989 (run-hook-with-args-until-success 'comint-dynamic-complete-functions))
2990
2991
2992 (defun comint-dynamic-complete-filename ()
2993 "Dynamically complete the filename at point.
2994 Completes if after a filename. See `comint-match-partial-filename' and
2995 `comint-dynamic-complete-as-filename'.
2996 This function is similar to `comint-replace-by-expanded-filename', except that
2997 it won't change parts of the filename already entered in the buffer; it just
2998 adds completion characters to the end of the filename. A completions listing
2999 may be shown in a help buffer if completion is ambiguous.
3000
3001 Completion is dependent on the value of `comint-completion-addsuffix',
3002 `comint-completion-recexact' and `comint-completion-fignore', and the timing of
3003 completions listing is dependent on the value of `comint-completion-autolist'.
3004
3005 Returns t if successful."
3006 (interactive)
3007 (when (comint-match-partial-filename)
3008 (unless (window-minibuffer-p (selected-window))
3009 (message "Completing file name..."))
3010 (comint-dynamic-complete-as-filename)))
3011
3012 (defun comint-dynamic-complete-as-filename ()
3013 "Dynamically complete at point as a filename.
3014 See `comint-dynamic-complete-filename'. Returns t if successful."
3015 (let* ((completion-ignore-case read-file-name-completion-ignore-case)
3016 (completion-ignored-extensions comint-completion-fignore)
3017 ;; If we bind this, it breaks remote directory tracking in rlogin.el.
3018 ;; I think it was originally bound to solve file completion problems,
3019 ;; but subsequent changes may have made this unnecessary. sm.
3020 ;;(file-name-handler-alist nil)
3021 (minibuffer-p (window-minibuffer-p (selected-window)))
3022 (success t)
3023 (dirsuffix (cond ((not comint-completion-addsuffix)
3024 "")
3025 ((not (consp comint-completion-addsuffix))
3026 "/")
3027 (t
3028 (car comint-completion-addsuffix))))
3029 (filesuffix (cond ((not comint-completion-addsuffix)
3030 "")
3031 ((not (consp comint-completion-addsuffix))
3032 " ")
3033 (t
3034 (cdr comint-completion-addsuffix))))
3035 (filename (comint-match-partial-filename))
3036 (filename-beg (if filename (match-beginning 0) (point)))
3037 (filename-end (if filename (match-end 0) (point)))
3038 (filename (or filename ""))
3039 (filedir (file-name-directory filename))
3040 (filenondir (file-name-nondirectory filename))
3041 (directory (if filedir (comint-directory filedir) default-directory))
3042 (completion (file-name-completion filenondir directory)))
3043 (cond ((null completion)
3044 (if minibuffer-p
3045 (minibuffer-message "No completions of %s" filename)
3046 (message "No completions of %s" filename))
3047 (setq success nil))
3048 ((eq completion t) ; Means already completed "file".
3049 (insert filesuffix)
3050 (unless minibuffer-p
3051 (message "Sole completion")))
3052 ((string-equal completion "") ; Means completion on "directory/".
3053 (comint-dynamic-list-filename-completions))
3054 (t ; Completion string returned.
3055 (let ((file (concat (file-name-as-directory directory) completion)))
3056 ;; Insert completion. Note that the completion string
3057 ;; may have a different case than what's in the prompt,
3058 ;; if read-file-name-completion-ignore-case is non-nil,
3059 (delete-region filename-beg filename-end)
3060 (if filedir (insert (comint-quote-filename filedir)))
3061 (insert (comint-quote-filename (directory-file-name completion)))
3062 (cond ((symbolp (file-name-completion completion directory))
3063 ;; We inserted a unique completion.
3064 (insert (if (file-directory-p file) dirsuffix filesuffix))
3065 (unless minibuffer-p
3066 (message "Completed")))
3067 ((and comint-completion-recexact comint-completion-addsuffix
3068 (string-equal filenondir completion)
3069 (file-exists-p file))
3070 ;; It's not unique, but user wants shortest match.
3071 (insert (if (file-directory-p file) dirsuffix filesuffix))
3072 (unless minibuffer-p
3073 (message "Completed shortest")))
3074 ((or comint-completion-autolist
3075 (string-equal filenondir completion))
3076 ;; It's not unique, list possible completions.
3077 (comint-dynamic-list-filename-completions))
3078 (t
3079 (unless minibuffer-p
3080 (message "Partially completed")))))))
3081 success))
3082
3083
3084 (defun comint-replace-by-expanded-filename ()
3085 "Dynamically expand and complete the filename at point.
3086 Replace the filename with an expanded, canonicalized and completed replacement.
3087 \"Expanded\" means environment variables (e.g., $HOME) and `~'s are replaced
3088 with the corresponding directories. \"Canonicalized\" means `..' and `.' are
3089 removed, and the filename is made absolute instead of relative. For expansion
3090 see `expand-file-name' and `substitute-in-file-name'. For completion see
3091 `comint-dynamic-complete-filename'."
3092 (interactive)
3093 (let ((filename (comint-match-partial-filename)))
3094 (when filename
3095 (replace-match (expand-file-name filename) t t)
3096 (comint-dynamic-complete-filename))))
3097
3098
3099 (defun comint-dynamic-simple-complete (stub candidates)
3100 "Dynamically complete STUB from CANDIDATES list.
3101 This function inserts completion characters at point by completing STUB from
3102 the strings in CANDIDATES. A completions listing may be shown in a help buffer
3103 if completion is ambiguous.
3104
3105 Returns nil if no completion was inserted.
3106 Returns `sole' if completed with the only completion match.
3107 Returns `shortest' if completed with the shortest of the completion matches.
3108 Returns `partial' if completed as far as possible with the completion matches.
3109 Returns `listed' if a completion listing was shown.
3110
3111 See also `comint-dynamic-complete-filename'."
3112 (let* ((completion-ignore-case (memq system-type '(ms-dos windows-nt cygwin)))
3113 (minibuffer-p (window-minibuffer-p (selected-window)))
3114 (suffix (cond ((not comint-completion-addsuffix) "")
3115 ((not (consp comint-completion-addsuffix)) " ")
3116 (t (cdr comint-completion-addsuffix))))
3117 (completions (all-completions stub candidates)))
3118 (cond ((null completions)
3119 (if minibuffer-p
3120 (minibuffer-message "No completions of %s" stub)
3121 (message "No completions of %s" stub))
3122 nil)
3123 ((= 1 (length completions)) ; Gotcha!
3124 (let ((completion (car completions)))
3125 (if (string-equal completion stub)
3126 (unless minibuffer-p
3127 (message "Sole completion"))
3128 (insert (substring completion (length stub)))
3129 (unless minibuffer-p
3130 (message "Completed")))
3131 (insert suffix)
3132 'sole))
3133 (t ; There's no unique completion.
3134 (let ((completion (try-completion stub candidates)))
3135 ;; Insert the longest substring.
3136 (insert (substring completion (length stub)))
3137 (cond ((and comint-completion-recexact comint-completion-addsuffix
3138 (string-equal stub completion)
3139 (member completion completions))
3140 ;; It's not unique, but user wants shortest match.
3141 (insert suffix)
3142 (unless minibuffer-p
3143 (message "Completed shortest"))
3144 'shortest)
3145 ((or comint-completion-autolist
3146 (string-equal stub completion))
3147 ;; It's not unique, list possible completions.
3148 (comint-dynamic-list-completions completions stub)
3149 'listed)
3150 (t
3151 (unless minibuffer-p
3152 (message "Partially completed"))
3153 'partial)))))))
3154
3155
3156 (defun comint-dynamic-list-filename-completions ()
3157 "List in help buffer possible completions of the filename at point."
3158 (interactive)
3159 (let* ((completion-ignore-case read-file-name-completion-ignore-case)
3160 ;; If we bind this, it breaks remote directory tracking in rlogin.el.
3161 ;; I think it was originally bound to solve file completion problems,
3162 ;; but subsequent changes may have made this unnecessary. sm.
3163 ;;(file-name-handler-alist nil)
3164 (filename (or (comint-match-partial-filename) ""))
3165 (filedir (file-name-directory filename))
3166 (filenondir (file-name-nondirectory filename))
3167 (directory (if filedir (comint-directory filedir) default-directory))
3168 (completions (file-name-all-completions filenondir directory)))
3169 (if (not completions)
3170 (if (window-minibuffer-p (selected-window))
3171 (minibuffer-message "No completions of %s" filename)
3172 (message "No completions of %s" filename))
3173 (comint-dynamic-list-completions
3174 (mapcar 'comint-quote-filename completions)
3175 (comint-quote-filename filenondir)))))
3176
3177
3178 ;; This is bound locally in a *Completions* buffer to the list of
3179 ;; completions displayed, and is used to detect the case where the same
3180 ;; command is repeatedly used without the set of completions changing.
3181 (defvar comint-displayed-dynamic-completions nil)
3182
3183 (defvar comint-dynamic-list-completions-config nil)
3184
3185 (defun comint-dynamic-list-completions (completions &optional common-substring)
3186 "List in help buffer sorted COMPLETIONS.
3187 The meaning of COMMON-SUBSTRING is the same as in `display-completion-list'.
3188 Typing SPC flushes the help buffer."
3189 (let ((window (get-buffer-window "*Completions*" 0)))
3190 (setq completions (sort completions 'string-lessp))
3191 (if (and (eq last-command this-command)
3192 window (window-live-p window) (window-buffer window)
3193 (buffer-name (window-buffer window))
3194 ;; The above tests are not sufficient to detect the case where we
3195 ;; should scroll, because the top-level interactive command may
3196 ;; not have displayed a completions window the last time it was
3197 ;; invoked, and there may be such a window left over from a
3198 ;; previous completion command with a different set of
3199 ;; completions. To detect that case, we also test that the set
3200 ;; of displayed completions is in fact the same as the previously
3201 ;; displayed set.
3202 (equal completions
3203 (buffer-local-value 'comint-displayed-dynamic-completions
3204 (window-buffer window))))
3205 ;; If this command was repeated, and
3206 ;; there's a fresh completion window with a live buffer,
3207 ;; and this command is repeated, scroll that window.
3208 (with-current-buffer (window-buffer window)
3209 (if (pos-visible-in-window-p (point-max) window)
3210 (set-window-start window (point-min))
3211 (save-selected-window
3212 (select-window window)
3213 (scroll-up))))
3214
3215 ;; Display a completion list for the first time.
3216 (setq comint-dynamic-list-completions-config
3217 (current-window-configuration))
3218 (with-output-to-temp-buffer "*Completions*"
3219 (display-completion-list completions common-substring))
3220 (if (window-minibuffer-p (selected-window))
3221 (minibuffer-message "Type space to flush; repeat completion command to scroll")
3222 (message "Type space to flush; repeat completion command to scroll")))
3223
3224 ;; Read the next key, to process SPC.
3225 (let (key first)
3226 (if (with-current-buffer (get-buffer "*Completions*")
3227 (set (make-local-variable 'comint-displayed-dynamic-completions)
3228 completions)
3229 (setq key (read-key-sequence nil)
3230 first (aref key 0))
3231 (and (consp first) (consp (event-start first))
3232 (eq (window-buffer (posn-window (event-start first)))
3233 (get-buffer "*Completions*"))
3234 (eq (key-binding key) 'mouse-choose-completion)))
3235 ;; If the user does mouse-choose-completion with the mouse,
3236 ;; execute the command, then delete the completion window.
3237 (progn
3238 (choose-completion first)
3239 (set-window-configuration comint-dynamic-list-completions-config))
3240 (if (eq first ?\s)
3241 (set-window-configuration comint-dynamic-list-completions-config)
3242 (setq unread-command-events (listify-key-sequence key)))))))
3243
3244 \f
3245 (defun comint-get-next-from-history ()
3246 "After fetching a line from input history, this fetches the following line.
3247 In other words, this recalls the input line after the line you recalled last.
3248 You can use this to repeat a sequence of input lines."
3249 (interactive)
3250 (if comint-save-input-ring-index
3251 (progn
3252 (setq comint-input-ring-index (1+ comint-save-input-ring-index))
3253 (comint-next-input 1))
3254 (message "No previous history command")))
3255
3256 (defun comint-accumulate ()
3257 "Accumulate a line to send as input along with more lines.
3258 This inserts a newline so that you can enter more text
3259 to be sent along with this line. Use \\[comint-send-input]
3260 to send all the accumulated input, at once.
3261 The entire accumulated text becomes one item in the input history
3262 when you send it."
3263 (interactive)
3264 (insert "\n")
3265 (set-marker comint-accum-marker (point))
3266 (if comint-input-ring-index
3267 (setq comint-save-input-ring-index
3268 (- comint-input-ring-index 1))))
3269
3270 (defun comint-goto-process-mark ()
3271 "Move point to the process mark.
3272 The process mark separates output, and input already sent,
3273 from input that has not yet been sent."
3274 (interactive)
3275 (let ((proc (or (get-buffer-process (current-buffer))
3276 (error "Current buffer has no process"))))
3277 (goto-char (process-mark proc))
3278 (when (called-interactively-p 'interactive)
3279 (message "Point is now at the process mark"))))
3280
3281 (defun comint-bol-or-process-mark ()
3282 "Move point to beginning of line (after prompt) or to the process mark.
3283 The first time you use this command, it moves to the beginning of the line
3284 \(but after the prompt, if any). If you repeat it again immediately,
3285 it moves point to the process mark.
3286
3287 The process mark separates the process output, along with input already sent,
3288 from input that has not yet been sent. Ordinarily, the process mark
3289 is at the beginning of the current input line; but if you have
3290 used \\[comint-accumulate] to send multiple lines at once,
3291 the process mark is at the beginning of the accumulated input."
3292 (interactive)
3293 (if (not (eq last-command 'comint-bol-or-process-mark))
3294 (comint-bol nil)
3295 (comint-goto-process-mark)))
3296
3297 (defun comint-set-process-mark ()
3298 "Set the process mark at point."
3299 (interactive)
3300 (let ((proc (or (get-buffer-process (current-buffer))
3301 (error "Current buffer has no process"))))
3302 (set-marker (process-mark proc) (point))
3303 (message "Process mark set")))
3304
3305 \f
3306 ;; Author: Peter Breton <pbreton@cs.umb.edu>
3307
3308 ;; This little add-on for comint is intended to make it easy to get
3309 ;; output from currently active comint buffers into another buffer,
3310 ;; or buffers, and then go back to using the comint shell.
3311 ;;
3312 ;; My particular use is SQL interpreters; I want to be able to execute a
3313 ;; query using the process associated with a comint-buffer, and save that
3314 ;; somewhere else. Because the process might have state (for example, it
3315 ;; could be in an uncommitted transaction), just running starting a new
3316 ;; process and having it execute the query and then finish, would not
3317 ;; work. I'm sure there are other uses as well, although in many cases
3318 ;; starting a new process is the simpler, and thus preferable, approach.
3319 ;;
3320 ;; The basic implementation is as follows: comint-redirect changes the
3321 ;; preoutput filter functions (`comint-preoutput-filter-functions') to use
3322 ;; its own filter. The filter puts the output into the designated buffer,
3323 ;; or buffers, until it sees a regexp that tells it to stop (by default,
3324 ;; this is the prompt for the interpreter, `comint-prompt-regexp'). When it
3325 ;; sees the stop regexp, it restores the old filter functions, and runs
3326 ;; `comint-redirect-hook'.
3327 ;;
3328 ;; Each comint buffer may only use one redirection at a time, but any number
3329 ;; of different comint buffers may be simultaneously redirected.
3330 ;;
3331 ;; NOTE: It is EXTREMELY important that `comint-prompt-regexp' be set to the
3332 ;; correct prompt for your interpreter, or that you supply a regexp that says
3333 ;; when the redirection is finished. Otherwise, redirection will continue
3334 ;; indefinitely. The code now does a sanity check to ensure that it can find
3335 ;; a prompt in the comint buffer; however, it is still important to ensure that
3336 ;; this prompt is set correctly.
3337 ;;
3338 ;; XXX: This doesn't work so well unless `comint-prompt-regexp' is set;
3339 ;; perhaps it should prompt for a terminating string (with an
3340 ;; appropriate magic default by examining what we think is the prompt)?
3341 ;;
3342 ;; Fixme: look for appropriate fields, rather than regexp, if
3343 ;; `comint-use-prompt-regexp' is true.
3344
3345 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3346 ;; Variables
3347 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3348
3349 (defcustom comint-redirect-verbose nil
3350 "If non-nil, print messages each time the redirection filter is invoked.
3351 Also print a message when redirection is completed."
3352 :group 'comint
3353 :type 'boolean)
3354
3355 ;; Directly analagous to comint-preoutput-filter-functions
3356 (defvar comint-redirect-filter-functions nil
3357 "List of functions to call before inserting redirected process output.
3358 Each function gets one argument, a string containing the text received
3359 from the subprocess. It should return the string to insert, perhaps
3360 the same string that was received, or perhaps a modified or transformed
3361 string.
3362
3363 The functions on the list are called sequentially, and each one is given
3364 the string returned by the previous one. The string returned by the
3365 last function is the text that is actually inserted in the redirection buffer.
3366
3367 You can use `add-hook' to add functions to this list
3368 either globally or locally.")
3369
3370 ;; Internal variables
3371
3372 (defvar comint-redirect-output-buffer nil
3373 "The buffer or list of buffers to put output into.")
3374
3375 (defvar comint-redirect-finished-regexp nil
3376 "Regular expression that determines when to stop redirection in Comint.
3377 When the redirection filter function is given output that matches this regexp,
3378 the output is inserted as usual, and redirection is completed.")
3379
3380 (defvar comint-redirect-insert-matching-regexp nil
3381 "If non-nil, the text that ends a redirection is included in it.
3382 More precisely, the text that matches `comint-redirect-finished-regexp'
3383 and therefore terminates an output redirection is inserted in the
3384 redirection target buffer, along with the preceding output.")
3385
3386 (defvar comint-redirect-echo-input nil
3387 "Non-nil means echo input in the process buffer even during redirection.")
3388
3389 (defvar comint-redirect-completed nil
3390 "Non-nil if redirection has completed in the current buffer.")
3391
3392 (defvar comint-redirect-original-mode-line-process nil
3393 "Original mode line for redirected process.")
3394
3395 (defvar comint-redirect-perform-sanity-check t
3396 "If non-nil, check that redirection is likely to complete successfully.
3397 More precisely, before starting a redirection, verify that the
3398 regular expression `comint-redirect-finished-regexp' that controls
3399 when to terminate it actually matches some text already in the process
3400 buffer. The idea is that this regular expression should match a prompt
3401 string, and that there ought to be at least one copy of your prompt string
3402 in the process buffer already.")
3403
3404 (defvar comint-redirect-original-filter-function nil
3405 "The process filter that was in place when redirection is started.
3406 When redirection is completed, the process filter is restored to
3407 this value.")
3408
3409 (defvar comint-redirect-subvert-readonly nil
3410 "Non-nil means `comint-redirect' can insert into read-only buffers.
3411 This works by binding `inhibit-read-only' around the insertion.
3412 This is useful, for instance, for insertion into Help mode buffers.
3413 You probably want to set it locally to the output buffer.")
3414
3415 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3416 ;; Functions
3417 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3418
3419 (defun comint-redirect-setup (output-buffer
3420 comint-buffer
3421 finished-regexp
3422 &optional echo-input)
3423 "Set up for output redirection.
3424 This function sets local variables that are used by `comint-redirect-filter'
3425 to perform redirection.
3426
3427 Output from COMINT-BUFFER is redirected to OUTPUT-BUFFER, until something
3428 in the output matches FINISHED-REGEXP.
3429
3430 If optional argument ECHO-INPUT is non-nil, output is echoed to the
3431 original Comint buffer.
3432
3433 This function is called by `comint-redirect-send-command-to-process',
3434 and does not normally need to be invoked by the end user or programmer."
3435 (with-current-buffer comint-buffer
3436
3437 (make-local-variable 'comint-redirect-original-mode-line-process)
3438 (setq comint-redirect-original-mode-line-process mode-line-process)
3439
3440 (make-local-variable 'comint-redirect-output-buffer)
3441 (setq comint-redirect-output-buffer output-buffer)
3442
3443 (make-local-variable 'comint-redirect-finished-regexp)
3444 (setq comint-redirect-finished-regexp finished-regexp)
3445
3446 (make-local-variable 'comint-redirect-echo-input)
3447 (setq comint-redirect-echo-input echo-input)
3448
3449 (make-local-variable 'comint-redirect-completed)
3450 (setq comint-redirect-completed nil)
3451
3452 (setq mode-line-process
3453 (if mode-line-process
3454 (list (concat (elt mode-line-process 0) " Redirection"))
3455 (list ":%s Redirection")))))
3456
3457 (defun comint-redirect-cleanup ()
3458 "End a Comint redirection. See `comint-redirect-send-command'."
3459 (interactive)
3460 ;; Restore the process filter
3461 (set-process-filter (get-buffer-process (current-buffer))
3462 comint-redirect-original-filter-function)
3463 ;; Restore the mode line
3464 (setq mode-line-process comint-redirect-original-mode-line-process)
3465 ;; Set the completed flag
3466 (setq comint-redirect-completed t))
3467
3468 ;; Because the cleanup happens as a callback, it's not easy to guarantee
3469 ;; that it really occurs.
3470 (defalias 'comint-redirect-remove-redirection 'comint-redirect-cleanup)
3471
3472 (defun comint-redirect-filter (process input-string)
3473 "Filter function which redirects output from PROCESS to a buffer or buffers.
3474 The variable `comint-redirect-output-buffer' says which buffer(s) to
3475 place output in.
3476
3477 INPUT-STRING is the input from the Comint process.
3478
3479 This function runs as a process filter, and does not need to be invoked by the
3480 end user."
3481 (and process
3482 (with-current-buffer (process-buffer process)
3483 (comint-redirect-preoutput-filter input-string)
3484 ;; If we have to echo output, give it to the original filter function
3485 (and comint-redirect-echo-input
3486 comint-redirect-original-filter-function
3487 (funcall comint-redirect-original-filter-function
3488 process input-string)))))
3489
3490
3491 (defun comint-redirect-preoutput-filter (input-string)
3492 "Comint filter function which redirects Comint output to a buffer or buffers.
3493 The variable `comint-redirect-output-buffer' says which buffer(s) to
3494 place output in.
3495
3496 INPUT-STRING is the input from the Comint process.
3497
3498 This function does not need to be invoked by the end user."
3499 (let ((output-buffer-list
3500 (if (listp comint-redirect-output-buffer)
3501 comint-redirect-output-buffer
3502 (list comint-redirect-output-buffer)))
3503 (filtered-input-string input-string))
3504
3505 ;; If there are any filter functions, give them a chance to modify
3506 ;; the string.
3507 (let ((functions comint-redirect-filter-functions))
3508 (while (and functions filtered-input-string)
3509 (if (eq (car functions) t)
3510 ;; If a local value says "use the default value too",
3511 ;; do that.
3512 (let ((functions
3513 (default-value 'comint-redirect-filter-functions)))
3514 (while (and functions filtered-input-string)
3515 (setq filtered-input-string
3516 (funcall (car functions) filtered-input-string))
3517 (setq functions (cdr functions))))
3518 (setq filtered-input-string
3519 (funcall (car functions) filtered-input-string)))
3520 (setq functions (cdr functions))))
3521
3522 ;; Clobber `comint-redirect-finished-regexp'
3523 (or comint-redirect-insert-matching-regexp
3524 (and (string-match comint-redirect-finished-regexp filtered-input-string)
3525 (setq filtered-input-string
3526 (replace-match "" nil nil filtered-input-string))))
3527
3528 ;; Send output to all registered buffers
3529 (save-excursion
3530 (dolist (buf output-buffer-list)
3531 ;; Set this buffer to the output buffer
3532 (set-buffer (get-buffer-create buf))
3533 ;; Go to the end of the buffer
3534 (goto-char (point-max))
3535 ;; Insert the output
3536 (let ((inhibit-read-only comint-redirect-subvert-readonly))
3537 (insert filtered-input-string))))
3538
3539 ;; Message
3540 (and comint-redirect-verbose
3541 (message "Redirected output to buffer(s) %s"
3542 (mapconcat 'identity output-buffer-list " ")))
3543
3544 ;; If we see the prompt, tidy up
3545 ;; We'll look for the prompt in the original string, so nobody can
3546 ;; clobber it
3547 (and (string-match comint-redirect-finished-regexp input-string)
3548 (progn
3549 (and comint-redirect-verbose
3550 (message "Redirection completed"))
3551 (comint-redirect-cleanup)
3552 (run-hooks 'comint-redirect-hook)))
3553 ;; Echo input?
3554 (if comint-redirect-echo-input
3555 filtered-input-string
3556 "")))
3557
3558 ;;;###autoload
3559 (defun comint-redirect-send-command (command output-buffer echo &optional no-display)
3560 "Send COMMAND to process in current buffer, with output to OUTPUT-BUFFER.
3561 With prefix arg ECHO, echo output in process buffer.
3562
3563 If NO-DISPLAY is non-nil, do not show the output buffer."
3564 (interactive "sCommand: \nBOutput Buffer: \nP")
3565 (let ((process (get-buffer-process (current-buffer))))
3566 (if process
3567 (comint-redirect-send-command-to-process
3568 command output-buffer (current-buffer) echo no-display)
3569 (error "No process for current buffer"))))
3570
3571 ;;;###autoload
3572 (defun comint-redirect-send-command-to-process
3573 (command output-buffer process echo &optional no-display)
3574 "Send COMMAND to PROCESS, with output to OUTPUT-BUFFER.
3575 With prefix arg, echo output in process buffer.
3576
3577 If NO-DISPLAY is non-nil, do not show the output buffer."
3578 (interactive "sCommand: \nBOutput Buffer: \nbProcess Buffer: \nP")
3579 (let* (;; The process buffer
3580 (process-buffer (if (processp process)
3581 (process-buffer process)
3582 process))
3583 (proc (get-buffer-process process-buffer)))
3584 ;; Change to the process buffer
3585 (with-current-buffer process-buffer
3586
3587 ;; Make sure there's a prompt in the current process buffer
3588 (and comint-redirect-perform-sanity-check
3589 (save-excursion
3590 (goto-char (point-max))
3591 (or (re-search-backward comint-prompt-regexp nil t)
3592 (error "No prompt found or `comint-prompt-regexp' not set properly"))))
3593
3594 ;; Set up for redirection
3595 (comint-redirect-setup
3596 output-buffer
3597 (current-buffer) ; Comint Buffer
3598 comint-prompt-regexp ; Finished Regexp
3599 echo) ; Echo input
3600
3601 ;; Set the filter
3602 (setq comint-redirect-original-filter-function ; Save the old filter
3603 (process-filter proc))
3604 (set-process-filter proc 'comint-redirect-filter)
3605
3606 ;; Send the command
3607 (process-send-string (current-buffer) (concat command "\n"))
3608
3609 ;; Show the output
3610 (or no-display
3611 (display-buffer
3612 (get-buffer-create
3613 (if (listp output-buffer)
3614 (car output-buffer)
3615 output-buffer)))))))
3616
3617 ;;;###autoload
3618 (defun comint-redirect-results-list (command regexp regexp-group)
3619 "Send COMMAND to current process.
3620 Return a list of expressions in the output which match REGEXP.
3621 REGEXP-GROUP is the regular expression group in REGEXP to use."
3622 (comint-redirect-results-list-from-process
3623 (get-buffer-process (current-buffer))
3624 command regexp regexp-group))
3625
3626 ;;;###autoload
3627 (defun comint-redirect-results-list-from-process (process command regexp regexp-group)
3628 "Send COMMAND to PROCESS.
3629 Return a list of expressions in the output which match REGEXP.
3630 REGEXP-GROUP is the regular expression group in REGEXP to use."
3631 (let ((output-buffer " *Comint Redirect Work Buffer*")
3632 results)
3633 (with-current-buffer (get-buffer-create output-buffer)
3634 (erase-buffer)
3635 (comint-redirect-send-command-to-process command
3636 output-buffer process nil t)
3637 ;; Wait for the process to complete
3638 (set-buffer (process-buffer process))
3639 (while (null comint-redirect-completed)
3640 (accept-process-output nil 1))
3641 ;; Collect the output
3642 (set-buffer output-buffer)
3643 (goto-char (point-min))
3644 ;; Skip past the command, if it was echoed
3645 (and (looking-at command)
3646 (forward-line))
3647 (while (re-search-forward regexp nil t)
3648 (push (buffer-substring-no-properties
3649 (match-beginning regexp-group)
3650 (match-end regexp-group))
3651 results))
3652 results)))
3653
3654 (dolist (x '("^Not at command line$"
3655 "^Empty input ring$"
3656 "^No history$"
3657 "^Not found$" ; Too common?
3658 "^Current buffer has no process$"))
3659 (add-to-list 'debug-ignored-errors x))
3660
3661 \f
3662 ;; Converting process modes to use comint mode
3663 ;; ===========================================================================
3664 ;; The code in the Emacs 19 distribution has all been modified to use comint
3665 ;; where needed. However, there are `third-party' packages out there that
3666 ;; still use the old shell mode. Here's a guide to conversion.
3667 ;;
3668 ;; Renaming variables
3669 ;; Most of the work is renaming variables and functions. These are the common
3670 ;; ones:
3671 ;; Local variables:
3672 ;; last-input-start comint-last-input-start
3673 ;; last-input-end comint-last-input-end
3674 ;; shell-prompt-pattern comint-prompt-regexp
3675 ;; shell-set-directory-error-hook <no equivalent>
3676 ;; Miscellaneous:
3677 ;; shell-set-directory <unnecessary>
3678 ;; shell-mode-map comint-mode-map
3679 ;; Commands:
3680 ;; shell-send-input comint-send-input
3681 ;; shell-send-eof comint-delchar-or-maybe-eof
3682 ;; kill-shell-input comint-kill-input
3683 ;; interrupt-shell-subjob comint-interrupt-subjob
3684 ;; stop-shell-subjob comint-stop-subjob
3685 ;; quit-shell-subjob comint-quit-subjob
3686 ;; kill-shell-subjob comint-kill-subjob
3687 ;; kill-output-from-shell comint-delete-output
3688 ;; show-output-from-shell comint-show-output
3689 ;; copy-last-shell-input Use comint-previous-input/comint-next-input
3690 ;;
3691 ;; SHELL-SET-DIRECTORY is gone, its functionality taken over by
3692 ;; SHELL-DIRECTORY-TRACKER, the shell mode's comint-input-filter-functions.
3693 ;; Comint mode does not provide functionality equivalent to
3694 ;; shell-set-directory-error-hook; it is gone.
3695 ;;
3696 ;; comint-last-input-start is provided for modes which want to munge
3697 ;; the buffer after input is sent, perhaps because the inferior
3698 ;; insists on echoing the input. The LAST-INPUT-START variable in
3699 ;; the old shell package was used to implement a history mechanism,
3700 ;; but you should think twice before using comint-last-input-start
3701 ;; for this; the input history ring often does the job better.
3702 ;;
3703 ;; If you are implementing some process-in-a-buffer mode, called foo-mode, do
3704 ;; *not* create the comint-mode local variables in your foo-mode function.
3705 ;; This is not modular. Instead, call comint-mode, and let *it* create the
3706 ;; necessary comint-specific local variables. Then create the
3707 ;; foo-mode-specific local variables in foo-mode. Set the buffer's keymap to
3708 ;; be foo-mode-map, and its mode to be foo-mode. Set the comint-mode hooks
3709 ;; (comint-{prompt-regexp, input-filter, input-filter-functions,
3710 ;; get-old-input) that need to be different from the defaults. Call
3711 ;; foo-mode-hook, and you're done. Don't run the comint-mode hook yourself;
3712 ;; comint-mode will take care of it. The following example, from shell.el,
3713 ;; is typical:
3714 ;;
3715 ;; (defvar shell-mode-map '())
3716 ;; (cond ((not shell-mode-map)
3717 ;; (setq shell-mode-map (copy-keymap comint-mode-map))
3718 ;; (define-key shell-mode-map "\C-c\C-f" 'shell-forward-command)
3719 ;; (define-key shell-mode-map "\C-c\C-b" 'shell-backward-command)
3720 ;; (define-key shell-mode-map "\t" 'comint-dynamic-complete)
3721 ;; (define-key shell-mode-map "\M-?"
3722 ;; 'comint-dynamic-list-filename-completions)))
3723 ;;
3724 ;; (defun shell-mode ()
3725 ;; (interactive)
3726 ;; (comint-mode)
3727 ;; (setq comint-prompt-regexp shell-prompt-pattern)
3728 ;; (setq major-mode 'shell-mode)
3729 ;; (setq mode-name "Shell")
3730 ;; (use-local-map shell-mode-map)
3731 ;; (make-local-variable 'shell-directory-stack)
3732 ;; (setq shell-directory-stack nil)
3733 ;; (add-hook 'comint-input-filter-functions 'shell-directory-tracker)
3734 ;; (run-mode-hooks 'shell-mode-hook))
3735 ;;
3736 ;;
3737 ;; Completion for comint-mode users
3738 ;;
3739 ;; For modes that use comint-mode, comint-dynamic-complete-functions is the
3740 ;; hook to add completion functions to. Functions on this list should return
3741 ;; non-nil if completion occurs (i.e., further completion should not occur).
3742 ;; You could use comint-dynamic-simple-complete to do the bulk of the
3743 ;; completion job.
3744 \f
3745
3746 (provide 'comint)
3747
3748 ;; arch-tag: 1793314c-09db-40be-9549-9aeae3e75164
3749 ;;; comint.el ends here