(r_re_alloc): Correct realloc behavior--allow shrinking
[bpt/emacs.git] / lisp / comint.el
CommitLineData
c0274f38 1;;; comint.el --- general command interpreter in a window stuff
e41b2db1 2
42453245 3;; Copyright (C) 1988, 1990, 1992, 1993, 1994 Free Software Foundation, Inc.
c0274f38 4
1586b965 5;; Author: Olin Shivers <shivers@cs.cmu.edu>
eb6c110a 6;; Adapted-by: Simon Marshall <simon@gnu.ai.mit.edu>
e9571d2a 7;; Keywords: processes
3a801d0c 8
1586b965 9;; This file is part of GNU Emacs.
be9b65ac 10
1586b965
RS
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
be9b65ac 15
1586b965
RS
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
be9b65ac 20
1586b965
RS
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to
23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
be9b65ac 24
e5167999
ER
25;;; Commentary:
26
49116ac0
JB
27;;; Please send me bug reports, bug fixes, and extensions, so that I can
28;;; merge them into the master source.
29;;; - Olin Shivers (shivers@cs.cmu.edu)
eb6c110a 30;;; - Simon Marshall (simon@gnu.ai.mit.edu)
49116ac0 31
be9b65ac
DL
32;;; This file defines a general command-interpreter-in-a-buffer package
33;;; (comint mode). The idea is that you can build specific process-in-a-buffer
34;;; modes on top of comint mode -- e.g., lisp, shell, scheme, T, soar, ....
35;;; This way, all these specific packages share a common base functionality,
36;;; and a common set of bindings, which makes them easier to use (and
37;;; saves code, implementation time, etc., etc.).
38
49116ac0 39;;; Several packages are already defined using comint mode:
735b3061 40;;; - shell.el defines a shell-in-a-buffer mode.
49116ac0 41;;; - cmulisp.el defines a simple lisp-in-a-buffer mode.
49116ac0
JB
42;;;
43;;; - The file cmuscheme.el defines a scheme-in-a-buffer mode.
44;;; - The file tea.el tunes scheme and inferior-scheme modes for T.
45;;; - The file soar.el tunes lisp and inferior-lisp modes for Soar.
46;;; - cmutex.el defines tex and latex modes that invoke tex, latex, bibtex,
47;;; previewers, and printers from within emacs.
48;;; - background.el allows csh-like job control inside emacs.
49;;; It is pretty easy to make new derived modes for other processes.
50
be9b65ac
DL
51;;; For documentation on the functionality provided by comint mode, and
52;;; the hooks available for customising it, see the comments below.
53;;; For further information on the standard derived modes (shell,
54;;; inferior-lisp, inferior-scheme, ...), see the relevant source files.
55
49116ac0
JB
56;;; For hints on converting existing process modes (e.g., tex-mode,
57;;; background, dbx, gdb, kermit, prolog, telnet) to use comint-mode
be9b65ac
DL
58;;; instead of shell-mode, see the notes at the end of this file.
59
be9b65ac 60\f
49116ac0
JB
61;;; Brief Command Documentation:
62;;;============================================================================
735b3061 63;;; Comint Mode Commands: (common to all derived modes, like shell & cmulisp
49116ac0
JB
64;;; mode)
65;;;
66;;; m-p comint-previous-input Cycle backwards in input history
67;;; m-n comint-next-input Cycle forwards
3ee91e68
RS
68;;; m-r comint-previous-matching-input Previous input matching a regexp
69;;; m-s comint-next-matching-input Next input that matches
d637fa56 70;;; m-c-l comint-show-output Show last batch of process output
49116ac0 71;;; return comint-send-input
3ee91e68 72;;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff
a77db92b 73;;; c-c c-a comint-bol Beginning of line; skip prompt
49116ac0
JB
74;;; c-c c-u comint-kill-input ^u
75;;; c-c c-w backward-kill-word ^w
76;;; c-c c-c comint-interrupt-subjob ^c
77;;; c-c c-z comint-stop-subjob ^z
78;;; c-c c-\ comint-quit-subjob ^\
79;;; c-c c-o comint-kill-output Delete last batch of process output
80;;; c-c c-r comint-show-output Show last batch of process output
38ee91fe 81;;; c-c c-l comint-dynamic-list-input-ring List input history
49116ac0 82;;;
3ee91e68 83;;; Not bound by default in comint-mode (some are in shell mode)
21d9bf27 84;;; comint-run Run a program under comint-mode
be9b65ac 85;;; send-invisible Read a line w/o echo, and send to proc
3ee91e68
RS
86;;; comint-dynamic-complete-filename Complete filename at point.
87;;; comint-dynamic-complete-variable Complete variable name at point.
88;;; comint-dynamic-list-filename-completions List completions in help buffer.
be9b65ac
DL
89;;; comint-replace-by-expanded-filename Expand and complete filename at point;
90;;; replace with expanded/completed name.
3ee91e68
RS
91;;; comint-replace-by-expanded-history Expand history at point;
92;;; replace with expanded name.
93;;; comint-magic-space Expand history and add (a) space(s).
49116ac0 94;;; comint-kill-subjob No mercy.
3ee91e68 95;;; comint-show-maximum-output Show as much output as possible.
49116ac0
JB
96;;; comint-continue-subjob Send CONT signal to buffer's process
97;;; group. Useful if you accidentally
98;;; suspend your process (with C-c C-z).
49116ac0
JB
99
100;;; comint-mode-hook is the comint mode hook. Basically for your keybindings.
be9b65ac 101
e5167999
ER
102;;; Code:
103
c9706a52 104(require 'ring)
be9b65ac
DL
105\f
106;;; Buffer Local Variables:
107;;;============================================================================
108;;; Comint mode buffer local variables:
3ee91e68
RS
109;;; comint-prompt-regexp - string comint-bol uses to match prompt
110;;; comint-delimiter-argument-list - list For delimiters and arguments
111;;; comint-last-input-start - marker Handy if inferior always echoes
49116ac0 112;;; comint-last-input-end - marker For comint-kill-output command
e6dfdce5
RS
113;;; comint-input-ring-size - integer For the input history
114;;; comint-input-ring - ring mechanism
0c5c1f34 115;;; comint-input-ring-index - number ...
3ee91e68
RS
116;;; comint-input-autoexpand - symbol ...
117;;; comint-input-ignoredups - boolean ...
be9b65ac 118;;; comint-last-input-match - string ...
1b421826 119;;; comint-dynamic-complete-functions - hook For the completion mechanism
497513ad 120;;; comint-completion-fignore - list ...
be9b65ac 121;;; comint-get-old-input - function Hooks for specific
fb9ab28a
RS
122;;; comint-input-filter-functions - hook process-in-a-buffer
123;;; comint-output-filter-functions - hook function modes.
3ee91e68
RS
124;;; comint-input-filter - function ...
125;;; comint-input-send - function ...
126;;; comint-eol-on-send - boolean ...
127;;; comint-process-echoes - boolean ...
fdb7791d 128;;; comint-scroll-to-bottom-on-input - symbol For scroll behavior
1b421826
RS
129;;; comint-scroll-to-bottom-on-output - symbol ...
130;;; comint-scroll-show-maximum-output - boolean...
3ee91e68
RS
131;;;
132;;; Comint mode non-buffer local variables:
1b421826
RS
133;;; comint-completion-addsuffix - boolean For file name completion
134;;; comint-completion-autolist - boolean behavior
135;;; comint-completion-recexact - boolean ...
be9b65ac 136
49116ac0
JB
137(defvar comint-prompt-regexp "^"
138 "Regexp to recognise prompts in the inferior process.
139Defaults to \"^\", the null string at BOL.
be9b65ac
DL
140
141Good choices:
d637fa56 142 Canonical Lisp: \"^[^> \\n]*>+:? *\" (Lucid, franz, kcl, T, cscheme, oaklisp)
41752cf1
JB
143 Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\"
144 franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\"
49116ac0 145 kcl: \"^>+ *\"
d637fa56 146 shell: \"^[^#$%>\\n]*[#$%>] *\"
49116ac0 147 T: \"^>+ *\"
be9b65ac 148
49116ac0 149This is a good thing to set in mode hooks.")
be9b65ac 150
3ee91e68
RS
151(defvar comint-delimiter-argument-list ()
152 "List of characters to recognise as separate arguments in input.
153Strings comprising a character in this list will separate the arguments
154surrounding them, and also be regarded as arguments in their own right (unlike
155whitespace). See `comint-arguments'.
3f4b7c36 156Defaults to the empty list.
3ee91e68 157
3f4b7c36 158For shells, a good value is (?\\| ?& ?< ?> ?\\( ?\\) ?;).
3ee91e68
RS
159
160This is a good thing to set in mode hooks.")
161
94bd6573 162(defvar comint-input-autoexpand nil
3ee91e68 163 "*If non-nil, expand input command history references on completion.
fdb7791d 164This mirrors the optional behavior of tcsh (its autoexpand and histlit).
3ee91e68
RS
165
166If the value is `input', then the expansion is seen on input.
167If the value is `history', then the expansion is only when inserting
168into the buffer's input ring. See also `comint-magic-space' and
169`comint-dynamic-complete'.
170
171This variable is buffer-local.")
172
173(defvar comint-input-ignoredups nil
174 "*If non-nil, don't add input matching the last on the input ring.
fdb7791d 175This mirrors the optional behavior of bash.
3ee91e68
RS
176
177This variable is buffer-local.")
178
179(defvar comint-input-ring-file-name nil
180 "*If non-nil, name of the file to read/write input history.
181See also `comint-read-input-ring' and `comint-write-input-ring'.
182
183This variable is buffer-local, and is a good thing to set in mode hooks.")
184
91d75282 185(defvar comint-scroll-to-bottom-on-input nil
3ee91e68
RS
186 "*Controls whether input to interpreter causes window to scroll.
187If nil, then do not scroll. If t or `all', scroll all windows showing buffer.
188If `this', scroll only the selected window.
189
91d75282 190The default is nil.
f4ef65c7 191
3ee91e68
RS
192See `comint-preinput-scroll-to-bottom'. This variable is buffer-local.")
193
91d75282 194(defvar comint-scroll-to-bottom-on-output nil
3ee91e68
RS
195 "*Controls whether interpreter output causes window to scroll.
196If nil, then do not scroll. If t or `all', scroll all windows showing buffer.
197If `this', scroll only the selected window.
198If `others', scroll only those that are not the selected window.
91d75282
RS
199
200The default is nil.
f4ef65c7 201
3ee91e68
RS
202See variable `comint-scroll-show-maximum-output' and function
203`comint-postoutput-scroll-to-bottom'. This variable is buffer-local.")
91d75282 204
c541b39e 205(defvar comint-scroll-show-maximum-output nil
3ee91e68
RS
206 "*Controls how interpreter output causes window to scroll.
207If non-nil, then show the maximum output when the window is scrolled.
91d75282 208
3ee91e68
RS
209See variable `comint-scroll-to-bottom-on-output' and function
210`comint-postoutput-scroll-to-bottom'. This variable is buffer-local.")
91d75282 211
39a185a9
SM
212(defvar comint-buffer-maximum-size 1024
213 "*The maximum size in lines for comint buffers.
214Comint buffers are truncated from the top to be no greater than this number, if
215the function `comint-truncate-buffer' is on `comint-output-filter-functions'.")
216
3ee91e68 217(defvar comint-input-ring-size 32
49116ac0 218 "Size of input history ring.")
be9b65ac 219
8ae3bc9f 220(defvar comint-process-echoes nil
cccd719e 221 "*If non-nil, assume that the subprocess echoes any input.
8ae3bc9f 222If so, delete one copy of the input so that only one copy eventually
3ee91e68 223appears in the buffer.
8ae3bc9f
NF
224
225This variable is buffer-local.")
226
7782a0c6
RS
227(defvar comint-password-prompt-regexp
228 "\\(^[Pp]assword\\|pass phrase\\):\\s *\\'"
654d89d7 229 "*Regexp matching prompts for passwords in the inferior process.
7782a0c6 230This is used by `comint-watch-for-password-prompt'.")
654d89d7 231
be9b65ac 232;;; Here are the per-interpreter hooks.
49116ac0 233(defvar comint-get-old-input (function comint-get-old-input-default)
3ee91e68 234 "Function that returns old text in comint mode.
be9b65ac
DL
235This function is called when return is typed while the point is in old text.
236It returns the text to be submitted as process input. The default is
cccd719e
RS
237`comint-get-old-input-default', which grabs the current line, and strips off
238leading text matching `comint-prompt-regexp'.")
be9b65ac 239
1b421826
RS
240(defvar comint-dynamic-complete-functions
241 '(comint-replace-by-expanded-history comint-dynamic-complete-filename)
242 "List of functions called to perform completion.
243Functions should return non-nil if completion was performed.
244See also `comint-dynamic-complete'.
3ee91e68
RS
245
246This is a good thing to set in mode hooks.")
247
49116ac0
JB
248(defvar comint-input-filter
249 (function (lambda (str) (not (string-match "\\`\\s *\\'" str))))
250 "Predicate for filtering additions to input history.
3ee91e68
RS
251Takes one argument, the input. If non-nil, the input may be saved on the input
252history list. Default is to save anything that isn't all whitespace.")
253
fb9ab28a 254(defvar comint-input-filter-functions '()
1b421826
RS
255 "Functions to call before input is sent to the process.
256These functions get one argument, a string containing the text to send.
257
258This variable is buffer-local.")
259
fb9ab28a 260(defvar comint-output-filter-functions '(comint-postoutput-scroll-to-bottom)
3ee91e68 261 "Functions to call after output is inserted into the buffer.
c1da5c03
RS
262One possible function is `comint-postoutput-scroll-to-bottom'.
263These functions get one argument, a string containing the text just inserted.
3ee91e68
RS
264
265This variable is buffer-local.")
49116ac0
JB
266
267(defvar comint-input-sender (function comint-simple-send)
268 "Function to actually send to PROCESS the STRING submitted by user.
cccd719e
RS
269Usually this is just `comint-simple-send', but if your mode needs to
270massage the input string, put a different function here.
271`comint-simple-send' just sends the string plus a newline.
272This is called from the user command `comint-send-input'.")
49116ac0 273
cccd719e 274(defvar comint-eol-on-send t
3ee91e68 275 "*Non-nil means go to the end of the line before sending input.
cccd719e 276See `comint-send-input'.")
be9b65ac
DL
277
278(defvar comint-mode-hook '()
49116ac0
JB
279 "Called upon entry into comint-mode
280This is run before the process is cranked up.")
281
282(defvar comint-exec-hook '()
cccd719e 283 "Called each time a process is exec'd by `comint-exec'.
49116ac0 284This is called after the process is cranked up. It is useful for things that
cccd719e
RS
285must be done each time a process is executed in a comint mode buffer (e.g.,
286`(process-kill-without-query)'). In contrast, the `comint-mode-hook' is only
49116ac0
JB
287executed once when the buffer is created.")
288
289(defvar comint-mode-map nil)
be9b65ac 290
c9706a52 291(defvar comint-ptyp t
3ee91e68 292 "Non-nil if communications via pty; false if by pipe. Buffer local.
cccd719e 293This is to work around a bug in Emacs process signalling.")
c9706a52 294
0bcb5285 295(defvar comint-input-ring nil)
e6dfdce5
RS
296(defvar comint-last-input-start)
297(defvar comint-last-input-end)
7d5d472e 298(defvar comint-last-output-start)
3ee91e68
RS
299(defvar comint-input-ring-index nil
300 "Index of last matched history element.")
301(defvar comint-matching-input-from-input-string ""
302 "Input previously used to match input history.")
21d9bf27
RS
303
304(put 'comint-replace-by-expanded-history 'menu-enable 'comint-input-autoexpand)
c9706a52 305(put 'comint-input-ring 'permanent-local t)
3ee91e68
RS
306(put 'comint-input-ring-index 'permanent-local t)
307(put 'comint-input-autoexpand 'permanent-local t)
fb9ab28a
RS
308(put 'comint-input-filter-functions 'permanent-local t)
309(put 'comint-output-filter-functions 'permanent-local t)
3ee91e68
RS
310(put 'comint-scroll-to-bottom-on-input 'permanent-local t)
311(put 'comint-scroll-to-bottom-on-output 'permanent-local t)
312(put 'comint-scroll-show-maximum-output 'permanent-local t)
c9706a52 313(put 'comint-ptyp 'permanent-local t)
e6dfdce5 314
be9b65ac
DL
315(defun comint-mode ()
316 "Major mode for interacting with an inferior interpreter.
317Interpreter name is same as buffer name, sans the asterisks.
318Return at end of buffer sends line as input.
319Return not at end copies rest of line to end and sends it.
cccd719e 320Setting variable `comint-eol-on-send' means jump to the end of the line
49116ac0 321before submitting new input.
be9b65ac 322
3ee91e68
RS
323This mode is customised to create major modes such as Inferior Lisp
324mode, Shell mode, etc. This can be done by setting the hooks
fb9ab28a 325`comint-input-filter-functions', `comint-input-filter', `comint-input-sender'
3ee91e68 326and `comint-get-old-input' to appropriate functions, and the variable
cccd719e 327`comint-prompt-regexp' to the appropriate regular expression.
be9b65ac 328
cccd719e 329An input history is maintained of size `comint-input-ring-size', and
3ee91e68
RS
330can be accessed with the commands \\[comint-next-input], \\[comint-previous-input], and \\[comint-dynamic-list-input-ring].
331Input ring history expansion can be achieved with the commands
332\\[comint-replace-by-expanded-history] or \\[comint-magic-space].
333Input ring expansion is controlled by the variable `comint-input-autoexpand',
334and addition is controlled by the variable `comint-input-ignoredups'.
335
cccd719e 336Commands with no default key bindings include `send-invisible',
21d9bf27 337`comint-dynamic-complete', `comint-dynamic-list-filename-completions', and
3ee91e68
RS
338`comint-magic-space'.
339
340Input to, and output from, the subprocess can cause the window to scroll to
fb9ab28a 341the end of the buffer. See variables `comint-output-filter-functions',
3ee91e68 342`comint-scroll-to-bottom-on-input', and `comint-scroll-to-bottom-on-output'.
be9b65ac
DL
343
344If you accidentally suspend your process, use \\[comint-continue-subjob]
345to continue it.
346
347\\{comint-mode-map}
348
3ee91e68 349Entry to this mode runs the hooks on `comint-mode-hook'."
be9b65ac 350 (interactive)
3ee91e68
RS
351 ;; Do not remove this. All major modes must do this.
352 (kill-all-local-variables)
353 (setq major-mode 'comint-mode)
354 (setq mode-name "Comint")
baae3c4e 355 (setq mode-line-process '(":%s"))
3ee91e68
RS
356 (use-local-map comint-mode-map)
357 (make-local-variable 'comint-last-input-start)
358 (setq comint-last-input-start (make-marker))
a9a6f83f 359 (set-marker comint-last-input-start (point-min))
3ee91e68
RS
360 (make-local-variable 'comint-last-input-end)
361 (setq comint-last-input-end (make-marker))
a9a6f83f 362 (set-marker comint-last-input-end (point-min))
3ee91e68
RS
363 (make-local-variable 'comint-last-output-start)
364 (setq comint-last-output-start (make-marker))
365 (make-local-variable 'comint-prompt-regexp) ; Don't set; default
366 (make-local-variable 'comint-input-ring-size) ; ...to global val.
367 (make-local-variable 'comint-input-ring)
368 (make-local-variable 'comint-input-ring-file-name)
369 (or (and (boundp 'comint-input-ring) comint-input-ring)
370 (setq comint-input-ring (make-ring comint-input-ring-size)))
371 (make-local-variable 'comint-input-ring-index)
372 (or (and (boundp 'comint-input-ring-index) comint-input-ring-index)
373 (setq comint-input-ring-index nil))
374 (make-local-variable 'comint-matching-input-from-input-string)
375 (make-local-variable 'comint-input-autoexpand)
376 (make-local-variable 'comint-input-ignoredups)
377 (make-local-variable 'comint-delimiter-argument-list)
1b421826 378 (make-local-variable 'comint-dynamic-complete-functions)
497513ad 379 (make-local-variable 'comint-completion-fignore)
3ee91e68 380 (make-local-variable 'comint-get-old-input)
fb9ab28a 381 (make-local-variable 'comint-input-filter-functions)
3ee91e68
RS
382 (make-local-variable 'comint-input-filter)
383 (make-local-variable 'comint-input-sender)
384 (make-local-variable 'comint-eol-on-send)
385 (make-local-variable 'comint-scroll-to-bottom-on-input)
386 (make-local-variable 'comint-scroll-to-bottom-on-output)
387 (make-local-variable 'comint-scroll-show-maximum-output)
c1da5c03
RS
388 (make-local-variable 'pre-command-hook)
389 (add-hook 'pre-command-hook 'comint-preinput-scroll-to-bottom)
fb9ab28a 390 (make-local-variable 'comint-output-filter-functions)
3ee91e68
RS
391 (make-local-variable 'comint-ptyp)
392 (make-local-variable 'comint-exec-hook)
393 (make-local-variable 'comint-process-echoes)
394 (run-hooks 'comint-mode-hook))
be9b65ac 395
49116ac0
JB
396(if comint-mode-map
397 nil
3ee91e68 398 ;; Keys:
49116ac0
JB
399 (setq comint-mode-map (make-sparse-keymap))
400 (define-key comint-mode-map "\ep" 'comint-previous-input)
401 (define-key comint-mode-map "\en" 'comint-next-input)
cf7c8463
RS
402 (define-key comint-mode-map [C-up] 'comint-previous-input)
403 (define-key comint-mode-map [C-down] 'comint-next-input)
0c5c1f34
RS
404 (define-key comint-mode-map "\er" 'comint-previous-matching-input)
405 (define-key comint-mode-map "\es" 'comint-next-matching-input)
3ee91e68
RS
406 (define-key comint-mode-map [?\A-\M-r] 'comint-previous-matching-input-from-input)
407 (define-key comint-mode-map [?\A-\M-s] 'comint-next-matching-input-from-input)
d637fa56 408 (define-key comint-mode-map "\e\C-l" 'comint-show-output)
49116ac0
JB
409 (define-key comint-mode-map "\C-m" 'comint-send-input)
410 (define-key comint-mode-map "\C-d" 'comint-delchar-or-maybe-eof)
5bd43625 411 (define-key comint-mode-map "\C-c\C-a" 'comint-bol)
49116ac0
JB
412 (define-key comint-mode-map "\C-c\C-u" 'comint-kill-input)
413 (define-key comint-mode-map "\C-c\C-w" 'backward-kill-word)
414 (define-key comint-mode-map "\C-c\C-c" 'comint-interrupt-subjob)
415 (define-key comint-mode-map "\C-c\C-z" 'comint-stop-subjob)
416 (define-key comint-mode-map "\C-c\C-\\" 'comint-quit-subjob)
3ee91e68 417 (define-key comint-mode-map "\C-c\C-m" 'comint-copy-old-input)
49116ac0 418 (define-key comint-mode-map "\C-c\C-o" 'comint-kill-output)
49116ac0 419 (define-key comint-mode-map "\C-c\C-r" 'comint-show-output)
3ee91e68 420 (define-key comint-mode-map "\C-c\C-e" 'comint-show-maximum-output)
4bec19b2 421 (define-key comint-mode-map "\C-c\C-l" 'comint-dynamic-list-input-ring)
1de80a34 422 (define-key comint-mode-map "\C-c\C-n" 'comint-next-prompt)
3ee91e68 423 (define-key comint-mode-map "\C-c\C-p" 'comint-previous-prompt)
1de80a34 424 (define-key comint-mode-map "\C-c\C-d" 'comint-send-eof)
3ee91e68
RS
425 ;; Menu bars:
426 ;; completion:
427 (define-key comint-mode-map [menu-bar completion]
dcab7fbd 428 (cons "Complete" (make-sparse-keymap "Complete")))
3ee91e68
RS
429 (define-key comint-mode-map [menu-bar completion complete-expand]
430 '("Expand File Name" . comint-replace-by-expanded-filename))
431 (define-key comint-mode-map [menu-bar completion complete-listing]
432 '("File Completion Listing" . comint-dynamic-list-filename-completions))
3ee91e68
RS
433 (define-key comint-mode-map [menu-bar completion complete-file]
434 '("Complete File Name" . comint-dynamic-complete-filename))
435 (define-key comint-mode-map [menu-bar completion complete]
436 '("Complete Before Point" . comint-dynamic-complete))
437 ;; Input history:
5c07a950 438 (define-key comint-mode-map [menu-bar inout]
dcab7fbd 439 (cons "In/Out" (make-sparse-keymap "In/Out")))
5c07a950 440 (define-key comint-mode-map [menu-bar inout kill-output]
dcab7fbd 441 '("Kill Current Output Group" . comint-kill-output))
5c07a950 442 (define-key comint-mode-map [menu-bar inout next-prompt]
dcab7fbd 443 '("Forward Output Group" . comint-next-prompt))
5c07a950 444 (define-key comint-mode-map [menu-bar inout previous-prompt]
dcab7fbd 445 '("Backward Output Group" . comint-previous-prompt))
5c07a950 446 (define-key comint-mode-map [menu-bar inout show-maximum-output]
dcab7fbd 447 '("Show Maximum Output" . comint-show-maximum-output))
5c07a950 448 (define-key comint-mode-map [menu-bar inout show-output]
dcab7fbd 449 '("Show Current Output Group" . comint-show-output))
5c07a950 450 (define-key comint-mode-map [menu-bar inout kill-input]
3ee91e68 451 '("Kill Current Input" . comint-kill-input))
5c07a950 452 (define-key comint-mode-map [menu-bar inout copy-input]
3ee91e68 453 '("Copy Old Input" . comint-copy-old-input))
5c07a950 454 (define-key comint-mode-map [menu-bar inout forward-matching-history]
dcab7fbd 455 '("Forward Matching Input..." . comint-forward-matching-input))
5c07a950 456 (define-key comint-mode-map [menu-bar inout backward-matching-history]
dcab7fbd 457 '("Backward Matching Input..." . comint-backward-matching-input))
5c07a950 458 (define-key comint-mode-map [menu-bar inout next-matching-history]
3ee91e68 459 '("Next Matching Input..." . comint-next-matching-input))
5c07a950 460 (define-key comint-mode-map [menu-bar inout previous-matching-history]
3ee91e68 461 '("Previous Matching Input..." . comint-previous-matching-input))
5c07a950 462 (define-key comint-mode-map [menu-bar inout next-matching-history-from-input]
3ee91e68 463 '("Next Matching Current Input" . comint-next-matching-input-from-input))
5c07a950 464 (define-key comint-mode-map [menu-bar inout previous-matching-history-from-input]
3ee91e68 465 '("Previous Matching Current Input" . comint-previous-matching-input-from-input))
5c07a950 466 (define-key comint-mode-map [menu-bar inout next-history]
3ee91e68 467 '("Next Input" . comint-next-input))
5c07a950 468 (define-key comint-mode-map [menu-bar inout previous-history]
3ee91e68 469 '("Previous Input" . comint-previous-input))
5c07a950 470 (define-key comint-mode-map [menu-bar inout list-history]
3ee91e68 471 '("List Input History" . comint-dynamic-list-input-ring))
5c07a950 472 (define-key comint-mode-map [menu-bar inout expand-history]
3ee91e68 473 '("Expand History Before Point" . comint-replace-by-expanded-history))
3ee91e68
RS
474 ;; Signals
475 (define-key comint-mode-map [menu-bar signals]
476 (cons "Signals" (make-sparse-keymap "Signals")))
477 (define-key comint-mode-map [menu-bar signals eof]
478 '("EOF" . comint-send-eof))
479 (define-key comint-mode-map [menu-bar signals kill]
480 '("KILL" . comint-kill-subjob))
481 (define-key comint-mode-map [menu-bar signals quit]
482 '("QUIT" . comint-quit-subjob))
483 (define-key comint-mode-map [menu-bar signals cont]
484 '("CONT" . comint-continue-subjob))
485 (define-key comint-mode-map [menu-bar signals stop]
486 '("STOP" . comint-stop-subjob))
487 (define-key comint-mode-map [menu-bar signals break]
488 '("BREAK" . comint-interrupt-subjob))
489 ;; Put them in the menu bar:
5c07a950 490 (setq menu-bar-final-items (append '(completion inout signals)
3ee91e68 491 menu-bar-final-items))
49116ac0
JB
492 )
493
49116ac0 494(defun comint-check-proc (buffer)
3ee91e68 495 "Return t if there is a living process associated w/buffer BUFFER.
1a4086d2 496Living means the status is `open', `run', or `stop'.
cccd719e 497BUFFER can be either a buffer or the name of one."
49116ac0 498 (let ((proc (get-buffer-process buffer)))
1a4086d2 499 (and proc (memq (process-status proc) '(open run stop)))))
be9b65ac
DL
500
501;;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it ()
502;;; for the second argument (program).
eb6e9899 503;;;###autoload
be9b65ac 504(defun make-comint (name program &optional startfile &rest switches)
14a08856
RM
505 "Make a comint process NAME in a buffer, running PROGRAM.
506The name of the buffer is made by surrounding NAME with `*'s.
1a4086d2
RS
507PROGRAM should be either a string denoting an executable program to create
508via `start-process', or a cons pair of the form (HOST . SERVICE) denoting a TCP
509connection to be opened via `open-network-stream'. If there is already a
510running process in that buffer, it is not restarted. Optional third arg
511STARTFILE is the name of a file to send the contents of to the process.
512
513If PROGRAM is a string, any more args are arguments to PROGRAM."
49116ac0 514 (let ((buffer (get-buffer-create (concat "*" name "*"))))
be9b65ac 515 ;; If no process, or nuked process, crank up a new one and put buffer in
14a08856 516 ;; comint mode. Otherwise, leave buffer and existing process alone.
1ff6cf10 517 (cond ((not (comint-check-proc buffer))
49116ac0 518 (save-excursion
be9b65ac
DL
519 (set-buffer buffer)
520 (comint-mode)) ; Install local vars, mode, keymap, ...
521 (comint-exec buffer name program startfile switches)))
522 buffer))
523
21d9bf27
RS
524;;;###autoload
525(defun comint-run (program)
526 "Run PROGRAM in a comint buffer and switch to it.
527The buffer name is made by surrounding the file name of PROGRAM with `*'s.
528The file name is used to make a symbol name, such as `comint-sh-hook', and any
529hooks on this symbol are run in the buffer.
530See `make-comint' and `comint-exec'."
531 (interactive "sRun program: ")
532 (let ((name (file-name-nondirectory program)))
533 (switch-to-buffer (make-comint name program))
534 (run-hooks (intern-soft (concat "comint-" name "-hook")))))
535
be9b65ac 536(defun comint-exec (buffer name command startfile switches)
cccd719e 537 "Start up a process in buffer BUFFER for comint modes.
14a08856 538Blasts any old process running in the buffer. Doesn't set the buffer mode.
49116ac0 539You can use this to cheaply run a series of processes in the same comint
cccd719e 540buffer. The hook `comint-exec-hook' is run after each exec."
be9b65ac
DL
541 (save-excursion
542 (set-buffer buffer)
543 (let ((proc (get-buffer-process buffer))) ; Blast any old process.
544 (if proc (delete-process proc)))
545 ;; Crank up a new process
1a4086d2
RS
546 (let ((proc
547 (if (consp command)
548 (open-network-stream name buffer (car command) (cdr command))
549 (comint-exec-1 name buffer command switches))))
3ee91e68 550 (set-process-filter proc 'comint-output-filter)
49116ac0
JB
551 (make-local-variable 'comint-ptyp)
552 (setq comint-ptyp process-connection-type) ; T if pty, NIL if pipe.
be9b65ac 553 ;; Jump to the end, and set the process mark.
49116ac0 554 (goto-char (point-max))
87ef29fd 555 (set-marker (process-mark proc) (point))
be9b65ac
DL
556 ;; Feed it the startfile.
557 (cond (startfile
558 ;;This is guaranteed to wait long enough
559 ;;but has bad results if the comint does not prompt at all
560 ;; (while (= size (buffer-size))
561 ;; (sleep-for 1))
562 ;;I hope 1 second is enough!
563 (sleep-for 1)
564 (goto-char (point-max))
565 (insert-file-contents startfile)
566 (setq startfile (buffer-substring (point) (point-max)))
567 (delete-region (point) (point-max))
49116ac0
JB
568 (comint-send-string proc startfile)))
569 (run-hooks 'comint-exec-hook)
87ef29fd 570 buffer)))
be9b65ac
DL
571
572;;; This auxiliary function cranks up the process for comint-exec in
e065a56e 573;;; the appropriate environment.
be9b65ac
DL
574
575(defun comint-exec-1 (name buffer command switches)
1b421826 576 (let ((process-environment
1f9e761d 577 (nconc
a4ab7e69
RS
578 ;; If using termcap, we specify `emacs' as the terminal type
579 ;; because that lets us specify a width.
580 ;; If using terminfo, we specify `unknown' because that is
581 ;; a defined terminal type. `emacs' is not a defined terminal type
582 ;; and there is no way for us to define it here.
583 ;; Some programs that use terminfo get very confused
584 ;; if TERM is not a valid terminal type.
1f9e761d
KH
585 (if (and (boundp 'system-uses-terminfo) system-uses-terminfo)
586 (list "EMACS=t" "TERM=unknown"
587 (format "COLUMNS=%d" (frame-width)))
588 (list "EMACS=t" "TERM=emacs"
9dbfa8cf 589 (format "TERMCAP=emacs:co#%d:tc=unknown:" (frame-width))))
1347899b
RS
590 process-environment))
591 (default-directory
592 (if (file-directory-p default-directory)
593 default-directory
594 "/")))
e065a56e 595 (apply 'start-process name buffer command switches)))
be9b65ac 596\f
3ee91e68 597;;; Input history processing in a buffer
be9b65ac 598;;; ===========================================================================
3ee91e68
RS
599;;; Useful input history functions, courtesy of the Ergo group.
600
601;;; Eleven commands:
602;;; comint-dynamic-list-input-ring List history in help buffer.
603;;; comint-previous-input Previous input...
604;;; comint-previous-matching-input ...matching a string.
605;;; comint-previous-matching-input-from-input ... matching the current input.
606;;; comint-next-input Next input...
607;;; comint-next-matching-input ...matching a string.
608;;; comint-next-matching-input-from-input ... matching the current input.
609;;; comint-backward-matching-input Backwards input...
610;;; comint-forward-matching-input ...matching a string.
611;;; comint-replace-by-expanded-history Expand history at point;
612;;; replace with expanded history.
613;;; comint-magic-space Expand history and insert space.
614;;;
1b421826 615;;; Three functions:
3ee91e68
RS
616;;; comint-read-input-ring Read into comint-input-ring...
617;;; comint-write-input-ring Write to comint-input-ring-file-name.
1b421826 618;;; comint-replace-by-expanded-history-before-point Workhorse function.
3ee91e68 619
d637fa56 620(defun comint-read-input-ring (&optional silent)
3ee91e68
RS
621 "Sets the buffer's `comint-input-ring' from a history file.
622The name of the file is given by the variable `comint-input-ring-file-name'.
623The history ring is of size `comint-input-ring-size', regardless of file size.
624If `comint-input-ring-file-name' is nil this function does nothing.
625
d637fa56
RS
626If the optional argument SILENT is non-nil, we say nothing about a
627failure to read the history file.
3ee91e68 628
d637fa56
RS
629This function is useful for major mode commands and mode hooks.
630
631The structure of the history file should be one input command per line,
632with the most recent command last.
3ee91e68 633See also `comint-input-ignoredups' and `comint-write-input-ring'."
07ccf0bc
RS
634 (cond ((or (null comint-input-ring-file-name)
635 (equal comint-input-ring-file-name ""))
3ee91e68
RS
636 nil)
637 ((not (file-readable-p comint-input-ring-file-name))
d637fa56
RS
638 (or silent
639 (message "Cannot read history file %s"
640 comint-input-ring-file-name)))
3ee91e68 641 (t
dc0825db
RS
642 (let ((history-buf (get-buffer-create " *temp*"))
643 (file comint-input-ring-file-name)
644 (count 0)
3ee91e68 645 (ring (make-ring comint-input-ring-size)))
dc0825db
RS
646 (unwind-protect
647 (save-excursion
648 (set-buffer history-buf)
3ee91e68 649 (widen)
dc0825db
RS
650 (erase-buffer)
651 (insert-file-contents file)
652 ;; Save restriction in case file is already visited...
653 ;; Watch for those date stamps in history files!
654 (goto-char (point-max))
655 (while (and (< count comint-input-ring-size)
656 (re-search-backward "^[ \t]*\\([^#\n].*\\)[ \t]*$"
657 nil t))
3ee91e68
RS
658 (let ((history (buffer-substring (match-beginning 1)
659 (match-end 1))))
660 (if (or (null comint-input-ignoredups)
661 (ring-empty-p ring)
662 (not (string-equal (ring-ref ring 0) history)))
dc0825db
RS
663 (ring-insert-at-beginning ring history)))
664 (setq count (1+ count))))
665 (kill-buffer history-buf))
3ee91e68
RS
666 (setq comint-input-ring ring
667 comint-input-ring-index nil)))))
668
669(defun comint-write-input-ring ()
670 "Writes the buffer's `comint-input-ring' to a history file.
671The name of the file is given by the variable `comint-input-ring-file-name'.
672The original contents of the file are lost if `comint-input-ring' is not empty.
673If `comint-input-ring-file-name' is nil this function does nothing.
674
675Useful within process sentinels.
676
677See also `comint-read-input-ring'."
678 (cond ((or (null comint-input-ring-file-name)
07ccf0bc 679 (equal comint-input-ring-file-name "")
3ee91e68
RS
680 (null comint-input-ring) (ring-empty-p comint-input-ring))
681 nil)
682 ((not (file-writable-p comint-input-ring-file-name))
683 (message "Cannot write history file %s" comint-input-ring-file-name))
684 (t
685 (let* ((history-buf (get-buffer-create " *Temp Input History*"))
686 (ring comint-input-ring)
687 (file comint-input-ring-file-name)
688 (index (ring-length ring)))
689 ;; Write it all out into a buffer first. Much faster, but messier,
690 ;; than writing it one line at a time.
691 (save-excursion
692 (set-buffer history-buf)
693 (erase-buffer)
694 (while (> index 0)
695 (setq index (1- index))
696 (insert (ring-ref ring index) ?\n))
697 (write-region (buffer-string) nil file nil 'no-message)
698 (kill-buffer nil))))))
699
700
701(defun comint-dynamic-list-input-ring ()
702 "List in help buffer the buffer's input history."
703 (interactive)
704 (if (or (not (ring-p comint-input-ring))
705 (ring-empty-p comint-input-ring))
706 (message "No history")
707 (let ((history nil)
708 (history-buffer " *Input History*")
709 (index (1- (ring-length comint-input-ring)))
710 (conf (current-window-configuration)))
711 ;; We have to build up a list ourselves from the ring vector.
712 (while (>= index 0)
713 (setq history (cons (ring-ref comint-input-ring index) history)
714 index (1- index)))
715 ;; Change "completion" to "history reference"
716 ;; to make the display accurate.
717 (with-output-to-temp-buffer history-buffer
718 (display-completion-list history)
719 (set-buffer history-buffer)
720 (forward-line 3)
721 (while (search-backward "completion" nil 'move)
722 (replace-match "history reference")))
723 (sit-for 0)
724 (message "Hit space to flush")
725 (let ((ch (read-event)))
726 (if (eq ch ?\ )
727 (set-window-configuration conf)
728 (setq unread-command-events (list ch)))))))
729
730
731(defun comint-regexp-arg (prompt)
732 ;; Return list of regexp and prefix arg using PROMPT.
733 (let* ((minibuffer-history-sexp-flag nil)
734 ;; Don't clobber this.
735 (last-command last-command)
736 (regexp (read-from-minibuffer prompt nil nil nil
737 'minibuffer-history-search-history)))
738 (list (if (string-equal regexp "")
739 (setcar minibuffer-history-search-history
740 (nth 1 minibuffer-history-search-history))
741 regexp)
742 (prefix-numeric-value current-prefix-arg))))
743
744(defun comint-search-arg (arg)
745 ;; First make sure there is a ring and that we are after the process mark
746 (cond ((not (comint-after-pmark-p))
747 (error "Not at command line"))
748 ((or (null comint-input-ring)
749 (ring-empty-p comint-input-ring))
750 (error "Empty input ring"))
751 ((zerop arg)
752 ;; arg of zero resets search from beginning, and uses arg of 1
753 (setq comint-input-ring-index nil)
754 1)
755 (t
756 arg)))
757
758(defun comint-search-start (arg)
759 ;; Index to start a directional search, starting at comint-input-ring-index
760 (if comint-input-ring-index
761 ;; If a search is running, offset by 1 in direction of arg
762 (mod (+ comint-input-ring-index (if (> arg 0) 1 -1))
763 (ring-length comint-input-ring))
764 ;; For a new search, start from beginning or end, as appropriate
765 (if (>= arg 0)
766 0 ; First elt for forward search
767 (1- (ring-length comint-input-ring))))) ; Last elt for backward search
768
769(defun comint-previous-input-string (arg)
770 "Return the string ARG places along the input ring.
771Moves relative to `comint-input-ring-index'."
772 (ring-ref comint-input-ring (if comint-input-ring-index
773 (mod (+ arg comint-input-ring-index)
774 (ring-length comint-input-ring))
775 arg)))
be9b65ac
DL
776
777(defun comint-previous-input (arg)
778 "Cycle backwards through input history."
779 (interactive "*p")
3ee91e68 780 (comint-previous-matching-input "." arg))
1586b965 781
be9b65ac
DL
782(defun comint-next-input (arg)
783 "Cycle forwards through input history."
784 (interactive "*p")
785 (comint-previous-input (- arg)))
786
3ee91e68
RS
787(defun comint-previous-matching-input-string (regexp arg)
788 "Return the string matching REGEXP ARG places along the input ring.
789Moves relative to `comint-input-ring-index'."
790 (let* ((pos (comint-previous-matching-input-string-position regexp arg)))
791 (if pos (ring-ref comint-input-ring pos))))
792
793(defun comint-previous-matching-input-string-position (regexp arg &optional start)
794 "Return the index matching REGEXP ARG places along the input ring.
795Moves relative to START, or `comint-input-ring-index'."
796 (if (or (not (ring-p comint-input-ring))
797 (ring-empty-p comint-input-ring))
798 (error "No history"))
799 (let* ((len (ring-length comint-input-ring))
800 (motion (if (> arg 0) 1 -1))
801 (n (mod (- (or start (comint-search-start arg)) motion) len))
802 (tried-each-ring-item nil)
803 (prev nil))
804 ;; Do the whole search as many times as the argument says.
805 (while (and (/= arg 0) (not tried-each-ring-item))
806 ;; Step once.
807 (setq prev n
808 n (mod (+ n motion) len))
809 ;; If we haven't reached a match, step some more.
810 (while (and (< n len) (not tried-each-ring-item)
811 (not (string-match regexp (ring-ref comint-input-ring n))))
812 (setq n (mod (+ n motion) len)
813 ;; If we have gone all the way around in this search.
814 tried-each-ring-item (= n prev)))
815 (setq arg (if (> arg 0) (1- arg) (1+ arg))))
816 ;; Now that we know which ring element to use, if we found it, return that.
817 (if (string-match regexp (ring-ref comint-input-ring n))
818 n)))
819
0c5c1f34
RS
820(defun comint-previous-matching-input (regexp arg)
821 "Search backwards through input history for match for REGEXP.
822\(Previous history elements are earlier commands.)
823With prefix argument N, search for Nth previous match.
824If N is negative, find the next or Nth next match."
3ee91e68
RS
825 (interactive (comint-regexp-arg "Previous input matching (regexp): "))
826 (setq arg (comint-search-arg arg))
827 (let ((pos (comint-previous-matching-input-string-position regexp arg)))
828 ;; Has a match been found?
829 (if (null pos)
830 (error "Not found")
831 (setq comint-input-ring-index pos)
832 (message "History item: %d" (1+ pos))
833 (delete-region
834 ;; Can't use kill-region as it sets this-command
835 (process-mark (get-buffer-process (current-buffer))) (point))
836 (insert (ring-ref comint-input-ring pos)))))
0c5c1f34
RS
837
838(defun comint-next-matching-input (regexp arg)
839 "Search forwards through input history for match for REGEXP.
840\(Later history elements are more recent commands.)
841With prefix argument N, search for Nth following match.
842If N is negative, find the previous or Nth previous match."
3ee91e68 843 (interactive (comint-regexp-arg "Next input matching (regexp): "))
0c5c1f34 844 (comint-previous-matching-input regexp (- arg)))
be9b65ac 845
3ee91e68
RS
846(defun comint-previous-matching-input-from-input (arg)
847 "Search backwards through input history for match for current input.
848\(Previous history elements are earlier commands.)
849With prefix argument N, search for Nth previous match.
3f849529 850If N is negative, search forwards for the -Nth following match."
3ee91e68
RS
851 (interactive "p")
852 (if (not (memq last-command '(comint-previous-matching-input-from-input
853 comint-next-matching-input-from-input)))
854 ;; Starting a new search
855 (setq comint-matching-input-from-input-string
856 (buffer-substring
857 (process-mark (get-buffer-process (current-buffer)))
858 (point))
859 comint-input-ring-index nil))
860 (comint-previous-matching-input
861 (concat "^" (regexp-quote comint-matching-input-from-input-string))
862 arg))
863
864(defun comint-next-matching-input-from-input (arg)
865 "Search forwards through input history for match for current input.
3f849529
RS
866\(Following history elements are more recent commands.)
867With prefix argument N, search for Nth following match.
868If N is negative, search backwards for the -Nth previous match."
3ee91e68
RS
869 (interactive "p")
870 (comint-previous-matching-input-from-input (- arg)))
871
872
d637fa56 873(defun comint-replace-by-expanded-history (&optional silent)
3ee91e68 874 "Expand input command history references before point.
1b421826
RS
875Expansion is dependent on the value of `comint-input-autoexpand'.
876
3ee91e68
RS
877This function depends on the buffer's idea of the input history, which may not
878match the command interpreter's idea, assuming it has one.
879
880Assumes history syntax is like typical Un*x shells'. However, since emacs
881cannot know the interpreter's idea of input line numbers, assuming it has one,
882it cannot expand absolute input line number references.
883
d637fa56
RS
884If the optional argument SILENT is non-nil, never complain
885even if history reference seems erroneous.
886
1b421826
RS
887See `comint-magic-space' and `comint-replace-by-expanded-history-before-point'.
888
889Returns t if successful."
3ee91e68 890 (interactive)
1b421826 891 (if (and comint-input-autoexpand
8d3d2a0c
KH
892 (string-match "[!^]" (funcall comint-get-old-input))
893 (save-excursion (beginning-of-line)
894 (looking-at comint-prompt-regexp)))
1b421826
RS
895 ;; Looks like there might be history references in the command.
896 (let ((previous-modified-tick (buffer-modified-tick)))
897 (message "Expanding history references...")
8d3d2a0c 898 (comint-replace-by-expanded-history-before-point silent)
1b421826
RS
899 (/= previous-modified-tick (buffer-modified-tick)))))
900
901
8d3d2a0c 902(defun comint-replace-by-expanded-history-before-point (silent)
1b421826
RS
903 "Expand directory stack reference before point.
904See `comint-replace-by-expanded-history'. Returns t if successful."
3ee91e68
RS
905 (save-excursion
906 (let ((toend (- (save-excursion (end-of-line nil) (point)) (point)))
907 (start (progn (comint-bol nil) (point))))
d637fa56
RS
908 (while (progn
909 (skip-chars-forward "^!^"
910 (save-excursion
911 (end-of-line nil) (- (point) toend)))
912 (< (point)
913 (save-excursion
914 (end-of-line nil) (- (point) toend))))
3ee91e68
RS
915 ;; This seems a bit complex. We look for references such as !!, !-num,
916 ;; !foo, !?foo, !{bar}, !?{bar}, ^oh, ^my^, ^god^it, ^never^ends^.
917 ;; If that wasn't enough, the plings can be suffixed with argument
918 ;; range specifiers.
919 ;; Argument ranges are complex too, so we hive off the input line,
920 ;; referenced with plings, with the range string to `comint-args'.
921 (setq comint-input-ring-index nil)
3ee91e68
RS
922 (cond ((or (= (preceding-char) ?\\)
923 (comint-within-quotes start (point)))
924 ;; The history is quoted, or we're in quotes.
d637fa56 925 (goto-char (1+ (point))))
3ee91e68
RS
926 ((looking-at "![0-9]+\\($\\|[^-]\\)")
927 ;; We cannot know the interpreter's idea of input line numbers.
928 (goto-char (match-end 0))
929 (message "Absolute reference cannot be expanded"))
930 ((looking-at "!-\\([0-9]+\\)\\(:?[0-9^$*-]+\\)?")
931 ;; Just a number of args from `number' lines backward.
932 (let ((number (1- (string-to-number
933 (buffer-substring (match-beginning 1)
934 (match-end 1))))))
935 (if (<= number (ring-length comint-input-ring))
936 (progn
937 (replace-match
938 (comint-args (comint-previous-input-string number)
fb9ab28a
RS
939 (match-beginning 2) (match-end 2))
940 t t)
3ee91e68
RS
941 (setq comint-input-ring-index number)
942 (message "History item: %d" (1+ number)))
943 (goto-char (match-end 0))
944 (message "Relative reference exceeds input history size"))))
945 ((or (looking-at "!!?:?\\([0-9^$*-]+\\)") (looking-at "!!"))
946 ;; Just a number of args from the previous input line.
947 (replace-match
948 (comint-args (comint-previous-input-string 0)
fb9ab28a
RS
949 (match-beginning 1) (match-end 1))
950 t t)
1b421826 951 (message "History item: previous"))
3ee91e68
RS
952 ((looking-at
953 "!\\??\\({\\(.+\\)}\\|\\(\\sw+\\)\\)\\(:?[0-9^$*-]+\\)?")
954 ;; Most recent input starting with or containing (possibly
955 ;; protected) string, maybe just a number of args. Phew.
956 (let* ((mb1 (match-beginning 1)) (me1 (match-end 1))
957 (mb2 (match-beginning 2)) (me2 (match-end 2))
958 (exp (buffer-substring (or mb2 mb1) (or me2 me1)))
959 (pref (if (save-match-data (looking-at "!\\?")) "" "^"))
960 (pos (save-match-data
961 (comint-previous-matching-input-string-position
962 (concat pref (regexp-quote exp)) 1))))
963 (if (null pos)
5a336c13
KH
964 (progn
965 (goto-char (match-end 0))
966 (or silent
967 (progn (message "Not found")
968 (ding))))
3ee91e68 969 (setq comint-input-ring-index pos)
3ee91e68
RS
970 (replace-match
971 (comint-args (ring-ref comint-input-ring pos)
fb9ab28a
RS
972 (match-beginning 4) (match-end 4))
973 t t)
1b421826 974 (message "History item: %d" (1+ pos)))))
3ee91e68
RS
975 ((looking-at "\\^\\([^^]+\\)\\^?\\([^^]*\\)\\^?")
976 ;; Quick substitution on the previous input line.
977 (let ((old (buffer-substring (match-beginning 1) (match-end 1)))
978 (new (buffer-substring (match-beginning 2) (match-end 2)))
979 (pos nil))
980 (replace-match (comint-previous-input-string 0) t t)
981 (setq pos (point))
982 (goto-char (match-beginning 0))
1b421826
RS
983 (if (not (search-forward old pos t))
984 (or silent
985 (error "Not found"))
986 (replace-match new t t)
987 (message "History item: substituted"))))
3ee91e68
RS
988 (t
989 (goto-char (match-end 0))))))))
990
991
992(defun comint-magic-space (arg)
993 "Expand input history references before point and insert ARG spaces.
994A useful command to bind to SPC. See `comint-replace-by-expanded-history'."
995 (interactive "p")
996 (comint-replace-by-expanded-history)
997 (self-insert-command arg))
998\f
999(defun comint-within-quotes (beg end)
1000 "Return t if the number of quotes between BEG and END is odd.
1001Quotes are single and double."
1002 (let ((countsq (comint-how-many-region "\\(^\\|[^\\\\]\\)\'" beg end))
1003 (countdq (comint-how-many-region "\\(^\\|[^\\\\]\\)\"" beg end)))
1004 (or (= (mod countsq 2) 1) (= (mod countdq 2) 1))))
1005
1006(defun comint-how-many-region (regexp beg end)
1007 "Return number of matches for REGEXP from BEG to END."
1008 (let ((count 0))
1009 (save-excursion
1010 (save-match-data
1011 (goto-char beg)
1012 (while (re-search-forward regexp end t)
1013 (setq count (1+ count)))))
1014 count))
1015
1016(defun comint-args (string begin end)
1017 ;; From STRING, return the args depending on the range specified in the text
1018 ;; from BEGIN to END. If BEGIN is nil, assume all args. Ignore leading `:'.
1019 ;; Range can be x-y, x-, -y, where x/y can be [0-9], *, ^, $.
1020 (save-match-data
1021 (if (null begin)
1022 (comint-arguments string 0 nil)
1023 (let* ((range (buffer-substring
1024 (if (eq (char-after begin) ?:) (1+ begin) begin) end))
1025 (nth (cond ((string-match "^[*^]" range) 1)
1026 ((string-match "^-" range) 0)
1027 ((string-equal range "$") nil)
1028 (t (string-to-number range))))
1029 (mth (cond ((string-match "[-*$]$" range) nil)
1030 ((string-match "-" range)
1031 (string-to-number (substring range (match-end 0))))
1032 (t nth))))
1033 (comint-arguments string nth mth)))))
1034
3f4b7c36
RS
1035;; Return a list of arguments from ARG. Break it up at the
1036;; delimiters in comint-delimiter-argument-list. Returned list is backwards.
3ee91e68 1037(defun comint-delim-arg (arg)
3f4b7c36 1038 (if (null comint-delimiter-argument-list)
3ee91e68 1039 (list arg)
3f4b7c36
RS
1040 (let ((args nil)
1041 (pos 0)
1042 (len (length arg)))
1043 (while (< pos len)
1044 (let ((char (aref arg pos))
1045 (start pos))
1046 (if (memq char comint-delimiter-argument-list)
1047 (while (and (< pos len) (eq (aref arg pos) char))
1048 (setq pos (1+ pos)))
1049 (while (and (< pos len)
1050 (not (memq (aref arg pos)
1051 comint-delimiter-argument-list)))
1052 (setq pos (1+ pos))))
1053 (setq args (cons (substring arg start pos) args))))
3ee91e68
RS
1054 args)))
1055
1056(defun comint-arguments (string nth mth)
1057 "Return from STRING the NTH to MTH arguments.
1058NTH and/or MTH can be nil, which means the last argument.
3f4b7c36
RS
1059Returned arguments are separated by single spaces.
1060We assume whitespace separates arguments, except within quotes.
1061Also, a run of one or more of a single character
1062in `comint-delimiter-argument-list' is a separate argument.
3ee91e68 1063Argument 0 is the command name."
5e778cd1 1064 (let ((argpart "[^ \n\t\"'`]+\\|\\(\"[^\"]*\"\\|'[^']*'\\|`[^`]*`\\)")
d91f490d
RS
1065 (args ()) (pos 0)
1066 (count 0)
1067 beg str value quotes)
1068 ;; Build a list of all the args until we have as many as we want.
1069 (while (and (or (null mth) (<= count mth))
1070 (string-match argpart string pos))
1071 (if (and beg (= pos (match-beginning 0)))
1072 ;; It's contiguous, part of the same arg.
1073 (setq pos (match-end 0)
1074 quotes (or quotes (match-beginning 1)))
1075 ;; It's a new separate arg.
1076 (if beg
1077 ;; Put the previous arg, if there was one, onto ARGS.
1078 (setq str (substring string beg pos)
1079 args (if quotes (cons str args)
1080 (nconc (comint-delim-arg str) args))
1081 count (1+ count)))
1082 (setq quotes (match-beginning 1))
1083 (setq beg (match-beginning 0))
1084 (setq pos (match-end 0))))
1085 (if beg
1086 (setq str (substring string beg pos)
1087 args (if quotes (cons str args)
1088 (nconc (comint-delim-arg str) args))
1089 count (1+ count)))
1090 (let ((n (or nth (1- count)))
1091 (m (if mth (1- (- count mth)) 0)))
3ee91e68
RS
1092 (mapconcat
1093 (function (lambda (a) a)) (nthcdr n (nreverse (nthcdr m args))) " "))))
1094\f
be9b65ac 1095;;;
3ee91e68 1096;;; Input processing stuff
be9b65ac 1097;;;
3ee91e68 1098
49116ac0 1099(defun comint-send-input ()
c2ced5d8
CZ
1100 "Send input to process.
1101After the process output mark, sends all text from the process mark to
1102point as input to the process. Before the process output mark, calls value
8ae3bc9f 1103of variable `comint-get-old-input' to retrieve old input, copies it to the
cccd719e 1104process mark, and sends it. If variable `comint-process-echoes' is nil,
8ae3bc9f 1105a terminal newline is also inserted into the buffer and sent to the process
cccd719e
RS
1106\(if it is non-nil, all text from the process mark to point is deleted,
1107since it is assumed the remote process will re-echo it).
8ae3bc9f 1108
3ee91e68 1109Any history reference may be expanded depending on the value of the variable
1b421826 1110`comint-input-autoexpand'. The list of function names contained in the value
fb9ab28a 1111of `comint-input-filter-functions' is called on the input before sending it.
1b421826
RS
1112The input is entered into the input history ring, if the value of variable
1113`comint-input-filter' returns non-nil when called on the input.
cccd719e
RS
1114
1115If variable `comint-eol-on-send' is non-nil, then point is moved to the
8ae3bc9f
NF
1116end of line before sending the input.
1117
fb9ab28a 1118The values of `comint-get-old-input', `comint-input-filter-functions', and
1b421826
RS
1119`comint-input-filter' are chosen according to the command interpreter running
1120in the buffer. E.g.,
1121
be9b65ac 1122If the interpreter is the csh,
49116ac0
JB
1123 comint-get-old-input is the default: take the current line, discard any
1124 initial string matching regexp comint-prompt-regexp.
fb9ab28a 1125 comint-input-filter-functions monitors input for \"cd\", \"pushd\", and
1b421826 1126 \"popd\" commands. When it sees one, it cd's the buffer.
3ee91e68 1127 comint-input-filter is the default: returns t if the input isn't all white
49116ac0 1128 space.
be9b65ac
DL
1129
1130If the comint is Lucid Common Lisp,
49116ac0 1131 comint-get-old-input snarfs the sexp ending at point.
fb9ab28a 1132 comint-input-filter-functions does nothing.
3ee91e68 1133 comint-input-filter returns nil if the input matches input-filter-regexp,
be9b65ac
DL
1134 which matches (1) all whitespace (2) :a, :c, etc.
1135
1586b965 1136Similarly for Soar, Scheme, etc."
be9b65ac
DL
1137 (interactive)
1138 ;; Note that the input string does not include its terminal newline.
49116ac0
JB
1139 (let ((proc (get-buffer-process (current-buffer))))
1140 (if (not proc) (error "Current buffer has no process")
1141 (let* ((pmark (process-mark proc))
3ee91e68 1142 (intxt (if (>= (point) (marker-position pmark))
49116ac0
JB
1143 (progn (if comint-eol-on-send (end-of-line))
1144 (buffer-substring pmark (point)))
87ef29fd
JB
1145 (let ((copy (funcall comint-get-old-input)))
1146 (goto-char pmark)
1147 (insert copy)
3ee91e68
RS
1148 copy)))
1149 (input (if (not (eq comint-input-autoexpand 'input))
1150 ;; Just whatever's already there
1151 intxt
1152 ;; Expand and leave it visible in buffer
d637fa56 1153 (comint-replace-by-expanded-history t)
3ee91e68
RS
1154 (buffer-substring pmark (point))))
1155 (history (if (not (eq comint-input-autoexpand 'history))
5f46b51a 1156 input
3ee91e68
RS
1157 ;; This is messy 'cos ultimately the original
1158 ;; functions used do insertion, rather than return
1159 ;; strings. We have to expand, then insert back.
d637fa56 1160 (comint-replace-by-expanded-history t)
5f46b51a
RS
1161 (let ((copy (buffer-substring pmark (point))))
1162 (delete-region pmark (point))
1163 (insert input)
1164 copy))))
8ae3bc9f
NF
1165 (if comint-process-echoes
1166 (delete-region pmark (point))
3ee91e68
RS
1167 (insert ?\n))
1168 (if (and (funcall comint-input-filter history)
1169 (or (null comint-input-ignoredups)
1170 (not (ring-p comint-input-ring))
1171 (ring-empty-p comint-input-ring)
1172 (not (string-equal (ring-ref comint-input-ring 0)
1173 history))))
1174 (ring-insert comint-input-ring history))
fb9ab28a 1175 (let ((functions comint-input-filter-functions))
1b421826
RS
1176 (while functions
1177 (funcall (car functions) (concat input "\n"))
1178 (setq functions (cdr functions))))
1586b965 1179 (setq comint-input-ring-index nil)
dcdc526c
RS
1180 ;; Update the markers before we send the input
1181 ;; in case we get output amidst sending the input.
87ef29fd
JB
1182 (set-marker comint-last-input-start pmark)
1183 (set-marker comint-last-input-end (point))
3ee91e68 1184 (set-marker (process-mark proc) (point))
dcdc526c 1185 (funcall comint-input-sender proc input)
a9a6f83f 1186 (comint-output-filter proc "")))))
be9b65ac 1187
3ee91e68 1188;; The purpose of using this filter for comint processes
5511e411
RS
1189;; is to keep comint-last-input-end from moving forward
1190;; when output is inserted.
3ee91e68
RS
1191(defun comint-output-filter (process string)
1192 ;; First check for killed buffer
91d75282
RS
1193 (let ((oprocbuf (process-buffer process)))
1194 (if (and oprocbuf (buffer-name oprocbuf))
1195 (let ((obuf (current-buffer))
1196 (opoint nil) (obeg nil) (oend nil))
1197 (set-buffer oprocbuf)
1198 (setq opoint (point))
1199 (setq obeg (point-min))
1200 (setq oend (point-max))
1201 (let ((buffer-read-only nil)
1202 (nchars (length string))
1203 (ostart nil))
1204 (widen)
1205 (goto-char (process-mark process))
1206 (setq ostart (point))
1207 (if (<= (point) opoint)
1208 (setq opoint (+ opoint nchars)))
1209 ;; Insert after old_begv, but before old_zv.
1210 (if (< (point) obeg)
1211 (setq obeg (+ obeg nchars)))
1212 (if (<= (point) oend)
1213 (setq oend (+ oend nchars)))
1214 (insert-before-markers string)
1215 ;; Don't insert initial prompt outside the top of the window.
1216 (if (= (window-start (selected-window)) (point))
1217 (set-window-start (selected-window) (- (point) (length string))))
1218 (if (and comint-last-input-end
1219 (marker-buffer comint-last-input-end)
1220 (= (point) comint-last-input-end))
1221 (set-marker comint-last-input-end (- comint-last-input-end nchars)))
1222 (set-marker comint-last-output-start ostart)
1223 (set-marker (process-mark process) (point))
1224 (force-mode-line-update))
1225
1226 (narrow-to-region obeg oend)
1227 (goto-char opoint)
fb9ab28a 1228 (let ((functions comint-output-filter-functions))
91d75282
RS
1229 (while functions
1230 (funcall (car functions) string)
1231 (setq functions (cdr functions))))
1232 (set-buffer obuf)))))
3ee91e68 1233
c1da5c03 1234(defun comint-preinput-scroll-to-bottom ()
3ee91e68
RS
1235 "Go to the end of buffer in all windows showing it.
1236Movement occurs if point in the selected window is not after the process mark,
1237and `this-command' is an insertion command. Insertion commands recognised
d637fa56 1238are `self-insert-command', `comint-magic-space', `yank', and `hilit-yank'.
3ee91e68
RS
1239Depends on the value of `comint-scroll-to-bottom-on-input'.
1240
c1da5c03 1241This function should be a pre-command hook."
3ee91e68 1242 (if (and comint-scroll-to-bottom-on-input
91d75282 1243 (memq this-command '(self-insert-command comint-magic-space yank
d637fa56 1244 hilit-yank)))
3ee91e68
RS
1245 (let* ((selected (selected-window))
1246 (current (current-buffer))
1247 (process (get-buffer-process current))
1248 (scroll comint-scroll-to-bottom-on-input))
d637fa56 1249 (if (and process (< (point) (process-mark process)))
0744bf64
RS
1250 (if (eq scroll 'this)
1251 (goto-char (point-max))
1252 (walk-windows
1253 (function (lambda (window)
1254 (if (and (eq (window-buffer window) current)
d637fa56 1255 (or (eq scroll t) (eq scroll 'all)))
0744bf64
RS
1256 (progn
1257 (select-window window)
1258 (goto-char (point-max))
1259 (select-window selected)))))
d637fa56 1260 nil t))))))
3ee91e68 1261
c1da5c03 1262(defun comint-postoutput-scroll-to-bottom (string)
3ee91e68
RS
1263 "Go to the end of buffer in all windows showing it.
1264Does not scroll if the current line is the last line in the buffer.
1265Depends on the value of `comint-scroll-to-bottom-on-output' and
1266`comint-scroll-show-maximum-output'.
1267
fb9ab28a 1268This function should be in the list `comint-output-filter-functions'."
3ee91e68
RS
1269 (let* ((selected (selected-window))
1270 (current (current-buffer))
1271 (process (get-buffer-process current))
1272 (scroll comint-scroll-to-bottom-on-output))
d637fa56
RS
1273 (unwind-protect
1274 (if process
1275 (walk-windows
1276 (function (lambda (window)
1277 (if (eq (window-buffer window) current)
1278 (progn
1279 (select-window window)
1280 (if (and (< (point) (process-mark process))
1281 (or (eq scroll t) (eq scroll 'all)
1282 ;; Maybe user wants point to jump to the end.
1283 (and (eq scroll 'this) (eq selected window))
1284 (and (eq scroll 'others) (not (eq selected window)))
1285 ;; If point was at the end, keep it at the end.
1286 (>= (point)
1287 (- (process-mark process) (length string)))))
1288 (goto-char (process-mark process)))
1289 ;; Optionally scroll so that the text
1290 ;; ends at the bottom of the window.
1291 (if (and comint-scroll-show-maximum-output
1292 (>= (point) (process-mark process)))
1293 (save-excursion
1294 (goto-char (point-max))
1295 (recenter -1)))
1296 (select-window selected)))))
1297 nil t))
1298 (set-buffer current))))
3ee91e68 1299
39a185a9
SM
1300(defun comint-truncate-buffer (&optional string)
1301 "Truncate the buffer to `comint-buffer-maximum-size'.
1302This function could be on `comint-output-filter-functions' or bound to a key."
1303 (interactive)
1304 (save-excursion
1305 (goto-char (point-max))
1306 (forward-line (- comint-buffer-maximum-size))
1307 (beginning-of-line)
1308 (delete-region (point-min) (point))))
1309
efcec33f
RS
1310(defun comint-strip-ctrl-m (&optional string)
1311 "Strip trailing `^M' characters from the current output group.
39a185a9 1312This function could be on `comint-output-filter-functions' or bound to a key."
efcec33f
RS
1313 (interactive)
1314 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
1315 (save-excursion
1316 (goto-char
1317 (if (interactive-p) comint-last-input-end comint-last-output-start))
1318 (while (re-search-forward "\r+$" pmark t)
1319 (replace-match "" t t)))))
1320(defalias 'shell-strip-ctrl-m 'comint-strip-ctrl-m)
1321
3ee91e68
RS
1322(defun comint-show-maximum-output ()
1323 "Put the end of the buffer at the bottom of the window."
1324 (interactive)
1325 (goto-char (point-max))
1326 (recenter -1))
5511e411 1327
be9b65ac 1328(defun comint-get-old-input-default ()
cccd719e 1329 "Default for `comint-get-old-input'.
c2ced5d8 1330Take the current line, and discard any initial text matching
cccd719e 1331`comint-prompt-regexp'."
be9b65ac 1332 (save-excursion
49116ac0
JB
1333 (beginning-of-line)
1334 (comint-skip-prompt)
1335 (let ((beg (point)))
1336 (end-of-line)
1337 (buffer-substring beg (point)))))
1338
3ee91e68
RS
1339(defun comint-copy-old-input ()
1340 "Insert after prompt old input at point as new input to be edited.
1341Calls `comint-get-old-input' to get old input."
1342 (interactive)
1343 (let ((input (funcall comint-get-old-input))
1344 (process (get-buffer-process (current-buffer))))
1345 (if (not process)
1346 (error "Current buffer has no process")
1347 (goto-char (process-mark process))
1348 (insert input))))
1349
49116ac0 1350(defun comint-skip-prompt ()
cccd719e 1351 "Skip past the text matching regexp `comint-prompt-regexp'.
49116ac0
JB
1352If this takes us past the end of the current line, don't skip at all."
1353 (let ((eol (save-excursion (end-of-line) (point))))
1354 (if (and (looking-at comint-prompt-regexp)
1355 (<= (match-end 0) eol))
1356 (goto-char (match-end 0)))))
1357
49116ac0 1358(defun comint-after-pmark-p ()
3ee91e68
RS
1359 "Return t if point is after the process output marker."
1360 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
1361 (<= (marker-position pmark) (point))))
49116ac0
JB
1362
1363(defun comint-simple-send (proc string)
1364 "Default function for sending to PROC input STRING.
1365This just sends STRING plus a newline. To override this,
cccd719e 1366set the hook `comint-input-sender'."
49116ac0
JB
1367 (comint-send-string proc string)
1368 (comint-send-string proc "\n"))
be9b65ac
DL
1369
1370(defun comint-bol (arg)
1371 "Goes to the beginning of line, then skips past the prompt, if any.
3ee91e68 1372If prefix argument is given (\\[universal-argument]) the prompt is not skipped.
be9b65ac 1373
49116ac0 1374The prompt skip is done by skipping text matching the regular expression
a77db92b 1375`comint-prompt-regexp', a buffer local variable."
be9b65ac
DL
1376 (interactive "P")
1377 (beginning-of-line)
49116ac0 1378 (if (null arg) (comint-skip-prompt)))
be9b65ac 1379
21d9bf27 1380;;; These three functions are for entering text you don't want echoed or
be9b65ac 1381;;; saved -- typically passwords to ftp, telnet, or somesuch.
21d9bf27
RS
1382;;; Just enter m-x send-invisible and type in your line, or add
1383;;; `comint-watch-for-password-prompt' to `comint-output-filter-functions'.
49116ac0 1384
87ef29fd 1385(defun comint-read-noecho (prompt &optional stars)
4be9a25f
NF
1386 "Read a single line of text from user without echoing, and return it.
1387Prompt with argument PROMPT, a string. Optional argument STARS causes
1388input to be echoed with '*' characters on the prompt line. Input ends with
1389RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. C-g aborts (if
cccd719e
RS
1390`inhibit-quit' is set because e.g. this function was called from a process
1391filter and C-g is pressed, this function returns nil rather than a string).
4be9a25f
NF
1392
1393Note that the keystrokes comprising the text can still be recovered
cccd719e 1394\(temporarily) with \\[view-lossage]. This may be a security bug for some
4be9a25f
NF
1395applications."
1396 (let ((ans "")
1397 (c 0)
1398 (echo-keystrokes 0)
87ef29fd 1399 (cursor-in-echo-area t)
4be9a25f
NF
1400 (done nil))
1401 (while (not done)
1402 (if stars
1403 (message "%s%s" prompt (make-string (length ans) ?*))
1404 (message prompt))
af171fd0
RS
1405 ;; Use this instead of `read-char' to avoid "Non-character input-event".
1406 (setq c (read-char-exclusive))
4be9a25f
NF
1407 (cond ((= c ?\C-g)
1408 ;; This function may get called from a process filter, where
1409 ;; inhibit-quit is set. In later versions of emacs read-char
1410 ;; may clear quit-flag itself and return C-g. That would make
1411 ;; it impossible to quit this loop in a simple way, so
1412 ;; re-enable it here (for backward-compatibility the check for
acdf173a 1413 ;; quit-flag below would still be necessary, so this seems
4be9a25f
NF
1414 ;; like the simplest way to do things).
1415 (setq quit-flag t
1416 done t))
1417 ((or (= c ?\r) (= c ?\n) (= c ?\e))
1418 (setq done t))
1419 ((= c ?\C-u)
1420 (setq ans ""))
1421 ((and (/= c ?\b) (/= c ?\177))
1422 (setq ans (concat ans (char-to-string c))))
1423 ((> (length ans) 0)
1424 (setq ans (substring ans 0 -1)))))
1425 (if quit-flag
1426 ;; Emulate a true quit, except that we have to return a value.
1427 (prog1
1428 (setq quit-flag nil)
1429 (message "Quit")
1430 (beep t))
1431 (message "")
1432 ans)))
87ef29fd 1433
be9b65ac 1434(defun send-invisible (str)
c2ced5d8 1435 "Read a string without echoing.
cccd719e
RS
1436Then send it to the process running in the current buffer. A new-line
1437is additionally sent. String is not saved on comint input history list.
49116ac0
JB
1438Security bug: your string can still be temporarily recovered with
1439\\[view-lossage]."
be9b65ac
DL
1440 (interactive "P") ; Defeat snooping via C-x esc
1441 (let ((proc (get-buffer-process (current-buffer))))
21d9bf27
RS
1442 (if (not proc)
1443 (error "Current buffer has no process")
1444 (comint-send-string
1445 proc (if (stringp str) str (comint-read-noecho "Non-echoed text: " t)))
1446 (comint-send-string proc "\n"))))
1447
1448(defun comint-watch-for-password-prompt (string)
1449 "Prompt in the minibuffer for password and send without echoing.
1450This function uses `send-invisible' to read and send a password to the buffer's
654d89d7
NF
1451process if STRING contains a password prompt defined by
1452`comint-password-prompt-regexp'.
21d9bf27
RS
1453
1454This function could be in the list `comint-output-filter-functions'."
654d89d7 1455 (if (string-match comint-password-prompt-regexp string)
21d9bf27 1456 (send-invisible nil)))
be9b65ac
DL
1457\f
1458;;; Low-level process communication
1459
7df7d5b3
RS
1460(defalias 'comint-send-string 'process-send-string)
1461(defalias 'comint-send-region 'process-send-region)
be9b65ac
DL
1462\f
1463;;; Random input hackage
1464
49116ac0 1465(defun comint-kill-output ()
3ee91e68
RS
1466 "Kill all output from interpreter since last input.
1467Does not delete the prompt."
be9b65ac 1468 (interactive)
a9a6f83f
RS
1469 (let ((proc (get-buffer-process (current-buffer)))
1470 (replacement nil))
1471 (save-excursion
1472 (let ((pmark (progn (goto-char (process-mark proc))
1473 (beginning-of-line nil)
1474 (point-marker))))
1475 (delete-region comint-last-input-end pmark)
1476 (comint-skip-prompt)
1477 (setq replacement (concat "*** output flushed ***\n"
1478 (buffer-substring pmark (point))))
1479 (delete-region pmark (point))))
1480 ;; Output message and put back prompt
1481 (comint-output-filter proc replacement)))
be9b65ac
DL
1482
1483(defun comint-show-output ()
49116ac0 1484 "Display start of this batch of interpreter output at top of window.
21d9bf27 1485Sets mark to the value of point when this command is run."
be9b65ac 1486 (interactive)
815c1a20 1487 (push-mark)
3ee91e68 1488 (let ((pos (point)))
42453245 1489 (goto-char (or (marker-position comint-last-input-end) (point-max)))
3ee91e68
RS
1490 (beginning-of-line 0)
1491 (set-window-start (selected-window) (point))
815c1a20 1492 (comint-skip-prompt)))
be9b65ac
DL
1493
1494(defun comint-interrupt-subjob ()
49116ac0 1495 "Interrupt the current subjob."
be9b65ac 1496 (interactive)
49116ac0 1497 (interrupt-process nil comint-ptyp))
be9b65ac
DL
1498
1499(defun comint-kill-subjob ()
49116ac0 1500 "Send kill signal to the current subjob."
be9b65ac 1501 (interactive)
49116ac0 1502 (kill-process nil comint-ptyp))
be9b65ac
DL
1503
1504(defun comint-quit-subjob ()
49116ac0 1505 "Send quit signal to the current subjob."
be9b65ac 1506 (interactive)
49116ac0 1507 (quit-process nil comint-ptyp))
be9b65ac
DL
1508
1509(defun comint-stop-subjob ()
49116ac0 1510 "Stop the current subjob.
be9b65ac 1511WARNING: if there is no current subjob, you can end up suspending
49116ac0
JB
1512the top-level process running in the buffer. If you accidentally do
1513this, use \\[comint-continue-subjob] to resume the process. (This
1514is not a problem with most shells, since they ignore this signal.)"
be9b65ac 1515 (interactive)
49116ac0 1516 (stop-process nil comint-ptyp))
be9b65ac
DL
1517
1518(defun comint-continue-subjob ()
49116ac0 1519 "Send CONT signal to process buffer's process group.
be9b65ac
DL
1520Useful if you accidentally suspend the top-level process."
1521 (interactive)
49116ac0 1522 (continue-process nil comint-ptyp))
be9b65ac
DL
1523
1524(defun comint-kill-input ()
49116ac0 1525 "Kill all text from last stuff output by interpreter to point."
be9b65ac 1526 (interactive)
3ee91e68
RS
1527 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
1528 (if (> (point) (marker-position pmark))
49116ac0 1529 (kill-region pmark (point)))))
be9b65ac
DL
1530
1531(defun comint-delchar-or-maybe-eof (arg)
3ee91e68 1532 "Delete ARG characters forward, or (if at eob) send an EOF to subprocess."
be9b65ac
DL
1533 (interactive "p")
1534 (if (eobp)
1535 (process-send-eof)
3ee91e68 1536 (delete-char arg)))
49116ac0 1537
1de80a34
RM
1538(defun comint-send-eof ()
1539 "Send an EOF to the current buffer's process."
1540 (interactive)
1541 (process-send-eof))
49116ac0 1542
3ee91e68
RS
1543
1544(defun comint-backward-matching-input (regexp arg)
1545 "Search backward through buffer for match for REGEXP.
1546Matches are searched for on lines that match `comint-prompt-regexp'.
1547With prefix argument N, search for Nth previous match.
1548If N is negative, find the next or Nth next match."
1549 (interactive (comint-regexp-arg "Backward input matching (regexp): "))
1550 (let* ((re (concat comint-prompt-regexp ".*" regexp))
1551 (pos (save-excursion (end-of-line (if (> arg 0) 0 1))
1552 (if (re-search-backward re nil t arg)
1553 (point)))))
1554 (if (null pos)
1555 (progn (message "Not found")
1556 (ding))
1557 (goto-char pos)
1558 (comint-bol nil))))
1559
1560(defun comint-forward-matching-input (regexp arg)
1561 "Search forward through buffer for match for REGEXP.
1562Matches are searched for on lines that match `comint-prompt-regexp'.
1563With prefix argument N, search for Nth following match.
1564If N is negative, find the previous or Nth previous match."
1565 (interactive (comint-regexp-arg "Forward input matching (regexp): "))
1566 (comint-backward-matching-input regexp (- arg)))
1567
1568
1de80a34 1569(defun comint-next-prompt (n)
3ee91e68 1570 "Move to end of Nth next prompt in the buffer.
1de80a34
RM
1571See `comint-prompt-regexp'."
1572 (interactive "p")
3ee91e68
RS
1573 (let ((paragraph-start comint-prompt-regexp))
1574 (end-of-line (if (> n 0) 1 0))
1575 (forward-paragraph n)
1576 (comint-skip-prompt)))
49116ac0 1577
3ee91e68
RS
1578(defun comint-previous-prompt (n)
1579 "Move to end of Nth previous prompt in the buffer.
1de80a34
RM
1580See `comint-prompt-regexp'."
1581 (interactive "p")
3ee91e68 1582 (comint-next-prompt (- n)))
be9b65ac
DL
1583\f
1584;;; Support for source-file processing commands.
1585;;;============================================================================
1586;;; Many command-interpreters (e.g., Lisp, Scheme, Soar) have
1587;;; commands that process files of source text (e.g. loading or compiling
1588;;; files). So the corresponding process-in-a-buffer modes have commands
1589;;; for doing this (e.g., lisp-load-file). The functions below are useful
1590;;; for defining these commands.
1591;;;
1592;;; Alas, these guys don't do exactly the right thing for Lisp, Scheme
1593;;; and Soar, in that they don't know anything about file extensions.
1594;;; So the compile/load interface gets the wrong default occasionally.
1595;;; The load-file/compile-file default mechanism could be smarter -- it
1596;;; doesn't know about the relationship between filename extensions and
1597;;; whether the file is source or executable. If you compile foo.lisp
1598;;; with compile-file, then the next load-file should use foo.bin for
1599;;; the default, not foo.lisp. This is tricky to do right, particularly
1600;;; because the extension for executable files varies so much (.o, .bin,
1601;;; .lbin, .mo, .vo, .ao, ...).
1602
1603
1604;;; COMINT-SOURCE-DEFAULT -- determines defaults for source-file processing
1605;;; commands.
1606;;;
1607;;; COMINT-CHECK-SOURCE -- if FNAME is in a modified buffer, asks you if you
1608;;; want to save the buffer before issuing any process requests to the command
1609;;; interpreter.
1610;;;
1611;;; COMINT-GET-SOURCE -- used by the source-file processing commands to prompt
1612;;; for the file to process.
1613
1614;;; (COMINT-SOURCE-DEFAULT previous-dir/file source-modes)
1615;;;============================================================================
1616;;; This function computes the defaults for the load-file and compile-file
49116ac0 1617;;; commands for tea, soar, cmulisp, and cmuscheme modes.
be9b65ac
DL
1618;;;
1619;;; - PREVIOUS-DIR/FILE is a pair (directory . filename) from the last
1620;;; source-file processing command. NIL if there hasn't been one yet.
1621;;; - SOURCE-MODES is a list used to determine what buffers contain source
1622;;; files: if the major mode of the buffer is in SOURCE-MODES, it's source.
1623;;; Typically, (lisp-mode) or (scheme-mode).
1624;;;
1625;;; If the command is given while the cursor is inside a string, *and*
1626;;; the string is an existing filename, *and* the filename is not a directory,
1627;;; then the string is taken as default. This allows you to just position
1628;;; your cursor over a string that's a filename and have it taken as default.
1629;;;
1630;;; If the command is given in a file buffer whose major mode is in
1631;;; SOURCE-MODES, then the the filename is the default file, and the
1632;;; file's directory is the default directory.
1633;;;
1634;;; If the buffer isn't a source file buffer (e.g., it's the process buffer),
1635;;; then the default directory & file are what was used in the last source-file
1636;;; processing command (i.e., PREVIOUS-DIR/FILE). If this is the first time
1637;;; the command has been run (PREVIOUS-DIR/FILE is nil), the default directory
1638;;; is the cwd, with no default file. (\"no default file\" = nil)
1639;;;
1640;;; SOURCE-REGEXP is typically going to be something like (tea-mode)
1641;;; for T programs, (lisp-mode) for Lisp programs, (soar-mode lisp-mode)
1642;;; for Soar programs, etc.
1643;;;
1644;;; The function returns a pair: (default-directory . default-file).
1645
1646(defun comint-source-default (previous-dir/file source-modes)
1647 (cond ((and buffer-file-name (memq major-mode source-modes))
1648 (cons (file-name-directory buffer-file-name)
1649 (file-name-nondirectory buffer-file-name)))
1650 (previous-dir/file)
1651 (t
1652 (cons default-directory nil))))
1653
49116ac0 1654
be9b65ac
DL
1655;;; (COMINT-CHECK-SOURCE fname)
1656;;;============================================================================
49116ac0 1657;;; Prior to loading or compiling (or otherwise processing) a file (in the CMU
be9b65ac
DL
1658;;; process-in-a-buffer modes), this function can be called on the filename.
1659;;; If the file is loaded into a buffer, and the buffer is modified, the user
1660;;; is queried to see if he wants to save the buffer before proceeding with
1661;;; the load or compile.
1662
1663(defun comint-check-source (fname)
1664 (let ((buff (get-file-buffer fname)))
1665 (if (and buff
1666 (buffer-modified-p buff)
3ee91e68 1667 (y-or-n-p (format "Save buffer %s first? " (buffer-name buff))))
be9b65ac
DL
1668 ;; save BUFF.
1669 (let ((old-buffer (current-buffer)))
1670 (set-buffer buff)
1671 (save-buffer)
1672 (set-buffer old-buffer)))))
1673
49116ac0 1674
be9b65ac
DL
1675;;; (COMINT-GET-SOURCE prompt prev-dir/file source-modes mustmatch-p)
1676;;;============================================================================
1677;;; COMINT-GET-SOURCE is used to prompt for filenames in command-interpreter
1678;;; commands that process source files (like loading or compiling a file).
1679;;; It prompts for the filename, provides a default, if there is one,
1680;;; and returns the result filename.
1681;;;
1682;;; See COMINT-SOURCE-DEFAULT for more on determining defaults.
1683;;;
1684;;; PROMPT is the prompt string. PREV-DIR/FILE is the (directory . file) pair
1685;;; from the last source processing command. SOURCE-MODES is a list of major
1686;;; modes used to determine what file buffers contain source files. (These
1687;;; two arguments are used for determining defaults). If MUSTMATCH-P is true,
1688;;; then the filename reader will only accept a file that exists.
1689;;;
1690;;; A typical use:
1691;;; (interactive (comint-get-source "Compile file: " prev-lisp-dir/file
1692;;; '(lisp-mode) t))
1693
1694;;; This is pretty stupid about strings. It decides we're in a string
1695;;; if there's a quote on both sides of point on the current line.
1696(defun comint-extract-string ()
cccd719e 1697 "Return string around POINT that starts the current line, or nil."
be9b65ac
DL
1698 (save-excursion
1699 (let* ((point (point))
1700 (bol (progn (beginning-of-line) (point)))
1701 (eol (progn (end-of-line) (point)))
1702 (start (progn (goto-char point)
1703 (and (search-backward "\"" bol t)
1704 (1+ (point)))))
1705 (end (progn (goto-char point)
1706 (and (search-forward "\"" eol t)
1707 (1- (point))))))
1708 (and start end
1709 (buffer-substring start end)))))
1710
1711(defun comint-get-source (prompt prev-dir/file source-modes mustmatch-p)
1712 (let* ((def (comint-source-default prev-dir/file source-modes))
1713 (stringfile (comint-extract-string))
1714 (sfile-p (and stringfile
49116ac0
JB
1715 (condition-case ()
1716 (file-exists-p stringfile)
1717 (error nil))
be9b65ac
DL
1718 (not (file-directory-p stringfile))))
1719 (defdir (if sfile-p (file-name-directory stringfile)
1720 (car def)))
1721 (deffile (if sfile-p (file-name-nondirectory stringfile)
1722 (cdr def)))
1723 (ans (read-file-name (if deffile (format "%s(default %s) "
1724 prompt deffile)
1725 prompt)
1726 defdir
1727 (concat defdir deffile)
1728 mustmatch-p)))
1729 (list (expand-file-name (substitute-in-file-name ans)))))
1730
49116ac0
JB
1731;;; I am somewhat divided on this string-default feature. It seems
1732;;; to violate the principle-of-least-astonishment, in that it makes
1733;;; the default harder to predict, so you actually have to look and see
1734;;; what the default really is before choosing it. This can trip you up.
1735;;; On the other hand, it can be useful, I guess. I would appreciate feedback
1736;;; on this.
1737;;; -Olin
1738
be9b65ac
DL
1739\f
1740;;; Simple process query facility.
1741;;; ===========================================================================
1742;;; This function is for commands that want to send a query to the process
1743;;; and show the response to the user. For example, a command to get the
1744;;; arglist for a Common Lisp function might send a "(arglist 'foo)" query
1745;;; to an inferior Common Lisp process.
1746;;;
1747;;; This simple facility just sends strings to the inferior process and pops
1748;;; up a window for the process buffer so you can see what the process
1749;;; responds with. We don't do anything fancy like try to intercept what the
1750;;; process responds with and put it in a pop-up window or on the message
1751;;; line. We just display the buffer. Low tech. Simple. Works good.
1752
1753;;; Send to the inferior process PROC the string STR. Pop-up but do not select
1754;;; a window for the inferior process so that its response can be seen.
1755(defun comint-proc-query (proc str)
1756 (let* ((proc-buf (process-buffer proc))
1757 (proc-mark (process-mark proc)))
1758 (display-buffer proc-buf)
1759 (set-buffer proc-buf) ; but it's not the selected *window*
1760 (let ((proc-win (get-buffer-window proc-buf))
1761 (proc-pt (marker-position proc-mark)))
1762 (comint-send-string proc str) ; send the query
1763 (accept-process-output proc) ; wait for some output
1764 ;; Try to position the proc window so you can see the answer.
1765 ;; This is bogus code. If you delete the (sit-for 0), it breaks.
1766 ;; I don't know why. Wizards invited to improve it.
1767 (if (not (pos-visible-in-window-p proc-pt proc-win))
1768 (let ((opoint (window-point proc-win)))
3ee91e68
RS
1769 (set-window-point proc-win proc-mark)
1770 (sit-for 0)
be9b65ac
DL
1771 (if (not (pos-visible-in-window-p opoint proc-win))
1772 (push-mark opoint)
3ee91e68 1773 (set-window-point proc-win opoint)))))))
be9b65ac
DL
1774
1775\f
3ee91e68 1776;;; Filename/command/history completion in a buffer
be9b65ac
DL
1777;;; ===========================================================================
1778;;; Useful completion functions, courtesy of the Ergo group.
be9b65ac 1779
1b421826 1780;;; Six commands:
3ee91e68
RS
1781;;; comint-dynamic-complete Complete or expand command, filename,
1782;;; history at point.
1783;;; comint-dynamic-complete-filename Complete filename at point.
3ee91e68 1784;;; comint-dynamic-list-filename-completions List completions in help buffer.
be9b65ac
DL
1785;;; comint-replace-by-expanded-filename Expand and complete filename at point;
1786;;; replace with expanded/completed name.
3ee91e68
RS
1787;;; comint-dynamic-simple-complete Complete stub given candidates.
1788
be9b65ac 1789;;; These are not installed in the comint-mode keymap. But they are
49116ac0 1790;;; available for people who want them. Shell-mode installs them:
735b3061 1791;;; (define-key shell-mode-map "\t" 'comint-dynamic-complete)
3ee91e68
RS
1792;;; (define-key shell-mode-map "\M-?"
1793;;; 'comint-dynamic-list-filename-completions)))
49116ac0
JB
1794;;;
1795;;; Commands like this are fine things to put in load hooks if you
1586b965 1796;;; want them present in specific modes.
49116ac0 1797
3ee91e68
RS
1798(defvar comint-completion-autolist nil
1799 "*If non-nil, automatically list possiblities on partial completion.
fdb7791d 1800This mirrors the optional behavior of tcsh.")
3ee91e68
RS
1801
1802(defvar comint-completion-addsuffix t
1803 "*If non-nil, add a `/' to completed directories, ` ' to file names.
fdb7791d 1804This mirrors the optional behavior of tcsh.")
3ee91e68
RS
1805
1806(defvar comint-completion-recexact nil
1807 "*If non-nil, use shortest completion if characters cannot be added.
fdb7791d 1808This mirrors the optional behavior of tcsh.
3ee91e68
RS
1809
1810A non-nil value is useful if `comint-completion-autolist' is non-nil too.")
1811
497513ad
RS
1812(defvar comint-completion-fignore nil
1813 "*List of suffixes to be disregarded during file completion.
1814This mirrors the optional behavior of bash and tcsh.
1815
1816Note that this applies to `comint-dynamic-complete-filename' only.")
1817
3ee91e68
RS
1818(defvar comint-file-name-prefix ""
1819 "Prefix prepended to absolute file names taken from process input.
1820This is used by comint's and shell's completion functions, and by shell's
1821directory tracking functions.")
be9b65ac 1822
3ee91e68
RS
1823
1824(defun comint-directory (directory)
1825 ;; Return expanded DIRECTORY, with `comint-file-name-prefix' if absolute.
1826 (expand-file-name (if (file-name-absolute-p directory)
1827 (concat comint-file-name-prefix directory)
1828 directory)))
1829
1830
1b421826
RS
1831(defun comint-word (word-chars)
1832 "Return the word of WORD-CHARS at point, or nil if non is found.
1833Word constituents are considered to be those in WORD-CHARS, which is like the
1834inside of a \"[...]\" (see `skip-chars-forward')."
3ee91e68 1835 (save-excursion
1b421826
RS
1836 (let ((limit (point))
1837 (word (concat "[" word-chars "]"))
1838 (non-word (concat "[^" word-chars "]")))
1839 (if (re-search-backward non-word nil 'move)
1840 (forward-char 1))
1841 ;; Anchor the search forwards.
1842 (if (or (eolp) (looking-at non-word))
1843 nil
1844 (re-search-forward (concat word "+") limit)
1845 (buffer-substring (match-beginning 0) (match-end 0))))))
3ee91e68 1846
3ee91e68 1847
1b421826
RS
1848(defun comint-match-partial-filename ()
1849 "Return the filename at point, or nil if non is found.
1850Environment variables are substituted. See `comint-word'."
44a63180 1851 (let ((filename (comint-word "~/A-Za-z0-9+@:_.$#%,={}-")))
1b421826 1852 (and filename (substitute-in-file-name filename))))
be9b65ac 1853
49116ac0 1854
be9b65ac 1855(defun comint-dynamic-complete ()
1b421826
RS
1856 "Dynamically perform completion at point.
1857Calls the functions in `comint-dynamic-complete-functions' to perform
1858completion until a function returns non-nil, at which point completion is
1859assumed to have occurred."
3ee91e68 1860 (interactive)
1b421826
RS
1861 (let ((functions comint-dynamic-complete-functions))
1862 (while (and functions (null (funcall (car functions))))
1863 (setq functions (cdr functions)))))
3ee91e68
RS
1864
1865
1866(defun comint-dynamic-complete-filename ()
49116ac0 1867 "Dynamically complete the filename at point.
1b421826
RS
1868Completes if after a filename. See `comint-match-partial-filename' and
1869`comint-dynamic-complete-as-filename'.
3ee91e68
RS
1870This function is similar to `comint-replace-by-expanded-filename', except that
1871it won't change parts of the filename already entered in the buffer; it just
1872adds completion characters to the end of the filename. A completions listing
1873may be shown in a help buffer if completion is ambiguous.
1874
497513ad
RS
1875Completion is dependent on the value of `comint-completion-addsuffix',
1876`comint-completion-recexact' and `comint-completion-fignore', and the timing of
1877completions listing is dependent on the value of `comint-completion-autolist'.
1b421826
RS
1878
1879Returns t if successful."
3ee91e68 1880 (interactive)
1b421826 1881 (if (comint-match-partial-filename)
81fb2771 1882 (prog2 (or (window-minibuffer-p (selected-window))
22f33dd9 1883 (message "Completing file name..."))
1b421826
RS
1884 (comint-dynamic-complete-as-filename))))
1885
1886
1887(defun comint-dynamic-complete-as-filename ()
1888 "Dynamically complete at point as a filename.
1889See `comint-dynamic-complete-filename'. Returns t if successful."
3ee91e68 1890 (let* ((completion-ignore-case nil)
497513ad 1891 (completion-ignored-extensions comint-completion-fignore)
81fb2771
SM
1892 (file-name-handler-alist nil)
1893 (minibuffer-p (window-minibuffer-p (selected-window)))
1b421826 1894 (success t)
f79f58bc
KH
1895 (filename (or (comint-match-partial-filename) ""))
1896 (pathdir (file-name-directory filename))
1897 (pathnondir (file-name-nondirectory filename))
1898 (directory (if pathdir (comint-directory pathdir) default-directory))
81fb2771 1899 (completion (file-name-completion pathnondir directory)))
3ee91e68
RS
1900 (cond ((null completion)
1901 (message "No completions of %s" filename)
1b421826 1902 (setq success nil))
3ee91e68
RS
1903 ((eq completion t) ; Means already completed "file".
1904 (if comint-completion-addsuffix (insert " "))
81fb2771 1905 (or minibuffer-p (message "Sole completion")))
3ee91e68
RS
1906 ((string-equal completion "") ; Means completion on "directory/".
1907 (comint-dynamic-list-filename-completions))
1908 (t ; Completion string returned.
1909 (let ((file (concat (file-name-as-directory directory) completion)))
3ee91e68
RS
1910 (insert (substring (directory-file-name completion)
1911 (length pathnondir)))
1912 (cond ((symbolp (file-name-completion completion directory))
1913 ;; We inserted a unique completion.
1914 (if comint-completion-addsuffix
1915 (insert (if (file-directory-p file) "/" " ")))
81fb2771 1916 (or minibuffer-p (message "Completed")))
3ee91e68
RS
1917 ((and comint-completion-recexact comint-completion-addsuffix
1918 (string-equal pathnondir completion)
1919 (file-exists-p file))
1920 ;; It's not unique, but user wants shortest match.
1921 (insert (if (file-directory-p file) "/" " "))
81fb2771 1922 (or minibuffer-p (message "Completed shortest")))
3ee91e68
RS
1923 ((or comint-completion-autolist
1924 (string-equal pathnondir completion))
1925 ;; It's not unique, list possible completions.
1926 (comint-dynamic-list-filename-completions))
1927 (t
81fb2771 1928 (or minibuffer-p (message "Partially completed")))))))
1b421826 1929 success))
3ee91e68
RS
1930
1931
1932(defun comint-replace-by-expanded-filename ()
1933 "Dynamically expand and complete the filename at point.
1934Replace the filename with an expanded, canonicalised and completed replacement.
1935\"Expanded\" means environment variables (e.g., $HOME) and `~'s are replaced
1936with the corresponding directories. \"Canonicalised\" means `..' and `.' are
1937removed, and the filename is made absolute instead of relative. For expansion
1938see `expand-file-name' and `substitute-in-file-name'. For completion see
1939`comint-dynamic-complete-filename'."
be9b65ac 1940 (interactive)
3ee91e68
RS
1941 (replace-match (expand-file-name (comint-match-partial-filename)) t t)
1942 (comint-dynamic-complete-filename))
1943
1944
3ee91e68
RS
1945(defun comint-dynamic-simple-complete (stub candidates)
1946 "Dynamically complete STUB from CANDIDATES list.
1947This function inserts completion characters at point by completing STUB from
1948the strings in CANDIDATES. A completions listing may be shown in a help buffer
1949if completion is ambiguous.
1950
1b421826
RS
1951Returns nil if no completion was inserted.
1952Returns `sole' if completed with the only completion match.
1953Returns `shortest' if completed with the shortest of the completion matches.
1954Returns `partial' if completed as far as possible with the completion matches.
1955Returns `listed' if a completion listing was shown.
1956
3ee91e68
RS
1957See also `comint-dynamic-complete-filename'."
1958 (let* ((completion-ignore-case nil)
1959 (candidates (mapcar (function (lambda (x) (list x))) candidates))
1960 (completions (all-completions stub candidates)))
be9b65ac 1961 (cond ((null completions)
3ee91e68 1962 (message "No completions of %s" stub)
1b421826 1963 nil)
3ee91e68
RS
1964 ((= 1 (length completions)) ; Gotcha!
1965 (let ((completion (car completions)))
1966 (if (string-equal completion stub)
1967 (message "Sole completion")
1968 (insert (substring completion (length stub)))
1969 (message "Completed"))
1b421826
RS
1970 (if comint-completion-addsuffix (insert " "))
1971 'sole))
3ee91e68
RS
1972 (t ; There's no unique completion.
1973 (let ((completion (try-completion stub candidates)))
1974 ;; Insert the longest substring.
1975 (insert (substring completion (length stub)))
1976 (cond ((and comint-completion-recexact comint-completion-addsuffix
1977 (string-equal stub completion)
1978 (member completion completions))
1979 ;; It's not unique, but user wants shortest match.
1980 (insert " ")
1b421826
RS
1981 (message "Completed shortest")
1982 'shortest)
3ee91e68
RS
1983 ((or comint-completion-autolist
1984 (string-equal stub completion))
1985 ;; It's not unique, list possible completions.
1b421826
RS
1986 (comint-dynamic-list-completions completions)
1987 'listed)
3ee91e68 1988 (t
1b421826
RS
1989 (message "Partially completed")
1990 'partial)))))))
3ee91e68
RS
1991
1992
1993(defun comint-dynamic-list-filename-completions ()
1994 "List in help buffer possible completions of the filename at point."
1995 (interactive)
1996 (let* ((completion-ignore-case nil)
81fb2771 1997 (file-name-handler-alist nil)
1b421826 1998 (filename (or (comint-match-partial-filename) ""))
3ee91e68
RS
1999 (pathdir (file-name-directory filename))
2000 (pathnondir (file-name-nondirectory filename))
2001 (directory (if pathdir (comint-directory pathdir) default-directory))
2002 (completions (file-name-all-completions pathnondir directory)))
2003 (if completions
2004 (comint-dynamic-list-completions completions)
1b421826 2005 (message "No completions of %s" filename))))
3ee91e68
RS
2006
2007
2008(defun comint-dynamic-list-completions (completions)
2009 "List in help buffer sorted COMPLETIONS.
2010Typing SPC flushes the help buffer."
2011 (let ((conf (current-window-configuration)))
dd3038f6 2012 (with-output-to-temp-buffer "*Completions*"
3ee91e68 2013 (display-completion-list (sort completions 'string-lessp)))
3ee91e68 2014 (message "Hit space to flush")
7d5d472e
RS
2015 (let (key first)
2016 (if (save-excursion
dd3038f6 2017 (set-buffer (get-buffer "*Completions*"))
7d5d472e
RS
2018 (setq key (read-key-sequence nil)
2019 first (aref key 0))
eb6c110a 2020 (and (consp first) (consp (event-start first))
7d5d472e 2021 (eq (window-buffer (posn-window (event-start first)))
dd3038f6 2022 (get-buffer "*Completions*"))
7d5d472e
RS
2023 (eq (key-binding key) 'mouse-choose-completion)))
2024 ;; If the user does mouse-choose-completion with the mouse,
2025 ;; execute the command, then delete the completion window.
2026 (progn
2027 (mouse-choose-completion first)
2028 (set-window-configuration conf))
2029 (if (eq first ?\ )
2030 (set-window-configuration conf)
2b5a5ed3 2031 (setq unread-command-events (listify-key-sequence key)))))))
be9b65ac
DL
2032\f
2033;;; Converting process modes to use comint mode
2034;;; ===========================================================================
be14d312
ER
2035;;; The code in the Emacs 19 distribution has all been modified to use comint
2036;;; where needed. However, there are `third-party' packages out there that
2037;;; still use the old shell mode. Here's a guide to conversion.
49116ac0 2038;;;
be9b65ac 2039;;; Renaming variables
49116ac0
JB
2040;;; Most of the work is renaming variables and functions. These are the common
2041;;; ones:
2042;;; Local variables:
87ef29fd 2043;;; last-input-start comint-last-input-start
49116ac0 2044;;; last-input-end comint-last-input-end
49116ac0
JB
2045;;; shell-prompt-pattern comint-prompt-regexp
2046;;; shell-set-directory-error-hook <no equivalent>
2047;;; Miscellaneous:
be9b65ac
DL
2048;;; shell-set-directory <unnecessary>
2049;;; shell-mode-map comint-mode-map
49116ac0 2050;;; Commands:
be9b65ac
DL
2051;;; shell-send-input comint-send-input
2052;;; shell-send-eof comint-delchar-or-maybe-eof
2053;;; kill-shell-input comint-kill-input
2054;;; interrupt-shell-subjob comint-interrupt-subjob
2055;;; stop-shell-subjob comint-stop-subjob
2056;;; quit-shell-subjob comint-quit-subjob
2057;;; kill-shell-subjob comint-kill-subjob
2058;;; kill-output-from-shell comint-kill-output
2059;;; show-output-from-shell comint-show-output
2060;;; copy-last-shell-input Use comint-previous-input/comint-next-input
2061;;;
87ef29fd 2062;;; SHELL-SET-DIRECTORY is gone, its functionality taken over by
fb9ab28a 2063;;; SHELL-DIRECTORY-TRACKER, the shell mode's comint-input-filter-functions.
87ef29fd 2064;;; Comint mode does not provide functionality equivalent to
be9b65ac 2065;;; shell-set-directory-error-hook; it is gone.
87ef29fd
JB
2066;;;
2067;;; comint-last-input-start is provided for modes which want to munge
2068;;; the buffer after input is sent, perhaps because the inferior
2069;;; insists on echoing the input. The LAST-INPUT-START variable in
2070;;; the old shell package was used to implement a history mechanism,
2071;;; but you should think twice before using comint-last-input-start
2072;;; for this; the input history ring often does the job better.
be9b65ac
DL
2073;;;
2074;;; If you are implementing some process-in-a-buffer mode, called foo-mode, do
2075;;; *not* create the comint-mode local variables in your foo-mode function.
2076;;; This is not modular. Instead, call comint-mode, and let *it* create the
2077;;; necessary comint-specific local variables. Then create the
2078;;; foo-mode-specific local variables in foo-mode. Set the buffer's keymap to
2079;;; be foo-mode-map, and its mode to be foo-mode. Set the comint-mode hooks
fb9ab28a 2080;;; (comint-{prompt-regexp, input-filter, input-filter-functions,
1b421826 2081;;; get-old-input) that need to be different from the defaults. Call
be9b65ac 2082;;; foo-mode-hook, and you're done. Don't run the comint-mode hook yourself;
735b3061 2083;;; comint-mode will take care of it. The following example, from shell.el,
49116ac0
JB
2084;;; is typical:
2085;;;
d55d5ec2
RS
2086;;; (defvar shell-mode-map '())
2087;;; (cond ((not shell-mode-map)
63ab7e8f 2088;;; (setq shell-mode-map (copy-keymap comint-mode-map))
d55d5ec2
RS
2089;;; (define-key shell-mode-map "\C-c\C-f" 'shell-forward-command)
2090;;; (define-key shell-mode-map "\C-c\C-b" 'shell-backward-command)
2091;;; (define-key shell-mode-map "\t" 'comint-dynamic-complete)
2092;;; (define-key shell-mode-map "\M-?"
2093;;; 'comint-dynamic-list-filename-completions)))
2094;;;
49116ac0
JB
2095;;; (defun shell-mode ()
2096;;; (interactive)
2097;;; (comint-mode)
2098;;; (setq comint-prompt-regexp shell-prompt-pattern)
2099;;; (setq major-mode 'shell-mode)
2100;;; (setq mode-name "Shell")
49116ac0
JB
2101;;; (use-local-map shell-mode-map)
2102;;; (make-local-variable 'shell-directory-stack)
2103;;; (setq shell-directory-stack nil)
fb9ab28a 2104;;; (add-hook 'comint-input-filter-functions 'shell-directory-tracker)
49116ac0
JB
2105;;; (run-hooks 'shell-mode-hook))
2106;;;
be9b65ac
DL
2107;;;
2108;;; Note that make-comint is different from make-shell in that it
2109;;; doesn't have a default program argument. If you give make-shell
2110;;; a program name of NIL, it cleverly chooses one of explicit-shell-name,
2111;;; $ESHELL, $SHELL, or /bin/sh. If you give make-comint a program argument
2112;;; of NIL, it barfs. Adjust your code accordingly...
49116ac0 2113;;;
3ee91e68
RS
2114;;; Completion for comint-mode users
2115;;;
1b421826
RS
2116;;; For modes that use comint-mode, comint-dynamic-complete-functions is the
2117;;; hook to add completion functions to. Functions on this list should return
2118;;; non-nil if completion occurs (i.e., further completion should not occur).
3ee91e68
RS
2119;;; You could use comint-dynamic-simple-complete to do the bulk of the
2120;;; completion job.
49116ac0 2121\f
49116ac0 2122(provide 'comint)
c0274f38
ER
2123
2124;;; comint.el ends here