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