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