Mercurial > emacs
annotate lisp/comint.el @ 1042:41b77a76b885
* dispnew.c: Incude "systty.h", not "systerm.h".
* dispnew.c (update_frame): Change the way we handle
cursor_in_echo_area. Firstly, ignore this if the frame we're
updating doesn't have a minibuffer. Secondly, don't handle the
selected frame specially. Thirdly, don't assume that the
minibuffer is only one line high. If cursor_in_echo_area < 0, put
the cursor in the upper-left corner; if cursor_in_echo_area > 0,
put it on the lowest non-empty line in the minibuffer window, or
on the top line.
* dispnew.c (direct_output_for_insert): Fail if
cursor_in_echo_area is set; we don't want to do the typing there.
(direct_output_for_insert): Same.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sat, 29 Aug 1992 02:55:05 +0000 |
parents | a93f0b1ba909 |
children | 853d0d4c61fb |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
1 ;;; comint.el --- general command interpreter in a window stuff |
925
6295ac3be480
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
909
diff
changeset
|
2 ;; Copyright (C) 1988, 1990, 1992 Free Software Foundation, Inc. |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
3 |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
4 ;; Author: Olin Shivers <shivers@cs.cmu.edu> |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
5 ;; Keyword: processes |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
6 |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
7 ;; This file is part of GNU Emacs. |
114 | 8 |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
9 ;; GNU Emacs is free software; you can redistribute it and/or modify |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
10 ;; it under the terms of the GNU General Public License as published by |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
12 ;; any later version. |
114 | 13 |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
14 ;; GNU Emacs is distributed in the hope that it will be useful, |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
17 ;; GNU General Public License for more details. |
114 | 18 |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
19 ;; You should have received a copy of the GNU General Public License |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
20 ;; along with GNU Emacs; see the file COPYING. If not, write to |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
114 | 22 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
23 ;;; Commentary: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
24 |
584 | 25 ;;; The changelog is at the end of this file. |
26 | |
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) | |
30 | |
114 | 31 ;;; This file defines a general command-interpreter-in-a-buffer package |
32 ;;; (comint mode). The idea is that you can build specific process-in-a-buffer | |
33 ;;; modes on top of comint mode -- e.g., lisp, shell, scheme, T, soar, .... | |
34 ;;; This way, all these specific packages share a common base functionality, | |
35 ;;; and a common set of bindings, which makes them easier to use (and | |
36 ;;; saves code, implementation time, etc., etc.). | |
37 | |
584 | 38 ;;; Several packages are already defined using comint mode: |
39 ;;; - cmushell.el defines a shell-in-a-buffer mode. | |
40 ;;; - cmulisp.el defines a simple lisp-in-a-buffer mode. | |
41 ;;; Cmushell and cmulisp mode are similar to, and intended to replace, | |
42 ;;; their counterparts in the standard gnu emacs release (in shell.el). | |
43 ;;; These replacements are more featureful, robust, and uniform than the | |
44 ;;; released versions. The key bindings in lisp mode are also more compatible | |
45 ;;; with the bindings of Hemlock and Zwei (the Lisp Machine emacs). | |
46 ;;; | |
47 ;;; - The file cmuscheme.el defines a scheme-in-a-buffer mode. | |
48 ;;; - The file tea.el tunes scheme and inferior-scheme modes for T. | |
49 ;;; - The file soar.el tunes lisp and inferior-lisp modes for Soar. | |
50 ;;; - cmutex.el defines tex and latex modes that invoke tex, latex, bibtex, | |
51 ;;; previewers, and printers from within emacs. | |
52 ;;; - background.el allows csh-like job control inside emacs. | |
53 ;;; It is pretty easy to make new derived modes for other processes. | |
54 | |
114 | 55 ;;; For documentation on the functionality provided by comint mode, and |
56 ;;; the hooks available for customising it, see the comments below. | |
57 ;;; For further information on the standard derived modes (shell, | |
58 ;;; inferior-lisp, inferior-scheme, ...), see the relevant source files. | |
59 | |
584 | 60 ;;; For hints on converting existing process modes (e.g., tex-mode, |
61 ;;; background, dbx, gdb, kermit, prolog, telnet) to use comint-mode | |
114 | 62 ;;; instead of shell-mode, see the notes at the end of this file. |
63 | |
64 | |
584 | 65 ;;; Brief Command Documentation: |
66 ;;;============================================================================ | |
67 ;;; Comint Mode Commands: (common to all derived modes, like cmushell & cmulisp | |
68 ;;; mode) | |
69 ;;; | |
70 ;;; m-p comint-previous-input Cycle backwards in input history | |
71 ;;; m-n comint-next-input Cycle forwards | |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
72 ;;; m-r comint-previous-similar-input Previous similar input |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
73 ;;; m-s comint-next-similar-input Next similar input |
705 | 74 ;;; c-m-r comint-previous-input-matching Search backwards in input history |
584 | 75 ;;; return comint-send-input |
76 ;;; c-a comint-bol Beginning of line; skip prompt. | |
77 ;;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff. | |
78 ;;; c-c c-u comint-kill-input ^u | |
79 ;;; c-c c-w backward-kill-word ^w | |
80 ;;; c-c c-c comint-interrupt-subjob ^c | |
81 ;;; c-c c-z comint-stop-subjob ^z | |
82 ;;; c-c c-\ comint-quit-subjob ^\ | |
83 ;;; c-c c-o comint-kill-output Delete last batch of process output | |
84 ;;; c-c c-r comint-show-output Show last batch of process output | |
85 ;;; | |
114 | 86 ;;; Not bound by default in comint-mode |
87 ;;; send-invisible Read a line w/o echo, and send to proc | |
88 ;;; (These are bound in shell-mode) | |
89 ;;; comint-dynamic-complete Complete filename at point. | |
90 ;;; comint-dynamic-list-completions List completions in help buffer. | |
91 ;;; comint-replace-by-expanded-filename Expand and complete filename at point; | |
92 ;;; replace with expanded/completed name. | |
584 | 93 ;;; comint-kill-subjob No mercy. |
94 ;;; comint-continue-subjob Send CONT signal to buffer's process | |
95 ;;; group. Useful if you accidentally | |
96 ;;; suspend your process (with C-c C-z). | |
97 ;;; | |
98 ;;; These used to be bound for RMS -- I prefer the input history stuff, | |
99 ;;; but you might like 'em. | |
100 ;;; m-P comint-msearch-input Search backwards for prompt | |
101 ;;; m-N comint-psearch-input Search forwards for prompt | |
102 ;;; C-cR comint-msearch-input-matching Search backwards for prompt & string | |
114 | 103 |
584 | 104 ;;; comint-mode-hook is the comint mode hook. Basically for your keybindings. |
105 ;;; comint-load-hook is run after loading in this package. | |
106 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
107 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
108 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
109 (defconst comint-version "2.03") |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
110 |
114 | 111 |
112 ;;; Buffer Local Variables: | |
113 ;;;============================================================================ | |
114 ;;; Comint mode buffer local variables: | |
115 ;;; comint-prompt-regexp - string comint-bol uses to match prompt. | |
705 | 116 ;;; comint-last-input-start - marker Handy if inferior always echos |
584 | 117 ;;; comint-last-input-end - marker For comint-kill-output command |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
118 ;;; comint-input-ring-size - integer For the input history |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
119 ;;; comint-input-ring - ring mechanism |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
120 ;;; comint-input-ring-index - marker ... |
114 | 121 ;;; comint-last-input-match - string ... |
122 ;;; comint-get-old-input - function Hooks for specific | |
123 ;;; comint-input-sentinel - function process-in-a-buffer | |
124 ;;; comint-input-filter - function modes. | |
125 ;;; comint-input-send - function | |
126 ;;; comint-eol-on-send - boolean | |
127 | |
584 | 128 (defvar comint-prompt-regexp "^" |
129 "Regexp to recognise prompts in the inferior process. | |
130 Defaults to \"^\", the null string at BOL. | |
114 | 131 |
132 Good choices: | |
584 | 133 Canonical Lisp: \"^[^> ]*>+:? *\" (Lucid, franz, kcl, T, cscheme, oaklisp) |
114 | 134 Lucid Common Lisp: \"^\\(>\\|\\(->\\)+\\) *\" |
584 | 135 franz: \"^\\(->\\|<[0-9]*>:\\) *\" |
136 kcl: \"^>+ *\" | |
137 shell: \"^[^#$%>]*[#$%>] *\" | |
138 T: \"^>+ *\" | |
114 | 139 |
584 | 140 This is a good thing to set in mode hooks.") |
114 | 141 |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
142 (defvar comint-input-ring-size 30 |
584 | 143 "Size of input history ring.") |
114 | 144 |
145 ;;; Here are the per-interpreter hooks. | |
584 | 146 (defvar comint-get-old-input (function comint-get-old-input-default) |
147 "Function that submits old text in comint mode. | |
114 | 148 This function is called when return is typed while the point is in old text. |
149 It returns the text to be submitted as process input. The default is | |
150 comint-get-old-input-default, which grabs the current line, and strips off | |
584 | 151 leading text matching comint-prompt-regexp") |
114 | 152 |
584 | 153 (defvar comint-input-sentinel (function ignore) |
154 "Called on each input submitted to comint mode process by comint-send-input. | |
155 Thus it can, for instance, track cd/pushd/popd commands issued to the csh.") | |
114 | 156 |
584 | 157 (defvar comint-input-filter |
158 (function (lambda (str) (not (string-match "\\`\\s *\\'" str)))) | |
159 "Predicate for filtering additions to input history. | |
114 | 160 Only inputs answering true to this function are saved on the input |
584 | 161 history list. Default is to save anything that isn't all whitespace") |
162 | |
163 (defvar comint-input-sender (function comint-simple-send) | |
164 "Function to actually send to PROCESS the STRING submitted by user. | |
165 Usually this is just 'comint-simple-send, but if your mode needs to | |
166 massage the input string, this is your hook. This is called from | |
167 the user command comint-send-input. comint-simple-send just sends | |
168 the string plus a newline.") | |
169 | |
170 (defvar comint-eol-on-send 'T | |
171 "If non-nil, then jump to the end of the line before sending input to process. | |
172 See comint-send-input") | |
114 | 173 |
174 (defvar comint-mode-hook '() | |
584 | 175 "Called upon entry into comint-mode |
176 This is run before the process is cranked up.") | |
177 | |
178 (defvar comint-exec-hook '() | |
179 "Called each time a process is exec'd by comint-exec. | |
180 This is called after the process is cranked up. It is useful for things that | |
181 must be done each time a process is executed in a comint-mode buffer (e.g., | |
182 (process-kill-without-query)). In contrast, the comint-mode-hook is only | |
183 executed once when the buffer is created.") | |
184 | |
185 (defvar comint-mode-map nil) | |
114 | 186 |
932
a93f0b1ba909
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
925
diff
changeset
|
187 (defvar comint-input-ring nil) |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
188 (defvar comint-last-input-start) |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
189 (defvar comint-last-input-end) |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
190 |
114 | 191 (defun comint-mode () |
192 "Major mode for interacting with an inferior interpreter. | |
193 Interpreter name is same as buffer name, sans the asterisks. | |
194 Return at end of buffer sends line as input. | |
195 Return not at end copies rest of line to end and sends it. | |
584 | 196 Setting mode variable comint-eol-on-send means jump to the end of the line |
197 before submitting new input. | |
114 | 198 |
199 This mode is typically customised to create inferior-lisp-mode, | |
584 | 200 shell-mode, etc.. This can be done by setting the hooks |
201 comint-input-sentinel, comint-input-filter, comint-input-sender and | |
202 comint-get-old-input to appropriate functions, and the variable | |
203 comint-prompt-regexp to the appropriate regular expression. | |
114 | 204 |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
205 An input history is maintained of size comint-input-ring-size, and |
114 | 206 can be accessed with the commands comint-next-input [\\[comint-next-input]] and |
207 comint-previous-input [\\[comint-previous-input]]. Commands not keybound by | |
208 default are send-invisible, comint-dynamic-complete, and | |
209 comint-list-dynamic-completions. | |
210 | |
211 If you accidentally suspend your process, use \\[comint-continue-subjob] | |
212 to continue it. | |
213 | |
214 \\{comint-mode-map} | |
215 | |
584 | 216 Entry to this mode runs the hooks on comint-mode-hook" |
114 | 217 (interactive) |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
218 (let ((old-ring (and (assq 'comint-input-ring (buffer-local-variables)) |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
219 (boundp 'comint-input-ring) |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
220 comint-input-ring)) |
584 | 221 (old-ptyp comint-ptyp)) ; preserve across local var kill. gross. |
222 ; (kill-all-local-variables) ; Removed 1/15/90 Olin | |
223 (setq major-mode 'comint-mode) | |
224 (setq mode-name "Comint") | |
225 (setq mode-line-process '(": %s")) | |
226 (use-local-map comint-mode-map) | |
705 | 227 (make-local-variable 'comint-last-input-start) |
228 (setq comint-last-input-start (make-marker)) | |
584 | 229 (make-local-variable 'comint-last-input-end) |
230 (setq comint-last-input-end (make-marker)) | |
231 (make-local-variable 'comint-last-input-match) | |
232 (setq comint-last-input-match "") | |
233 (make-local-variable 'comint-prompt-regexp) ; Don't set; default | |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
234 (make-local-variable 'comint-input-ring-size) ; ...to global val. |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
235 (make-local-variable 'comint-input-ring) |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
236 (make-local-variable 'comint-input-ring-index) |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
237 (setq comint-input-ring-index 0) |
584 | 238 (make-local-variable 'comint-get-old-input) |
239 (make-local-variable 'comint-input-sentinel) | |
240 (make-local-variable 'comint-input-filter) | |
241 (make-local-variable 'comint-input-sender) | |
242 (make-local-variable 'comint-eol-on-send) | |
243 (make-local-variable 'comint-ptyp) | |
244 (setq comint-ptyp old-ptyp) | |
705 | 245 (make-local-variable 'comint-exec-hook) |
584 | 246 (run-hooks 'comint-mode-hook) |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
247 ;Do this after the hook so the user can mung COMINT-INPUT-RING-SIZE w/his hook. |
584 | 248 ;The test is so we don't lose history if we run comint-mode twice in |
249 ;a buffer. | |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
250 (setq comint-input-ring (if (ring-p old-ring) old-ring |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
251 (make-ring comint-input-ring-size))))) |
584 | 252 |
253 ;;; The old-ptyp stuff above is because we have to preserve the value of | |
254 ;;; comint-ptyp across calls to comint-mode, in spite of the | |
255 ;;; kill-all-local-variables that it does. Blech. Hopefully, this will all | |
256 ;;; go away when a later release fixes the signalling bug. | |
257 ;;; (Later: I removed the kill-all-local-variables, but have left this | |
258 ;;; other code in place just in case I reverse myself.) | |
114 | 259 |
584 | 260 (if comint-mode-map |
261 nil | |
262 (setq comint-mode-map (make-sparse-keymap)) | |
263 (define-key comint-mode-map "\ep" 'comint-previous-input) | |
264 (define-key comint-mode-map "\en" 'comint-next-input) | |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
265 (define-key comint-mode-map "\er" 'comint-previous-similar-input) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
266 (define-key comint-mode-map "\es" 'comint-next-similar-input) |
584 | 267 (define-key comint-mode-map "\C-m" 'comint-send-input) |
268 (define-key comint-mode-map "\C-d" 'comint-delchar-or-maybe-eof) | |
269 (define-key comint-mode-map "\C-a" 'comint-bol) | |
270 (define-key comint-mode-map "\C-c\C-u" 'comint-kill-input) | |
271 (define-key comint-mode-map "\C-c\C-w" 'backward-kill-word) | |
272 (define-key comint-mode-map "\C-c\C-c" 'comint-interrupt-subjob) | |
273 (define-key comint-mode-map "\C-c\C-z" 'comint-stop-subjob) | |
274 (define-key comint-mode-map "\C-c\C-\\" 'comint-quit-subjob) | |
275 (define-key comint-mode-map "\C-c\C-o" 'comint-kill-output) | |
276 (define-key comint-mode-map "\C-\M-r" 'comint-previous-input-matching) | |
277 (define-key comint-mode-map "\C-c\C-r" 'comint-show-output) | |
278 ;;; prompt-search commands commented out 3/90 -Olin | |
279 ; (define-key comint-mode-map "\eP" 'comint-msearch-input) | |
280 ; (define-key comint-mode-map "\eN" 'comint-psearch-input) | |
281 ; (define-key comint-mode-map "\C-cR" 'comint-msearch-input-matching) | |
282 ) | |
283 | |
284 | |
285 ;;; This function is used to make a full copy of the comint mode map, | |
286 ;;; so that client modes won't interfere with each other. This function | |
287 ;;; isn't necessary in emacs 18.5x, but we keep it around for 18.4x versions. | |
288 (defun full-copy-sparse-keymap (km) | |
289 "Recursively copy the sparse keymap KM" | |
290 (cond ((consp km) | |
291 (cons (full-copy-sparse-keymap (car km)) | |
292 (full-copy-sparse-keymap (cdr km)))) | |
293 (t km))) | |
294 | |
295 (defun comint-check-proc (buffer) | |
296 "True if there is a process associated w/buffer BUFFER, and | |
297 it is alive (status RUN or STOP). BUFFER can be either a buffer or the | |
298 name of one" | |
299 (let ((proc (get-buffer-process buffer))) | |
114 | 300 (and proc (memq (process-status proc) '(run stop))))) |
301 | |
302 ;;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it () | |
303 ;;; for the second argument (program). | |
870
1b3af6ad85be
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
864
diff
changeset
|
304 ;;;###autoload |
114 | 305 (defun make-comint (name program &optional startfile &rest switches) |
584 | 306 (let ((buffer (get-buffer-create (concat "*" name "*")))) |
114 | 307 ;; If no process, or nuked process, crank up a new one and put buffer in |
308 ;; comint mode. Otherwise, leave buffer and existing process alone. | |
182 | 309 (cond ((not (comint-check-proc buffer)) |
584 | 310 (save-excursion |
114 | 311 (set-buffer buffer) |
312 (comint-mode)) ; Install local vars, mode, keymap, ... | |
313 (comint-exec buffer name program startfile switches))) | |
314 buffer)) | |
315 | |
584 | 316 (defvar comint-ptyp t |
317 "True if communications via pty; false if by pipe. Buffer local. | |
318 This is to work around a bug in emacs process signalling.") | |
319 | |
114 | 320 (defun comint-exec (buffer name command startfile switches) |
321 "Fires up a process in buffer for comint modes. | |
584 | 322 Blasts any old process running in the buffer. Doesn't set the buffer mode. |
323 You can use this to cheaply run a series of processes in the same comint | |
324 buffer. The hook comint-exec-hook is run after each exec." | |
114 | 325 (save-excursion |
326 (set-buffer buffer) | |
327 (let ((proc (get-buffer-process buffer))) ; Blast any old process. | |
328 (if proc (delete-process proc))) | |
329 ;; Crank up a new process | |
330 (let ((proc (comint-exec-1 name buffer command switches))) | |
584 | 331 (make-local-variable 'comint-ptyp) |
332 (setq comint-ptyp process-connection-type) ; T if pty, NIL if pipe. | |
114 | 333 ;; Jump to the end, and set the process mark. |
584 | 334 (goto-char (point-max)) |
705 | 335 (set-marker (process-mark proc) (point)) |
114 | 336 ;; Feed it the startfile. |
337 (cond (startfile | |
338 ;;This is guaranteed to wait long enough | |
339 ;;but has bad results if the comint does not prompt at all | |
340 ;; (while (= size (buffer-size)) | |
341 ;; (sleep-for 1)) | |
342 ;;I hope 1 second is enough! | |
343 (sleep-for 1) | |
344 (goto-char (point-max)) | |
345 (insert-file-contents startfile) | |
346 (setq startfile (buffer-substring (point) (point-max))) | |
347 (delete-region (point) (point-max)) | |
584 | 348 (comint-send-string proc startfile))) |
349 (run-hooks 'comint-exec-hook) | |
705 | 350 buffer))) |
114 | 351 |
352 ;;; This auxiliary function cranks up the process for comint-exec in | |
638 | 353 ;;; the appropriate environment. |
114 | 354 |
355 (defun comint-exec-1 (name buffer command switches) | |
638 | 356 (let ((process-environment |
357 (comint-update-env process-environment | |
358 (list (format "TERMCAP=emacs:co#%d:tc=unknown" | |
778 | 359 (frame-width)) |
638 | 360 "TERM=emacs" |
361 "EMACS=t")))) | |
362 (apply 'start-process name buffer command switches))) | |
584 | 363 |
364 | |
114 | 365 |
366 ;; This is just (append new old-env) that compresses out shadowed entries. | |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
367 ;; It's also pretty ugly, mostly due to lisp's horrible iteration structures. |
114 | 368 (defun comint-update-env (old-env new) |
369 (let ((ans (reverse new)) | |
370 (vars (mapcar (function (lambda (vv) | |
371 (and (string-match "^[^=]*=" vv) | |
372 (substring vv 0 (match-end 0))))) | |
373 new))) | |
374 (while old-env | |
375 (let* ((vv (car old-env)) ; vv is var=value | |
376 (var (and (string-match "^[^=]*=" vv) | |
377 (substring vv 0 (match-end 0))))) | |
378 (setq old-env (cdr old-env)) | |
584 | 379 (cond ((not (and var (comint-mem var vars))) |
114 | 380 (if var (setq var (cons var vars))) |
381 (setq ans (cons vv ans)))))) | |
382 (nreverse ans))) | |
584 | 383 |
384 ;;; This should be in emacs, but it isn't. | |
385 (defun comint-mem (item list &optional elt=) | |
386 "Test to see if ITEM is equal to an item in LIST. | |
387 Option comparison function ELT= defaults to equal." | |
388 (let ((elt= (or elt= (function equal))) | |
389 (done nil)) | |
390 (while (and list (not done)) | |
391 (if (funcall elt= item (car list)) | |
392 (setq done list) | |
393 (setq list (cdr list)))) | |
394 done)) | |
395 | |
114 | 396 |
397 ;;; Input history retrieval commands | |
398 ;;; M-p -- previous input M-n -- next input | |
584 | 399 ;;; M-C-r -- previous input matching |
114 | 400 ;;; =========================================================================== |
401 | |
402 (defun comint-previous-input (arg) | |
403 "Cycle backwards through input history." | |
404 (interactive "*p") | |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
405 (let ((len (ring-length comint-input-ring))) |
584 | 406 (cond ((<= len 0) |
407 (message "Empty input ring") | |
408 (ding)) | |
409 ((not (comint-after-pmark-p)) | |
410 (message "Not after process mark") | |
411 (ding)) | |
412 (t | |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
413 (delete-region (point) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
414 (process-mark (get-buffer-process (current-buffer)))) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
415 ;; Initialize the index on the first use of this command |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
416 ;; so that the first M-p gets index 0, and the first M-n gets |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
417 ;; index -1. |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
418 (if (null comint-input-ring-index) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
419 (setq comint-input-ring-index |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
420 (if (> arg 0) -1 |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
421 (if (< arg 0) 1 0)))) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
422 (setq comint-input-ring-index |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
423 (comint-mod (+ comint-input-ring-index arg) len)) |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
424 (message "%d" (1+ comint-input-ring-index)) |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
425 (insert (ring-ref comint-input-ring comint-input-ring-index)))))) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
426 |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
427 (defun comint-mod (n m) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
428 "Returns N mod M. M is positive. |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
429 Answer is guaranteed to be non-negative, and less than m." |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
430 (let ((n (% n m))) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
431 (if (>= n 0) n |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
432 (+ n |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
433 (if (>= m 0) m (- m)))))) ; (abs m) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
434 |
114 | 435 (defun comint-next-input (arg) |
436 "Cycle forwards through input history." | |
437 (interactive "*p") | |
438 (comint-previous-input (- arg))) | |
439 | |
584 | 440 (defvar comint-last-input-match "" |
441 "Last string searched for by comint input history search, for defaulting. | |
442 Buffer local variable.") | |
443 | |
114 | 444 (defun comint-previous-input-matching (str) |
445 "Searches backwards through input history for substring match." | |
446 (interactive (let* ((last-command last-command) ; preserve around r-f-m | |
447 (s (read-from-minibuffer | |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
861
diff
changeset
|
448 (format "Command substring (default %s): " |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
861
diff
changeset
|
449 comint-last-input-match)))) |
114 | 450 (list (if (string= s "") comint-last-input-match s)))) |
451 ; (interactive "sCommand substring: ") | |
452 (setq comint-last-input-match str) ; update default | |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
453 (if (null comint-input-ring-index) |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
454 (setq comint-input-ring-index -1)) |
114 | 455 (let ((str (regexp-quote str)) |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
456 (len (ring-length comint-input-ring)) |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
457 (n (+ comint-input-ring-index 1))) |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
458 (while (and (< n len) (not (string-match str (ring-ref comint-input-ring n)))) |
114 | 459 (setq n (+ n 1))) |
460 (cond ((< n len) | |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
461 (comint-previous-input (- n comint-input-ring-index))) |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
462 (t (error "Not found"))))) |
584 | 463 |
464 | |
465 ;;; These next three commands are alternatives to the input history commands | |
466 ;;; -- comint-next-input, comint-previous-input and | |
467 ;;; comint-previous-input-matching. They search through the process buffer | |
468 ;;; text looking for occurrences of the prompt. Bound to M-P, M-N, and C-c R | |
469 ;;; (uppercase P, N, and R) for now. Try'em out. Go with what you like... | |
470 | |
471 ;;; comint-msearch-input-matching prompts for a string, not a regexp. | |
472 ;;; This could be considered to be the wrong thing. I decided to keep it | |
473 ;;; simple, and not make the user worry about regexps. This, of course, | |
474 ;;; limits functionality. | |
475 | |
476 ;;; These commands were deemed non-winning and have been commented out. | |
477 ;;; Feel free to re-enable them if you like. -Olin 3/91 | |
478 | |
479 ;(defun comint-psearch-input () | |
480 ; "Search forwards for next occurrence of prompt and skip to end of line. | |
481 ;\(prompt is anything matching regexp comint-prompt-regexp)" | |
482 ; (interactive) | |
483 ; (if (re-search-forward comint-prompt-regexp (point-max) t) | |
484 ; (end-of-line) | |
485 ; (error "No occurrence of prompt found"))) | |
486 ; | |
487 ;(defun comint-msearch-input () | |
488 ; "Search backwards for previous occurrence of prompt and skip to end of line. | |
489 ;Search starts from beginning of current line." | |
490 ; (interactive) | |
491 ; (let ((p (save-excursion | |
492 ; (beginning-of-line) | |
493 ; (cond ((re-search-backward comint-prompt-regexp (point-min) t) | |
494 ; (end-of-line) | |
495 ; (point)) | |
496 ; (t nil))))) | |
497 ; (if p (goto-char p) | |
498 ; (error "No occurrence of prompt found")))) | |
499 ; | |
500 ;(defun comint-msearch-input-matching (str) | |
501 ; "Search backwards for occurrence of prompt followed by STRING. | |
502 ;STRING is prompted for, and is NOT a regular expression." | |
503 ; (interactive (let ((s (read-from-minibuffer | |
504 ; (format "Command (default %s): " | |
505 ; comint-last-input-match)))) | |
506 ; (list (if (string= s "") comint-last-input-match s)))) | |
507 ;; (interactive "sCommand: ") | |
508 ; (setq comint-last-input-match str) ; update default | |
509 ; (let* ((r (concat comint-prompt-regexp (regexp-quote str))) | |
510 ; (p (save-excursion | |
511 ; (beginning-of-line) | |
512 ; (cond ((re-search-backward r (point-min) t) | |
513 ; (end-of-line) | |
514 ; (point)) | |
515 ; (t nil))))) | |
516 ; (if p (goto-char p) | |
517 ; (error "No match")))) | |
114 | 518 |
519 ;;; | |
520 ;;; Similar input -- contributed by ccm and highly winning. | |
521 ;;; | |
522 ;;; Reenter input, removing back to the last insert point if it exists. | |
523 ;;; | |
584 | 524 (defvar comint-last-similar-string "" |
525 "The string last used in a similar string search.") | |
114 | 526 (defun comint-previous-similar-input (arg) |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
527 "Fetch the previous (older) input that matches the string typed so far. |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
528 Successive repetitions find successively older matching inputs. |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
529 A prefix argument serves as a repeat count; a negative argument |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
530 fetches following (more recent) inputs." |
114 | 531 (interactive "p") |
584 | 532 (if (not (comint-after-pmark-p)) |
114 | 533 (error "Not after process mark")) |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
534 (if (null comint-input-ring-index) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
535 (setq comint-input-ring-index |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
536 (if (> arg 0) -1 |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
537 (if (< arg 0) 1 0)))) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
538 (if (not (or (eq last-command 'comint-previous-similar-input) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
539 (eq last-command 'comint-next-similar-input))) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
540 (setq comint-last-similar-string |
584 | 541 (buffer-substring |
542 (process-mark (get-buffer-process (current-buffer))) | |
543 (point)))) | |
114 | 544 (let* ((size (length comint-last-similar-string)) |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
545 (len (ring-length comint-input-ring)) |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
546 (n (+ comint-input-ring-index arg)) |
114 | 547 entry) |
548 (while (and (< n len) | |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
549 (or (< (length (setq entry (ring-ref comint-input-ring n))) size) |
114 | 550 (not (equal comint-last-similar-string |
551 (substring entry 0 size))))) | |
552 (setq n (+ n arg))) | |
553 (cond ((< n len) | |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
554 (setq comint-input-ring-index n) |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
555 (if (or (eq last-command 'comint-previous-similar-input) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
556 (eq last-command 'comint-next-similar-input)) |
584 | 557 (delete-region (mark) (point)) ; repeat |
558 (push-mark (point))) ; 1st time | |
114 | 559 (insert (substring entry size))) |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
560 (t (error "Not found"))) |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
561 (message "%d" (1+ comint-input-ring-index)))) |
584 | 562 |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
563 (defun comint-next-similar-input (arg) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
564 "Fetch the next (newer) input that matches the string typed so far. |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
565 Successive repetitions find successively newer matching inputs. |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
566 A prefix argument serves as a repeat count; a negative argument |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
567 fetches previous (older) inputs." |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
568 (interactive "p") |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
569 (comint-previous-similar-input (- arg))) |
114 | 570 |
584 | 571 (defun comint-send-input () |
572 "Send input to process. After the process output mark, sends all text | |
573 from the process mark to point as input to the process. Before the process | |
574 output mark, calls value of variable comint-get-old-input to retrieve old | |
575 input, copies it to the process mark, and sends it. A terminal newline is | |
576 also inserted into the buffer and sent to the process. In either case, value | |
577 of variable comint-input-sentinel is called on the input before sending it. | |
578 The input is entered into the input history ring, if the value of variable | |
579 comint-input-filter returns non-nil when called on the input. | |
114 | 580 |
584 | 581 If variable comint-eol-on-send is non-nil, then point is moved to the end of |
582 line before sending the input. | |
114 | 583 |
584 comint-get-old-input, comint-input-sentinel, and comint-input-filter are chosen | |
584 | 585 according to the command interpreter running in the buffer. E.g., |
114 | 586 If the interpreter is the csh, |
584 | 587 comint-get-old-input is the default: take the current line, discard any |
588 initial string matching regexp comint-prompt-regexp. | |
589 comint-input-sentinel monitors input for \"cd\", \"pushd\", and \"popd\" | |
590 commands. When it sees one, it cd's the buffer. | |
591 comint-input-filter is the default: returns T if the input isn't all white | |
592 space. | |
114 | 593 |
594 If the comint is Lucid Common Lisp, | |
584 | 595 comint-get-old-input snarfs the sexp ending at point. |
596 comint-input-sentinel does nothing. | |
597 comint-input-filter returns NIL if the input matches input-filter-regexp, | |
114 | 598 which matches (1) all whitespace (2) :a, :c, etc. |
599 | |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
600 Similarly for Soar, Scheme, etc." |
114 | 601 (interactive) |
602 ;; Note that the input string does not include its terminal newline. | |
584 | 603 (let ((proc (get-buffer-process (current-buffer)))) |
604 (if (not proc) (error "Current buffer has no process") | |
605 (let* ((pmark (process-mark proc)) | |
606 (pmark-val (marker-position pmark)) | |
607 (input (if (>= (point) pmark-val) | |
608 (progn (if comint-eol-on-send (end-of-line)) | |
609 (buffer-substring pmark (point))) | |
705 | 610 (let ((copy (funcall comint-get-old-input))) |
611 (goto-char pmark) | |
612 (insert copy) | |
613 copy)))) | |
584 | 614 (insert ?\n) |
861
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
615 (if (funcall comint-input-filter input) |
345296f94a1e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
616 (ring-insert comint-input-ring input)) |
584 | 617 (funcall comint-input-sentinel input) |
618 (funcall comint-input-sender proc input) | |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
619 (setq comint-input-ring-index nil) |
705 | 620 (set-marker comint-last-input-start pmark) |
621 (set-marker comint-last-input-end (point)) | |
622 (set-marker (process-mark proc) (point)))))) | |
114 | 623 |
624 (defun comint-get-old-input-default () | |
584 | 625 "Default for comint-get-old-input: take the current line, and discard |
626 any initial text matching comint-prompt-regexp." | |
114 | 627 (save-excursion |
584 | 628 (beginning-of-line) |
629 (comint-skip-prompt) | |
630 (let ((beg (point))) | |
631 (end-of-line) | |
632 (buffer-substring beg (point))))) | |
633 | |
634 (defun comint-skip-prompt () | |
635 "Skip past the text matching regexp comint-prompt-regexp. | |
636 If this takes us past the end of the current line, don't skip at all." | |
637 (let ((eol (save-excursion (end-of-line) (point)))) | |
638 (if (and (looking-at comint-prompt-regexp) | |
639 (<= (match-end 0) eol)) | |
640 (goto-char (match-end 0))))) | |
641 | |
642 | |
643 (defun comint-after-pmark-p () | |
644 "Is point after the process output marker?" | |
645 ;; Since output could come into the buffer after we looked at the point | |
646 ;; but before we looked at the process marker's value, we explicitly | |
647 ;; serialise. This is just because I don't know whether or not emacs | |
648 ;; services input during execution of lisp commands. | |
649 (let ((proc-pos (marker-position | |
650 (process-mark (get-buffer-process (current-buffer)))))) | |
651 (<= proc-pos (point)))) | |
652 | |
653 (defun comint-simple-send (proc string) | |
654 "Default function for sending to PROC input STRING. | |
655 This just sends STRING plus a newline. To override this, | |
656 set the hook COMINT-INPUT-SENDER." | |
657 (comint-send-string proc string) | |
658 (comint-send-string proc "\n")) | |
114 | 659 |
660 (defun comint-bol (arg) | |
661 "Goes to the beginning of line, then skips past the prompt, if any. | |
584 | 662 If a prefix argument is given (\\[universal-argument]), then no prompt skip |
663 -- go straight to column 0. | |
114 | 664 |
584 | 665 The prompt skip is done by skipping text matching the regular expression |
666 comint-prompt-regexp, a buffer local variable. | |
667 | |
668 If you don't like this command, reset c-a to beginning-of-line | |
669 in your hook, comint-mode-hook." | |
114 | 670 (interactive "P") |
671 (beginning-of-line) | |
584 | 672 (if (null arg) (comint-skip-prompt))) |
114 | 673 |
674 ;;; These two functions are for entering text you don't want echoed or | |
675 ;;; saved -- typically passwords to ftp, telnet, or somesuch. | |
584 | 676 ;;; Just enter m-x send-invisible and type in your line. |
677 | |
705 | 678 (defun comint-read-noecho (prompt &optional stars) |
584 | 679 "Prompt the user with argument PROMPT. Read a single line of text |
680 without echoing, and return it. Note that the keystrokes comprising | |
681 the text can still be recovered (temporarily) with \\[view-lossage]. This | |
705 | 682 may be a security bug for some applications. Optional argument STARS |
683 causes input to be echoed with '*' characters on the prompt line." | |
114 | 684 (let ((echo-keystrokes 0) |
705 | 685 (cursor-in-echo-area t) |
114 | 686 (answ "") |
687 tem) | |
705 | 688 (if (not (stringp prompt)) (setq prompt "")) |
689 (message prompt) | |
584 | 690 (while (not(or (= (setq tem (read-char)) ?\^m) |
114 | 691 (= tem ?\n))) |
705 | 692 (setq answ (concat answ (char-to-string tem))) |
693 (if stars (setq prompt (concat prompt "*"))) | |
694 (message prompt)) | |
114 | 695 (message "") |
696 answ)) | |
697 | |
705 | 698 |
114 | 699 (defun send-invisible (str) |
584 | 700 "Read a string without echoing, and send it to the process running |
701 in the current buffer. A new-line is additionally sent. String is not | |
702 saved on comint input history list. | |
703 Security bug: your string can still be temporarily recovered with | |
704 \\[view-lossage]." | |
114 | 705 ; (interactive (list (comint-read-noecho "Enter non-echoed text"))) |
706 (interactive "P") ; Defeat snooping via C-x esc | |
707 (let ((proc (get-buffer-process (current-buffer)))) | |
708 (if (not proc) (error "Current buffer has no process") | |
709 (comint-send-string proc | |
710 (if (stringp str) str | |
705 | 711 (comint-read-noecho "Non-echoed text: " t))) |
114 | 712 (comint-send-string proc "\n")))) |
713 | |
714 | |
715 ;;; Low-level process communication | |
716 | |
717 (defvar comint-input-chunk-size 512 | |
718 "*Long inputs send to comint processes are broken up into chunks of this size. | |
719 If your process is choking on big inputs, try lowering the value.") | |
720 | |
721 (defun comint-send-string (proc str) | |
722 "Send PROCESS the contents of STRING as input. | |
723 This is equivalent to process-send-string, except that long input strings | |
724 are broken up into chunks of size comint-input-chunk-size. Processes | |
725 are given a chance to output between chunks. This can help prevent processes | |
726 from hanging when you send them long inputs on some OS's." | |
727 (let* ((len (length str)) | |
728 (i (min len comint-input-chunk-size))) | |
729 (process-send-string proc (substring str 0 i)) | |
730 (while (< i len) | |
731 (let ((next-i (+ i comint-input-chunk-size))) | |
732 (accept-process-output) | |
733 (process-send-string proc (substring str i (min len next-i))) | |
734 (setq i next-i))))) | |
735 | |
736 (defun comint-send-region (proc start end) | |
737 "Sends to PROC the region delimited by START and END. | |
738 This is a replacement for process-send-region that tries to keep | |
739 your process from hanging on long inputs. See comint-send-string." | |
740 (comint-send-string proc (buffer-substring start end))) | |
741 | |
742 | |
743 ;;; Random input hackage | |
744 | |
584 | 745 (defun comint-kill-output () |
114 | 746 "Kill all output from interpreter since last input." |
747 (interactive) | |
584 | 748 (let ((pmark (process-mark (get-buffer-process (current-buffer))))) |
749 (kill-region comint-last-input-end pmark) | |
750 (goto-char pmark) | |
751 (insert "*** output flushed ***\n") | |
752 (set-marker pmark (point)))) | |
114 | 753 |
754 (defun comint-show-output () | |
584 | 755 "Display start of this batch of interpreter output at top of window. |
756 Also put cursor there." | |
114 | 757 (interactive) |
758 (goto-char comint-last-input-end) | |
584 | 759 (backward-char) |
114 | 760 (beginning-of-line) |
761 (set-window-start (selected-window) (point)) | |
584 | 762 (end-of-line)) |
114 | 763 |
764 (defun comint-interrupt-subjob () | |
584 | 765 "Interrupt the current subjob." |
114 | 766 (interactive) |
584 | 767 (interrupt-process nil comint-ptyp)) |
114 | 768 |
769 (defun comint-kill-subjob () | |
584 | 770 "Send kill signal to the current subjob." |
114 | 771 (interactive) |
584 | 772 (kill-process nil comint-ptyp)) |
114 | 773 |
774 (defun comint-quit-subjob () | |
584 | 775 "Send quit signal to the current subjob." |
114 | 776 (interactive) |
584 | 777 (quit-process nil comint-ptyp)) |
114 | 778 |
779 (defun comint-stop-subjob () | |
584 | 780 "Stop the current subjob. |
114 | 781 WARNING: if there is no current subjob, you can end up suspending |
584 | 782 the top-level process running in the buffer. If you accidentally do |
783 this, use \\[comint-continue-subjob] to resume the process. (This | |
784 is not a problem with most shells, since they ignore this signal.)" | |
114 | 785 (interactive) |
584 | 786 (stop-process nil comint-ptyp)) |
114 | 787 |
788 (defun comint-continue-subjob () | |
584 | 789 "Send CONT signal to process buffer's process group. |
114 | 790 Useful if you accidentally suspend the top-level process." |
791 (interactive) | |
584 | 792 (continue-process nil comint-ptyp)) |
114 | 793 |
794 (defun comint-kill-input () | |
584 | 795 "Kill all text from last stuff output by interpreter to point." |
114 | 796 (interactive) |
584 | 797 (let* ((pmark (process-mark (get-buffer-process (current-buffer)))) |
798 (p-pos (marker-position pmark))) | |
799 (if (> (point) p-pos) | |
800 (kill-region pmark (point))))) | |
114 | 801 |
802 (defun comint-delchar-or-maybe-eof (arg) | |
803 "Delete ARG characters forward, or send an EOF to process if at end of buffer." | |
804 (interactive "p") | |
805 (if (eobp) | |
806 (process-send-eof) | |
584 | 807 (delete-char arg))) |
808 | |
809 | |
810 | |
114 | 811 |
812 ;;; Support for source-file processing commands. | |
813 ;;;============================================================================ | |
814 ;;; Many command-interpreters (e.g., Lisp, Scheme, Soar) have | |
815 ;;; commands that process files of source text (e.g. loading or compiling | |
816 ;;; files). So the corresponding process-in-a-buffer modes have commands | |
817 ;;; for doing this (e.g., lisp-load-file). The functions below are useful | |
818 ;;; for defining these commands. | |
819 ;;; | |
820 ;;; Alas, these guys don't do exactly the right thing for Lisp, Scheme | |
821 ;;; and Soar, in that they don't know anything about file extensions. | |
822 ;;; So the compile/load interface gets the wrong default occasionally. | |
823 ;;; The load-file/compile-file default mechanism could be smarter -- it | |
824 ;;; doesn't know about the relationship between filename extensions and | |
825 ;;; whether the file is source or executable. If you compile foo.lisp | |
826 ;;; with compile-file, then the next load-file should use foo.bin for | |
827 ;;; the default, not foo.lisp. This is tricky to do right, particularly | |
828 ;;; because the extension for executable files varies so much (.o, .bin, | |
829 ;;; .lbin, .mo, .vo, .ao, ...). | |
830 | |
831 | |
832 ;;; COMINT-SOURCE-DEFAULT -- determines defaults for source-file processing | |
833 ;;; commands. | |
834 ;;; | |
835 ;;; COMINT-CHECK-SOURCE -- if FNAME is in a modified buffer, asks you if you | |
836 ;;; want to save the buffer before issuing any process requests to the command | |
837 ;;; interpreter. | |
838 ;;; | |
839 ;;; COMINT-GET-SOURCE -- used by the source-file processing commands to prompt | |
840 ;;; for the file to process. | |
841 | |
842 ;;; (COMINT-SOURCE-DEFAULT previous-dir/file source-modes) | |
843 ;;;============================================================================ | |
844 ;;; This function computes the defaults for the load-file and compile-file | |
584 | 845 ;;; commands for tea, soar, cmulisp, and cmuscheme modes. |
114 | 846 ;;; |
847 ;;; - PREVIOUS-DIR/FILE is a pair (directory . filename) from the last | |
848 ;;; source-file processing command. NIL if there hasn't been one yet. | |
849 ;;; - SOURCE-MODES is a list used to determine what buffers contain source | |
850 ;;; files: if the major mode of the buffer is in SOURCE-MODES, it's source. | |
851 ;;; Typically, (lisp-mode) or (scheme-mode). | |
852 ;;; | |
853 ;;; If the command is given while the cursor is inside a string, *and* | |
854 ;;; the string is an existing filename, *and* the filename is not a directory, | |
855 ;;; then the string is taken as default. This allows you to just position | |
856 ;;; your cursor over a string that's a filename and have it taken as default. | |
857 ;;; | |
858 ;;; If the command is given in a file buffer whose major mode is in | |
859 ;;; SOURCE-MODES, then the the filename is the default file, and the | |
860 ;;; file's directory is the default directory. | |
861 ;;; | |
862 ;;; If the buffer isn't a source file buffer (e.g., it's the process buffer), | |
863 ;;; then the default directory & file are what was used in the last source-file | |
864 ;;; processing command (i.e., PREVIOUS-DIR/FILE). If this is the first time | |
865 ;;; the command has been run (PREVIOUS-DIR/FILE is nil), the default directory | |
866 ;;; is the cwd, with no default file. (\"no default file\" = nil) | |
867 ;;; | |
868 ;;; SOURCE-REGEXP is typically going to be something like (tea-mode) | |
869 ;;; for T programs, (lisp-mode) for Lisp programs, (soar-mode lisp-mode) | |
870 ;;; for Soar programs, etc. | |
871 ;;; | |
872 ;;; The function returns a pair: (default-directory . default-file). | |
873 | |
874 (defun comint-source-default (previous-dir/file source-modes) | |
875 (cond ((and buffer-file-name (memq major-mode source-modes)) | |
876 (cons (file-name-directory buffer-file-name) | |
877 (file-name-nondirectory buffer-file-name))) | |
878 (previous-dir/file) | |
879 (t | |
880 (cons default-directory nil)))) | |
881 | |
584 | 882 |
114 | 883 ;;; (COMINT-CHECK-SOURCE fname) |
884 ;;;============================================================================ | |
584 | 885 ;;; Prior to loading or compiling (or otherwise processing) a file (in the CMU |
114 | 886 ;;; process-in-a-buffer modes), this function can be called on the filename. |
887 ;;; If the file is loaded into a buffer, and the buffer is modified, the user | |
888 ;;; is queried to see if he wants to save the buffer before proceeding with | |
889 ;;; the load or compile. | |
890 | |
891 (defun comint-check-source (fname) | |
892 (let ((buff (get-file-buffer fname))) | |
893 (if (and buff | |
894 (buffer-modified-p buff) | |
895 (y-or-n-p (format "Save buffer %s first? " | |
896 (buffer-name buff)))) | |
897 ;; save BUFF. | |
898 (let ((old-buffer (current-buffer))) | |
899 (set-buffer buff) | |
900 (save-buffer) | |
901 (set-buffer old-buffer))))) | |
902 | |
584 | 903 |
114 | 904 ;;; (COMINT-GET-SOURCE prompt prev-dir/file source-modes mustmatch-p) |
905 ;;;============================================================================ | |
906 ;;; COMINT-GET-SOURCE is used to prompt for filenames in command-interpreter | |
907 ;;; commands that process source files (like loading or compiling a file). | |
908 ;;; It prompts for the filename, provides a default, if there is one, | |
909 ;;; and returns the result filename. | |
910 ;;; | |
911 ;;; See COMINT-SOURCE-DEFAULT for more on determining defaults. | |
912 ;;; | |
913 ;;; PROMPT is the prompt string. PREV-DIR/FILE is the (directory . file) pair | |
914 ;;; from the last source processing command. SOURCE-MODES is a list of major | |
915 ;;; modes used to determine what file buffers contain source files. (These | |
916 ;;; two arguments are used for determining defaults). If MUSTMATCH-P is true, | |
917 ;;; then the filename reader will only accept a file that exists. | |
918 ;;; | |
919 ;;; A typical use: | |
920 ;;; (interactive (comint-get-source "Compile file: " prev-lisp-dir/file | |
921 ;;; '(lisp-mode) t)) | |
922 | |
923 ;;; This is pretty stupid about strings. It decides we're in a string | |
924 ;;; if there's a quote on both sides of point on the current line. | |
925 (defun comint-extract-string () | |
926 "Returns string around point that starts the current line or nil." | |
927 (save-excursion | |
928 (let* ((point (point)) | |
929 (bol (progn (beginning-of-line) (point))) | |
930 (eol (progn (end-of-line) (point))) | |
931 (start (progn (goto-char point) | |
932 (and (search-backward "\"" bol t) | |
933 (1+ (point))))) | |
934 (end (progn (goto-char point) | |
935 (and (search-forward "\"" eol t) | |
936 (1- (point)))))) | |
937 (and start end | |
938 (buffer-substring start end))))) | |
939 | |
940 (defun comint-get-source (prompt prev-dir/file source-modes mustmatch-p) | |
941 (let* ((def (comint-source-default prev-dir/file source-modes)) | |
942 (stringfile (comint-extract-string)) | |
943 (sfile-p (and stringfile | |
584 | 944 (condition-case () |
945 (file-exists-p stringfile) | |
946 (error nil)) | |
114 | 947 (not (file-directory-p stringfile)))) |
948 (defdir (if sfile-p (file-name-directory stringfile) | |
949 (car def))) | |
950 (deffile (if sfile-p (file-name-nondirectory stringfile) | |
951 (cdr def))) | |
952 (ans (read-file-name (if deffile (format "%s(default %s) " | |
953 prompt deffile) | |
954 prompt) | |
955 defdir | |
956 (concat defdir deffile) | |
957 mustmatch-p))) | |
958 (list (expand-file-name (substitute-in-file-name ans))))) | |
959 | |
584 | 960 ;;; I am somewhat divided on this string-default feature. It seems |
961 ;;; to violate the principle-of-least-astonishment, in that it makes | |
962 ;;; the default harder to predict, so you actually have to look and see | |
963 ;;; what the default really is before choosing it. This can trip you up. | |
964 ;;; On the other hand, it can be useful, I guess. I would appreciate feedback | |
965 ;;; on this. | |
966 ;;; -Olin | |
967 | |
114 | 968 |
969 ;;; Simple process query facility. | |
970 ;;; =========================================================================== | |
971 ;;; This function is for commands that want to send a query to the process | |
972 ;;; and show the response to the user. For example, a command to get the | |
973 ;;; arglist for a Common Lisp function might send a "(arglist 'foo)" query | |
974 ;;; to an inferior Common Lisp process. | |
975 ;;; | |
976 ;;; This simple facility just sends strings to the inferior process and pops | |
977 ;;; up a window for the process buffer so you can see what the process | |
978 ;;; responds with. We don't do anything fancy like try to intercept what the | |
979 ;;; process responds with and put it in a pop-up window or on the message | |
980 ;;; line. We just display the buffer. Low tech. Simple. Works good. | |
981 | |
982 ;;; Send to the inferior process PROC the string STR. Pop-up but do not select | |
983 ;;; a window for the inferior process so that its response can be seen. | |
984 (defun comint-proc-query (proc str) | |
985 (let* ((proc-buf (process-buffer proc)) | |
986 (proc-mark (process-mark proc))) | |
987 (display-buffer proc-buf) | |
988 (set-buffer proc-buf) ; but it's not the selected *window* | |
989 (let ((proc-win (get-buffer-window proc-buf)) | |
990 (proc-pt (marker-position proc-mark))) | |
991 (comint-send-string proc str) ; send the query | |
992 (accept-process-output proc) ; wait for some output | |
993 ;; Try to position the proc window so you can see the answer. | |
994 ;; This is bogus code. If you delete the (sit-for 0), it breaks. | |
995 ;; I don't know why. Wizards invited to improve it. | |
996 (if (not (pos-visible-in-window-p proc-pt proc-win)) | |
997 (let ((opoint (window-point proc-win))) | |
998 (set-window-point proc-win proc-mark) (sit-for 0) | |
999 (if (not (pos-visible-in-window-p opoint proc-win)) | |
1000 (push-mark opoint) | |
1001 (set-window-point proc-win opoint))))))) | |
1002 | |
1003 | |
1004 ;;; Filename completion in a buffer | |
1005 ;;; =========================================================================== | |
1006 ;;; Useful completion functions, courtesy of the Ergo group. | |
1007 | |
1008 ;;; Three commands: | |
1009 ;;; comint-dynamic-complete Complete filename at point. | |
1010 ;;; comint-dynamic-list-completions List completions in help buffer. | |
1011 ;;; comint-replace-by-expanded-filename Expand and complete filename at point; | |
1012 ;;; replace with expanded/completed name. | |
1013 | |
1014 ;;; These are not installed in the comint-mode keymap. But they are | |
584 | 1015 ;;; available for people who want them. Shell-mode installs them: |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
1016 ;;; (define-key cmushell-mode-map "\t" 'comint-dynamic-complete) |
584 | 1017 ;;; (define-key cmushell-mode-map "\M-?" 'comint-dynamic-list-completions))) |
1018 ;;; | |
1019 ;;; Commands like this are fine things to put in load hooks if you | |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
1020 ;;; want them present in specific modes. |
584 | 1021 |
114 | 1022 |
1023 (defun comint-match-partial-pathname () | |
584 | 1024 "Returns the filename at point or causes an error." |
1025 (save-excursion | |
1026 (if (re-search-backward "[^~/A-Za-z0-9---_.$#,=]" nil 'move) | |
1027 (forward-char 1)) | |
1028 ;; Anchor the search forwards. | |
1029 (if (not (looking-at "[~/A-Za-z0-9---_.$#,=]")) (error "")) | |
1030 (re-search-forward "[~/A-Za-z0-9---_.$#,=]+") | |
1031 (substitute-in-file-name | |
1032 (buffer-substring (match-beginning 0) (match-end 0))))) | |
1033 | |
114 | 1034 |
1035 (defun comint-replace-by-expanded-filename () | |
584 | 1036 "Replace the filename at point with an expanded, canonicalised, and |
1037 completed replacement. | |
114 | 1038 \"Expanded\" means environment variables (e.g., $HOME) and ~'s are |
1039 replaced with the corresponding directories. \"Canonicalised\" means .. | |
584 | 1040 and \. are removed, and the filename is made absolute instead of relative. |
1041 See functions expand-file-name and substitute-in-file-name. See also | |
114 | 1042 comint-dynamic-complete." |
1043 (interactive) | |
1044 (let* ((pathname (comint-match-partial-pathname)) | |
1045 (pathdir (file-name-directory pathname)) | |
1046 (pathnondir (file-name-nondirectory pathname)) | |
1047 (completion (file-name-completion pathnondir | |
1048 (or pathdir default-directory)))) | |
1049 (cond ((null completion) | |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
1050 (message "No completions of %s" pathname) |
584 | 1051 (ding)) |
114 | 1052 ((eql completion t) |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
1053 (message "Unique completion")) |
114 | 1054 (t ; this means a string was returned. |
1055 (delete-region (match-beginning 0) (match-end 0)) | |
1056 (insert (expand-file-name (concat pathdir completion))))))) | |
1057 | |
584 | 1058 |
114 | 1059 (defun comint-dynamic-complete () |
584 | 1060 "Dynamically complete the filename at point. |
114 | 1061 This function is similar to comint-replace-by-expanded-filename, except |
1062 that it won't change parts of the filename already entered in the buffer; | |
1063 it just adds completion characters to the end of the filename." | |
1064 (interactive) | |
1065 (let* ((pathname (comint-match-partial-pathname)) | |
1066 (pathdir (file-name-directory pathname)) | |
1067 (pathnondir (file-name-nondirectory pathname)) | |
584 | 1068 (completion (file-name-completion pathnondir |
114 | 1069 (or pathdir default-directory)))) |
1070 (cond ((null completion) | |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
1071 (message "No completions of %s" pathname) |
584 | 1072 (ding)) |
114 | 1073 ((eql completion t) |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
1074 (message "Unique completion")) |
114 | 1075 (t ; this means a string was returned. |
1076 (goto-char (match-end 0)) | |
1077 (insert (substring completion (length pathnondir))))))) | |
1078 | |
1079 (defun comint-dynamic-list-completions () | |
584 | 1080 "List in help buffer all possible completions of the filename at point." |
114 | 1081 (interactive) |
1082 (let* ((pathname (comint-match-partial-pathname)) | |
1083 (pathdir (file-name-directory pathname)) | |
1084 (pathnondir (file-name-nondirectory pathname)) | |
1085 (completions | |
1086 (file-name-all-completions pathnondir | |
1087 (or pathdir default-directory)))) | |
1088 (cond ((null completions) | |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
1089 (message "No completions of %s" pathname) |
584 | 1090 (ding)) |
114 | 1091 (t |
1092 (let ((conf (current-window-configuration))) | |
584 | 1093 (with-output-to-temp-buffer "*Help*" |
114 | 1094 (display-completion-list completions)) |
1095 (sit-for 0) | |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
870
diff
changeset
|
1096 (message "Hit space to flush") |
114 | 1097 (let ((ch (read-char))) |
1098 (if (= ch ?\ ) | |
1099 (set-window-configuration conf) | |
1100 (setq unread-command-char ch)))))))) | |
1101 | |
1102 ;;; Converting process modes to use comint mode | |
1103 ;;; =========================================================================== | |
768
4abf65b235d9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
705
diff
changeset
|
1104 ;;; The code in the Emacs 19 distribution has all been modified to use comint |
4abf65b235d9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
705
diff
changeset
|
1105 ;;; where needed. However, there are `third-party' packages out there that |
4abf65b235d9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
705
diff
changeset
|
1106 ;;; still use the old shell mode. Here's a guide to conversion. |
584 | 1107 ;;; |
114 | 1108 ;;; Renaming variables |
584 | 1109 ;;; Most of the work is renaming variables and functions. These are the common |
1110 ;;; ones: | |
1111 ;;; Local variables: | |
705 | 1112 ;;; last-input-start comint-last-input-start |
584 | 1113 ;;; last-input-end comint-last-input-end |
1114 ;;; shell-prompt-pattern comint-prompt-regexp | |
1115 ;;; shell-set-directory-error-hook <no equivalent> | |
1116 ;;; Miscellaneous: | |
114 | 1117 ;;; shell-set-directory <unnecessary> |
1118 ;;; shell-mode-map comint-mode-map | |
584 | 1119 ;;; Commands: |
114 | 1120 ;;; shell-send-input comint-send-input |
1121 ;;; shell-send-eof comint-delchar-or-maybe-eof | |
1122 ;;; kill-shell-input comint-kill-input | |
1123 ;;; interrupt-shell-subjob comint-interrupt-subjob | |
1124 ;;; stop-shell-subjob comint-stop-subjob | |
1125 ;;; quit-shell-subjob comint-quit-subjob | |
1126 ;;; kill-shell-subjob comint-kill-subjob | |
1127 ;;; kill-output-from-shell comint-kill-output | |
1128 ;;; show-output-from-shell comint-show-output | |
1129 ;;; copy-last-shell-input Use comint-previous-input/comint-next-input | |
1130 ;;; | |
705 | 1131 ;;; SHELL-SET-DIRECTORY is gone, its functionality taken over by |
1132 ;;; SHELL-DIRECTORY-TRACKER, the shell mode's comint-input-sentinel. | |
1133 ;;; Comint mode does not provide functionality equivalent to | |
114 | 1134 ;;; shell-set-directory-error-hook; it is gone. |
705 | 1135 ;;; |
1136 ;;; comint-last-input-start is provided for modes which want to munge | |
1137 ;;; the buffer after input is sent, perhaps because the inferior | |
1138 ;;; insists on echoing the input. The LAST-INPUT-START variable in | |
1139 ;;; the old shell package was used to implement a history mechanism, | |
1140 ;;; but you should think twice before using comint-last-input-start | |
1141 ;;; for this; the input history ring often does the job better. | |
114 | 1142 ;;; |
1143 ;;; If you are implementing some process-in-a-buffer mode, called foo-mode, do | |
1144 ;;; *not* create the comint-mode local variables in your foo-mode function. | |
1145 ;;; This is not modular. Instead, call comint-mode, and let *it* create the | |
1146 ;;; necessary comint-specific local variables. Then create the | |
1147 ;;; foo-mode-specific local variables in foo-mode. Set the buffer's keymap to | |
1148 ;;; be foo-mode-map, and its mode to be foo-mode. Set the comint-mode hooks | |
1149 ;;; (comint-prompt-regexp, comint-input-filter, comint-input-sentinel, | |
1150 ;;; comint-get-old-input) that need to be different from the defaults. Call | |
1151 ;;; foo-mode-hook, and you're done. Don't run the comint-mode hook yourself; | |
584 | 1152 ;;; comint-mode will take care of it. The following example, from cmushell.el, |
1153 ;;; is typical: | |
1154 ;;; | |
1155 ;;; (defun shell-mode () | |
1156 ;;; (interactive) | |
1157 ;;; (comint-mode) | |
1158 ;;; (setq comint-prompt-regexp shell-prompt-pattern) | |
1159 ;;; (setq major-mode 'shell-mode) | |
1160 ;;; (setq mode-name "Shell") | |
1161 ;;; (cond ((not shell-mode-map) | |
1162 ;;; (setq shell-mode-map (full-copy-sparse-keymap comint-mode-map)) | |
1163 ;;; (define-key shell-mode-map "\M-\t" 'comint-dynamic-complete) | |
1164 ;;; (define-key shell-mode-map "\M-?" | |
1165 ;;; 'comint-dynamic-list-completions))) | |
1166 ;;; (use-local-map shell-mode-map) | |
1167 ;;; (make-local-variable 'shell-directory-stack) | |
1168 ;;; (setq shell-directory-stack nil) | |
1169 ;;; (setq comint-input-sentinel 'shell-directory-tracker) | |
1170 ;;; (run-hooks 'shell-mode-hook)) | |
1171 ;;; | |
114 | 1172 ;;; |
1173 ;;; Note that make-comint is different from make-shell in that it | |
1174 ;;; doesn't have a default program argument. If you give make-shell | |
1175 ;;; a program name of NIL, it cleverly chooses one of explicit-shell-name, | |
1176 ;;; $ESHELL, $SHELL, or /bin/sh. If you give make-comint a program argument | |
1177 ;;; of NIL, it barfs. Adjust your code accordingly... | |
584 | 1178 ;;; |
1179 | |
1180 ;;; Do the user's customisation... | |
1181 | |
1182 (defvar comint-load-hook nil | |
1183 "This hook is run when comint is loaded in. | |
1184 This is a good place to put keybindings.") | |
1185 | |
1186 (run-hooks 'comint-load-hook) | |
1187 | |
1188 ;;; Change log: | |
1189 ;;; 9/12/89 | |
1190 ;;; - Souped up the filename expansion procedures. | |
1191 ;;; Doc strings are much clearer and more detailed. | |
1192 ;;; Fixed a bug where doing a filename completion when the point | |
1193 ;;; was in the middle of the filename instead of at the end would lose. | |
1194 ;;; | |
1195 ;;; 2/17/90 | |
1196 ;;; - Souped up the command history stuff so that text inserted | |
1197 ;;; by comint-previous-input-matching is removed by following | |
1198 ;;; command history recalls. comint-next/previous-input-matching | |
1199 ;;; is now much more smoothly integrated w/the command history stuff. | |
1200 ;;; - Added comint-eol-on-send flag and comint-input-sender hook. | |
1201 ;;; Comint-input-sender based on code contributed by Jeff Peck | |
1202 ;;; (peck@sun.com). | |
1203 ;;; | |
1204 ;;; 3/13/90 ccm@cmu.cs.edu | |
1205 ;;; - Added comint-previous-similar-input for looking up similar inputs. | |
1206 ;;; - Added comint-send-and-get-output to allow snarfing input from | |
1207 ;;; buffer. | |
1208 ;;; - Added the ability to pick up a source file by positioning over | |
1209 ;;; a string in comint-get-source. | |
1210 ;;; - Added add-hook to make it a little easier for the user to use | |
1211 ;;; multiple hooks. | |
1212 ;;; | |
1213 ;;; 5/22/90 shivers | |
1214 ;;; - Moved Chris' multiplexed ipc stuff to comint-ipc.el. | |
1215 ;;; - Altered Chris' comint-get-source string feature. The string | |
1216 ;;; is only offered as a default if it names an existing file. | |
1217 ;;; - Changed comint-exec to directly crank up the process, instead | |
1218 ;;; of calling the env program. This made background.el happy. | |
1219 ;;; - Added new buffer-local var comint-ptyp. The problem is that | |
1220 ;;; the signalling functions don't work as advertised. If you are | |
1221 ;;; communicating via pipes, the CURRENT-GROUP arg is supposed to | |
1222 ;;; be ignored, but, unfortunately it seems to be the case that you | |
1223 ;;; must pass a NIL for this arg in the pipe case. COMINT-PTYP | |
1224 ;;; is a flag that tells whether the process is communicating | |
1225 ;;; via pipes or a pty. The comint signalling functions use it | |
1226 ;;; to determine the necessary CURRENT-GROUP arg value. The bug | |
1227 ;;; has been reported to the Gnu folks. | |
1228 ;;; - comint-dynamic-complete flushes the help window if you hit space | |
1229 ;;; after you execute it. | |
1230 ;;; - Added functions comint-send-string, comint-send-region and var | |
1231 ;;; comint-input-chunk-size. comint-send-string tries to prevent processes | |
1232 ;;; from hanging when you send them long strings by breaking them into | |
1233 ;;; chunks and allowing process output between chunks. I got the idea from | |
1234 ;;; Eero Simoncelli's Common Lisp package. Note that using | |
1235 ;;; comint-send-string means that the process buffer's contents can change | |
1236 ;;; during a call! If you depend on process output only happening between | |
1237 ;;; toplevel commands, this could be a problem. In such a case, use | |
1238 ;;; process-send-string instead. If this is a problem for people, I'd like | |
1239 ;;; to hear about it. | |
1240 ;;; - Added comint-proc-query as a simple mechanism for commands that | |
1241 ;;; want to query an inferior process and display its response. For a | |
1242 ;;; typical use, see lisp-show-arglist in cmulisp.el. | |
1243 ;;; - Added constant comint-version, which is now "2.01". | |
1244 ;;; | |
1245 ;;; 6/14/90 shivers | |
1246 ;;; - Had comint-update-env defined twice. Removed extra copy. Also | |
1247 ;;; renamed mem to be comint-mem, for modularity. The duplication | |
1248 ;;; was reported by Michael Meissner. | |
1249 ;;; 6/16/90 shivers | |
1250 ;;; - Emacs has two different mechanisms for maintaining the process | |
1251 ;;; environment, determined at compile time by the MAINTAIN-ENVIRONMENT | |
1252 ;;; #define. One uses the process-environment global variable, and | |
1253 ;;; one uses a getenv/setenv interface. comint-exec assumed the | |
1254 ;;; process-environment interface; it has been generalised (with | |
1255 ;;; comint-exec-1) to handle both cases. Pretty bogus. We could, | |
1256 ;;; of course, skip all this and just use the etc/env program to | |
1257 ;;; handle the environment tweaking, but that obscures process | |
1258 ;;; queries that other modules (like background.el) depend on. etc/env | |
1259 ;;; is also fairly bogus. This bug, and some of the fix code was | |
1260 ;;; reported by Dan Pierson. | |
1261 ;;; | |
1262 ;;; 9/5/90 shivers | |
1263 ;;; - Changed make-variable-buffer-local's to make-local-variable's. | |
1264 ;;; This leaves non-comint-mode buffers alone. Stephane Payrard | |
1265 ;;; reported the sloppy useage. | |
1266 ;;; - You can now go from comint-previous-similar-input to | |
1267 ;;; comint-previous-input with no problem. | |
1268 ;;; | |
1269 ;;; 12/21/90 shivers | |
1270 ;;; - Added a condition-case to comint-get-source. Bogus strings | |
1271 ;;; beginning with ~ were making the file-exists-p barf. | |
1272 ;;; - Added "=" to the set of chars recognised by file completion | |
1273 ;;; as constituting a filename. | |
1274 ;;; | |
1275 ;;; 1/90 shivers | |
1276 ;;; These changes comprise release 2.02: | |
1277 ;;; - Removed the kill-all-local-variables in comint-mode. This | |
1278 ;;; made it impossible for client modes to set things before calling | |
1279 ;;; comint-mode. (In particular, it messed up ilisp.el) In general, | |
1280 ;;; the client mode should be responsible for a k-a-l-v's. | |
1281 ;;; - Fixed comint-match-partial-pathname so that it works in | |
1282 ;;; more cases: if the filename begins at the start-of-buffer; | |
1283 ;;; if point is on the first char of the filename. Just a question | |
1284 ;;; of getting the tricky bits right. | |
1285 ;;; - Added a hook, comint-exec-hook that is run each time a process | |
1286 ;;; is cranked up. Useful for things like process-kill-without-query. | |
1287 ;;; | |
705 | 1288 ;;; These two were pointed out by tale: |
584 | 1289 ;;; - Improved the doc string in comint-send-input a little bit. |
1290 ;;; - Tweaked make-comint to check process status with comint-check-proc | |
1291 ;;; instead of equivalent inline code. | |
705 | 1292 ;;; |
584 | 1293 ;;; - Prompt-search history commands have been commented out. I never |
1294 ;;; liked them; I don't think anyone used them. | |
705 | 1295 ;;; - Made comint-exec-hook a local var, as it should have been. |
1296 ;;; (This way, for instance, you can have cmushell procs kill-w/o-query, | |
1297 ;;; but let Scheme procs be default.) | |
1298 ;;; | |
1299 ;;; 7/91 Shivers | |
1300 ;;; - Souped up comint-read-noecho with an optional argument, STARS. | |
1301 ;;; Suggested by mjlx@EAGLE.CNSF.CORNELL.EDU. | |
1302 ;;; - Moved comint-previous-input-matching from C-c r to C-M-r. | |
1303 ;;; C-c <letter> bindings are reserved for the user. | |
1304 ;;; These bindings were done by Jim Blandy. | |
1305 ;;; These changes comprise version 2.03. | |
584 | 1306 |
1307 (provide 'comint) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
1308 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
1309 ;;; comint.el ends here |