Mercurial > emacs
annotate lisp/term.el @ 13316:373701da47e5
Don't load c-mode.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 28 Oct 1995 16:20:36 +0000 |
parents | 697c01e75adc |
children | 84acc3adcd63 |
rev | line source |
---|---|
9509 | 1 ;; term.el --- general command interpreter in a window stuff |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2 ;; Copyright (C) 1988, 1990, 1992, 1994, 1995 Free Software Foundation, Inc. |
9509 | 3 |
4 ;; Author: Per Bothner <bothner@cygnus.com> | |
5 ;; Based on comint mode written by: Olin Shivers <shivers@cs.cmu.edu> | |
6 ;; Keyword: processes | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
24 ;;; Commentary: | |
25 | |
26 ;;; The changelog is at the end of this file. | |
27 | |
28 ;;; Please send me bug reports, bug fixes, and extensions, so that I can | |
29 ;;; merge them into the master source. | |
30 ;;; - Per Bothner (bothner@cygnus.com) | |
31 | |
32 ;;; This file defines a general command-interpreter-in-a-buffer package | |
33 ;;; (term mode). The idea is that you can build specific process-in-a-buffer | |
34 ;;; modes on top of term mode -- e.g., lisp, shell, scheme, T, soar, .... | |
35 ;;; This way, all these specific packages share a common base functionality, | |
36 ;;; and a common set of bindings, which makes them easier to use (and | |
37 ;;; saves code, implementation time, etc., etc.). | |
38 | |
39 ;;; For hints on converting existing process modes (e.g., tex-mode, | |
40 ;;; background, dbx, gdb, kermit, prolog, telnet) to use term-mode | |
41 ;;; instead of shell-mode, see the notes at the end of this file. | |
42 | |
43 | |
44 ;;; Brief Command Documentation: | |
45 ;;;============================================================================ | |
46 ;;; Term Mode Commands: (common to all derived modes, like cmushell & cmulisp | |
47 ;;; mode) | |
48 ;;; | |
49 ;;; m-p term-previous-input Cycle backwards in input history | |
50 ;;; m-n term-next-input Cycle forwards | |
51 ;;; m-r term-previous-matching-input Previous input matching a regexp | |
52 ;;; m-s comint-next-matching-input Next input that matches | |
53 ;;; return term-send-input | |
54 ;;; c-c c-a term-bol Beginning of line; skip prompt. | |
55 ;;; c-d term-delchar-or-maybe-eof Delete char unless at end of buff. | |
56 ;;; c-c c-u term-kill-input ^u | |
57 ;;; c-c c-w backward-kill-word ^w | |
58 ;;; c-c c-c term-interrupt-subjob ^c | |
59 ;;; c-c c-z term-stop-subjob ^z | |
60 ;;; c-c c-\ term-quit-subjob ^\ | |
61 ;;; c-c c-o term-kill-output Delete last batch of process output | |
62 ;;; c-c c-r term-show-output Show last batch of process output | |
63 ;;; c-c c-h term-dynamic-list-input-ring List input history | |
64 ;;; | |
65 ;;; Not bound by default in term-mode | |
66 ;;; term-send-invisible Read a line w/o echo, and send to proc | |
67 ;;; (These are bound in shell-mode) | |
68 ;;; term-dynamic-complete Complete filename at point. | |
69 ;;; term-dynamic-list-completions List completions in help buffer. | |
70 ;;; term-replace-by-expanded-filename Expand and complete filename at point; | |
71 ;;; replace with expanded/completed name. | |
72 ;;; term-kill-subjob No mercy. | |
73 ;;; term-show-maximum-output Show as much output as possible. | |
74 ;;; term-continue-subjob Send CONT signal to buffer's process | |
75 ;;; group. Useful if you accidentally | |
76 ;;; suspend your process (with C-c C-z). | |
77 | |
78 ;;; term-mode-hook is the term mode hook. Basically for your keybindings. | |
79 ;;; term-load-hook is run after loading in this package. | |
80 | |
81 ;;; Code: | |
82 | |
10044 | 83 ;;; This is passed to the inferior in the EMACS environment variable, |
84 ;;; so it is important to increase it if there are protocol-relevant changes. | |
10679
aec6cbccf909
(term-protocol-version): Renamed from term-version.
Richard M. Stallman <rms@gnu.org>
parents:
10671
diff
changeset
|
85 (defconst term-protocol-version "0.95") |
9509 | 86 |
87 (require 'ring) | |
88 (require 'ehelp) | |
89 | |
90 ;;; Buffer Local Variables: | |
91 ;;;============================================================================ | |
92 ;;; Term mode buffer local variables: | |
93 ;;; term-prompt-regexp - string term-bol uses to match prompt. | |
94 ;;; term-delimiter-argument-list - list For delimiters and arguments | |
95 ;;; term-last-input-start - marker Handy if inferior always echoes | |
96 ;;; term-last-input-end - marker For term-kill-output command | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
97 ;; For the input history mechanism: |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
98 (defvar term-input-ring-size 32 "Size of input history ring.") |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
99 ;;; term-input-ring-size - integer |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
100 ;;; term-input-ring - ring |
9509 | 101 ;;; term-input-ring-index - number ... |
102 ;;; term-input-autoexpand - symbol ... | |
103 ;;; term-input-ignoredups - boolean ... | |
104 ;;; term-last-input-match - string ... | |
105 ;;; term-dynamic-complete-functions - hook For the completion mechanism | |
106 ;;; term-completion-fignore - list ... | |
107 ;;; term-get-old-input - function Hooks for specific | |
108 ;;; term-input-filter-functions - hook process-in-a-buffer | |
109 ;;; term-input-filter - function modes. | |
110 ;;; term-input-send - function | |
111 ;;; term-scroll-to-bottom-on-output - symbol ... | |
112 ;;; term-scroll-show-maximum-output - boolean... | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
113 (defvar term-height) ;; Number of lines in window. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
114 (defvar term-width) ;; Number of columns in window. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
115 (defvar term-home-marker) ;; Marks the "home" position for cursor addressing. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
116 (defvar term-saved-home-marker nil) ;; When using alternate sub-buffer, |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
117 ;; contains saved term-home-marker from original sub-buffer . |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
118 (defvar term-start-line-column 0) ;; (current-column) at start of screen line, |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
119 ;; or nil if unknown. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
120 (defvar term-current-column 0) ;; If non-nil, is cache for (current-column). |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
121 (defvar term-current-row 0) ;; Current vertical row (relative to home-marker) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
122 ;; or nil if unknown. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
123 (defvar term-insert-mode nil) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
124 (defvar term-vertical-motion) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
125 (defvar term-terminal-state 0) ;; State of the terminal emulator: |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
126 ;; state 0: Normal state |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
127 ;; state 1: Last character was a graphic in the last column. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
128 ;; If next char is graphic, first move one column right |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
129 ;; (and line warp) before displaying it. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
130 ;; This emulates (more or less) the behavior of xterm. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
131 ;; state 2: seen ESC |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
132 ;; state 3: seen ESC [ (or ESC [ ?) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
133 ;; state 4: term-terminal-parameter contains pending output. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
134 (defvar term-kill-echo-list nil) ;; A queue of strings whose echo |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
135 ;; we want suppressed. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
136 (defvar term-terminal-parameter) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
137 (defvar term-terminal-previous-parameter) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
138 (defvar term-current-face 'default) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
139 (defvar term-scroll-start 0) ;; Top-most line (inclusive) of scrolling region. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
140 (defvar term-scroll-end) ;; Number of line (zero-based) after scrolling region. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
141 (defvar term-pager-count nil) ;; If nil, paging is disabled. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
142 ;; Otherwise, number of lines before we need to page. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
143 (defvar term-saved-cursor nil) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
144 (defvar term-command-hook) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
145 (defvar term-log-buffer nil) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
146 (defvar term-scroll-with-delete nil) ;; term-scroll-with-delete is t if |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
147 ;; forward scrolling should be implemented by delete to |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
148 ;; top-most line(s); and nil if scrolling should be implemented |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
149 ;; by moving term-home-marker. It is set to t iff there is a |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
150 ;; (non-default) scroll-region OR the alternate buffer is used. |
10933
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
151 (defvar term-pending-delete-marker) ;; New user input in line mode needs to |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
152 ;; be deleted, because it gets echoed by the inferior. |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
153 ;; To reduce flicker, we defer the delete until the next output. |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
154 (defvar term-old-mode-map nil) ;; Saves the old keymap when in char mode. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
155 (defvar term-old-mode-line-format) ;; Saves old mode-line-format while paging. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
156 (defvar term-pager-old-local-map nil) ;; Saves old keymap while paging. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
157 (defvar term-pager-old-filter) ;; Saved process-filter while paging. |
9509 | 158 |
159 (defvar explicit-shell-file-name nil | |
160 "*If non-nil, is file name to use for explicitly requested inferior shell.") | |
161 | |
162 (defvar term-prompt-regexp "^" | |
163 "Regexp to recognise prompts in the inferior process. | |
164 Defaults to \"^\", the null string at BOL. | |
165 | |
166 Good choices: | |
167 Canonical Lisp: \"^[^> \\n]*>+:? *\" (Lucid, franz, kcl, T, cscheme, oaklisp) | |
168 Lucid Common Lisp: \"^\\\\(>\\\\|\\\\(->\\\\)+\\\\) *\" | |
169 franz: \"^\\\\(->\\\\|<[0-9]*>:\\\\) *\" | |
170 kcl: \"^>+ *\" | |
171 shell: \"^[^#$%>\\n]*[#$%>] *\" | |
172 T: \"^>+ *\" | |
173 | |
174 This is a good thing to set in mode hooks.") | |
175 | |
176 (defvar term-delimiter-argument-list () | |
177 "List of characters to recognise as separate arguments in input. | |
178 Strings comprising a character in this list will separate the arguments | |
179 surrounding them, and also be regarded as arguments in their own right (unlike | |
180 whitespace). See `term-arguments'. | |
181 Defaults to the empty list. | |
182 | |
183 For shells, a good value is (?\\| ?& ?< ?> ?\\( ?\\) ?;). | |
184 | |
185 This is a good thing to set in mode hooks.") | |
186 | |
187 (defvar term-input-autoexpand nil | |
188 "*If non-nil, expand input command history references on completion. | |
189 This mirrors the optional behavior of tcsh (its autoexpand and histlit). | |
190 | |
191 If the value is `input', then the expansion is seen on input. | |
192 If the value is `history', then the expansion is only when inserting | |
193 into the buffer's input ring. See also `term-magic-space' and | |
194 `term-dynamic-complete'. | |
195 | |
196 This variable is buffer-local.") | |
197 | |
198 (defvar term-input-ignoredups nil | |
199 "*If non-nil, don't add input matching the last on the input ring. | |
200 This mirrors the optional behavior of bash. | |
201 | |
202 This variable is buffer-local.") | |
203 | |
204 (defvar term-input-ring-file-name nil | |
205 "*If non-nil, name of the file to read/write input history. | |
206 See also `term-read-input-ring' and `term-write-input-ring'. | |
207 | |
208 This variable is buffer-local, and is a good thing to set in mode hooks.") | |
209 | |
210 (defvar term-scroll-to-bottom-on-output nil | |
211 "*Controls whether interpreter output causes window to scroll. | |
212 If nil, then do not scroll. If t or `all', scroll all windows showing buffer. | |
213 If `this', scroll only the selected window. | |
214 If `others', scroll only those that are not the selected window. | |
215 | |
216 The default is nil. | |
217 | |
218 See variable `term-scroll-show-maximum-output'. | |
219 This variable is buffer-local.") | |
220 | |
221 (defvar term-scroll-show-maximum-output nil | |
222 "*Controls how interpreter output causes window to scroll. | |
223 If non-nil, then show the maximum output when the window is scrolled. | |
224 | |
225 See variable `term-scroll-to-bottom-on-output'. | |
226 This variable is buffer-local.") | |
227 | |
228 ;; Where gud-display-frame should put the debugging arrow. This is | |
229 ;; set by the marker-filter, which scans the debugger's output for | |
230 ;; indications of the current pc. | |
231 (defvar term-pending-frame nil) | |
232 | |
233 ;;; Here are the per-interpreter hooks. | |
234 (defvar term-get-old-input (function term-get-old-input-default) | |
235 "Function that submits old text in term mode. | |
236 This function is called when return is typed while the point is in old text. | |
237 It returns the text to be submitted as process input. The default is | |
238 term-get-old-input-default, which grabs the current line, and strips off | |
239 leading text matching term-prompt-regexp") | |
240 | |
241 (defvar term-dynamic-complete-functions | |
242 '(term-replace-by-expanded-history term-dynamic-complete-filename) | |
243 "List of functions called to perform completion. | |
244 Functions should return non-nil if completion was performed. | |
245 See also `term-dynamic-complete'. | |
246 | |
247 This is a good thing to set in mode hooks.") | |
248 | |
249 (defvar term-input-filter | |
250 (function (lambda (str) (not (string-match "\\`\\s *\\'" str)))) | |
251 "Predicate for filtering additions to input history. | |
252 Only inputs answering true to this function are saved on the input | |
253 history list. Default is to save anything that isn't all whitespace") | |
254 | |
255 (defvar term-input-filter-functions '() | |
256 "Functions to call before input is sent to the process. | |
257 These functions get one argument, a string containing the text to send. | |
258 | |
259 This variable is buffer-local.") | |
260 | |
261 (defvar term-input-sender (function term-simple-send) | |
262 "Function to actually send to PROCESS the STRING submitted by user. | |
263 Usually this is just 'term-simple-send, but if your mode needs to | |
264 massage the input string, this is your hook. This is called from | |
265 the user command term-send-input. term-simple-send just sends | |
266 the string plus a newline.") | |
267 | |
10933
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
268 (defvar term-eol-on-send t |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
269 "*Non-nil means go to the end of the line before sending input. |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
270 See `term-send-input'.") |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
271 |
9509 | 272 (defvar term-mode-hook '() |
273 "Called upon entry into term-mode | |
274 This is run before the process is cranked up.") | |
275 | |
276 (defvar term-exec-hook '() | |
277 "Called each time a process is exec'd by term-exec. | |
278 This is called after the process is cranked up. It is useful for things that | |
279 must be done each time a process is executed in a term-mode buffer (e.g., | |
280 (process-kill-without-query)). In contrast, the term-mode-hook is only | |
281 executed once when the buffer is created.") | |
282 | |
283 (defvar term-mode-map nil) | |
284 (defvar term-raw-map nil | |
285 "Keyboard map for sending characters directly to the inferior process.") | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
286 (defvar term-escape-char nil |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
287 "Escape character for char-sub-mode of term mode. |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
288 Do not change it directly; use term-set-escape-char instead.") |
9509 | 289 (defvar term-raw-escape-map nil) |
290 | |
291 (defvar term-pager-break-map nil) | |
292 | |
293 (defvar term-ptyp t | |
294 "True if communications via pty; false if by pipe. Buffer local. | |
295 This is to work around a bug in emacs process signalling.") | |
296 | |
297 (defvar term-last-input-match "" | |
298 "Last string searched for by term input history search, for defaulting. | |
299 Buffer local variable.") | |
300 | |
301 (defvar term-input-ring nil) | |
302 (defvar term-last-input-start) | |
303 (defvar term-last-input-end) | |
304 (defvar term-input-ring-index nil | |
305 "Index of last matched history element.") | |
306 (defvar term-matching-input-from-input-string "" | |
307 "Input previously used to match input history.") | |
308 ; This argument to set-process-filter disables reading from the process, | |
309 ; assuming this is emacs-19.20 or newer. | |
310 (defvar term-pager-filter t) | |
311 | |
312 (put 'term-replace-by-expanded-history 'menu-enable 'term-input-autoexpand) | |
313 (put 'term-input-ring 'permanent-local t) | |
314 (put 'term-input-ring-index 'permanent-local t) | |
315 (put 'term-input-autoexpand 'permanent-local t) | |
316 (put 'term-input-filter-functions 'permanent-local t) | |
317 (put 'term-scroll-to-bottom-on-output 'permanent-local t) | |
318 (put 'term-scroll-show-maximum-output 'permanent-local t) | |
319 (put 'term-ptyp 'permanent-local t) | |
320 | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
321 ;; Do FORMS if running under Emacs-19. |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
322 (defmacro term-if-emacs19 (&rest forms) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
323 (if (string-match "^19" emacs-version) (cons 'progn forms))) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
324 ;; True if running under XEmacs (previously Lucid emacs). |
9509 | 325 (defmacro term-is-xemacs () '(string-match "Lucid" emacs-version)) |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
326 ;; Do FORM if running under XEmacs (previously Lucid emacs). |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
327 (defmacro term-if-xemacs (&rest forms) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
328 (if (term-is-xemacs) (cons 'progn forms))) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
329 ;; Do FORM if NOT running under XEmacs (previously Lucid emacs). |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
330 (defmacro term-ifnot-xemacs (&rest forms) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
331 (if (not (term-is-xemacs)) (cons 'progn forms))) |
9509 | 332 |
333 (defmacro term-in-char-mode () '(eq (current-local-map) term-raw-map)) | |
334 (defmacro term-in-line-mode () '(not (term-in-char-mode))) | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
335 ;; True if currently doing PAGER handling. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
336 (defmacro term-pager-enabled () 'term-pager-count) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
337 (defmacro term-handling-pager () 'term-pager-old-local-map) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
338 (defmacro term-using-alternate-sub-buffer () 'term-saved-home-marker) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
339 |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
340 (defvar term-signals-menu) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
341 (defvar term-terminal-menu) |
9509 | 342 |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
343 (term-if-xemacs |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
344 (defvar term-terminal-menu |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
345 '("Terminal" |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
346 [ "Character mode" term-char-mode (term-in-line-mode)] |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
347 [ "Line mode" term-line-mode (term-in-char-mode)] |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
348 [ "Enable paging" term-pager-toggle (not term-pager-count)] |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
349 [ "Disable paging" term-pager-toggle term-pager-count]))) |
9509 | 350 |
351 (defun term-mode () | |
352 "Major mode for interacting with an inferior interpreter. | |
353 Interpreter name is same as buffer name, sans the asterisks. | |
354 In line sub-mode, return at end of buffer sends line as input, | |
355 while return not at end copies rest of line to end and sends it. | |
356 In char sub-mode, each character (except `term-escape-char`) is | |
357 set immediately. | |
358 | |
359 This mode is typically customised to create inferior-lisp-mode, | |
360 shell-mode, etc.. This can be done by setting the hooks | |
361 term-input-filter-functions, term-input-filter, term-input-sender and | |
362 term-get-old-input to appropriate functions, and the variable | |
363 term-prompt-regexp to the appropriate regular expression. | |
364 | |
365 An input history is maintained of size `term-input-ring-size', and | |
366 can be accessed with the commands \\[term-next-input], \\[term-previous-input], and \\[term-dynamic-list-input-ring]. | |
367 Input ring history expansion can be achieved with the commands | |
368 \\[term-replace-by-expanded-history] or \\[term-magic-space]. | |
369 Input ring expansion is controlled by the variable `term-input-autoexpand', | |
370 and addition is controlled by the variable `term-input-ignoredups'. | |
371 | |
372 Input to, and output from, the subprocess can cause the window to scroll to | |
373 the end of the buffer. See variables `term-scroll-to-bottom-on-input', | |
374 and `term-scroll-to-bottom-on-output'. | |
375 | |
376 If you accidentally suspend your process, use \\[term-continue-subjob] | |
377 to continue it. | |
378 | |
379 \\{term-mode-map} | |
380 | |
381 Entry to this mode runs the hooks on term-mode-hook" | |
382 (interactive) | |
383 ;; Do not remove this. All major modes must do this. | |
384 (kill-all-local-variables) | |
385 (setq major-mode 'term-mode) | |
386 (setq mode-name "Term") | |
387 (use-local-map term-mode-map) | |
388 (make-local-variable 'term-home-marker) | |
389 (setq term-home-marker (copy-marker 0)) | |
390 (make-local-variable 'term-saved-home-marker) | |
391 (make-local-variable 'term-height) | |
392 (make-local-variable 'term-width) | |
393 (setq term-width (1- (window-width))) | |
394 (setq term-height (1- (window-height))) | |
395 (make-local-variable 'term-terminal-parameter) | |
396 (make-local-variable 'term-saved-cursor) | |
397 (make-local-variable 'term-last-input-start) | |
398 (setq term-last-input-start (make-marker)) | |
399 (make-local-variable 'term-last-input-end) | |
400 (setq term-last-input-end (make-marker)) | |
401 (make-local-variable 'term-last-input-match) | |
402 (setq term-last-input-match "") | |
403 (make-local-variable 'term-prompt-regexp) ; Don't set; default | |
404 (make-local-variable 'term-input-ring-size) ; ...to global val. | |
405 (make-local-variable 'term-input-ring) | |
406 (make-local-variable 'term-input-ring-file-name) | |
407 (or (and (boundp 'term-input-ring) term-input-ring) | |
408 (setq term-input-ring (make-ring term-input-ring-size))) | |
409 (make-local-variable 'term-input-ring-index) | |
410 (or (and (boundp 'term-input-ring-index) term-input-ring-index) | |
411 (setq term-input-ring-index nil)) | |
412 | |
413 (make-local-variable 'term-command-hook) | |
414 (setq term-command-hook (symbol-function 'term-command-hook)) | |
415 | |
416 (make-local-variable 'term-terminal-state) | |
417 (make-local-variable 'term-kill-echo-list) | |
418 (make-local-variable 'term-start-line-column) | |
419 (make-local-variable 'term-current-column) | |
420 (make-local-variable 'term-current-row) | |
421 (make-local-variable 'term-log-buffer) | |
422 (make-local-variable 'term-scroll-start) | |
423 (make-local-variable 'term-scroll-end) | |
424 (setq term-scroll-end term-height) | |
425 (make-local-variable 'term-scroll-with-delete) | |
426 (make-local-variable 'term-pager-count) | |
427 (make-local-variable 'term-pager-old-local-map) | |
428 (make-local-variable 'term-old-mode-map) | |
429 (make-local-variable 'term-insert-mode) | |
430 (make-local-variable 'term-dynamic-complete-functions) | |
431 (make-local-variable 'term-completion-fignore) | |
432 (make-local-variable 'term-get-old-input) | |
433 (make-local-variable 'term-matching-input-from-input-string) | |
434 (make-local-variable 'term-input-autoexpand) | |
435 (make-local-variable 'term-input-ignoredups) | |
436 (make-local-variable 'term-delimiter-argument-list) | |
437 (make-local-variable 'term-input-filter-functions) | |
438 (make-local-variable 'term-input-filter) | |
439 (make-local-variable 'term-input-sender) | |
10933
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
440 (make-local-variable 'term-eol-on-send) |
9509 | 441 (make-local-variable 'term-scroll-to-bottom-on-output) |
442 (make-local-variable 'term-scroll-show-maximum-output) | |
443 (make-local-variable 'term-ptyp) | |
444 (make-local-variable 'term-exec-hook) | |
445 (make-local-variable 'term-vertical-motion) | |
446 (make-local-variable 'term-pending-delete-marker) | |
447 (setq term-pending-delete-marker (make-marker)) | |
448 (make-local-variable 'term-current-face) | |
449 (make-local-variable 'term-pending-frame) | |
450 (setq term-pending-frame nil) | |
451 (run-hooks 'term-mode-hook) | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
452 (term-if-xemacs |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
453 (set-buffer-menubar |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
454 (append current-menubar (list term-terminal-menu)))) |
9509 | 455 (or term-input-ring |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
456 (setq term-input-ring (make-ring term-input-ring-size))) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
457 (term-update-mode-line)) |
9509 | 458 |
459 (if term-mode-map | |
460 nil | |
461 (setq term-mode-map (make-sparse-keymap)) | |
462 (define-key term-mode-map "\ep" 'term-previous-input) | |
463 (define-key term-mode-map "\en" 'term-next-input) | |
464 (define-key term-mode-map "\er" 'term-previous-matching-input) | |
465 (define-key term-mode-map "\es" 'term-next-matching-input) | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
466 (term-ifnot-xemacs |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
467 (define-key term-mode-map [?\A-\M-r] 'term-previous-matching-input-from-input) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
468 (define-key term-mode-map [?\A-\M-s] 'term-next-matching-input-from-input)) |
9509 | 469 (define-key term-mode-map "\e\C-l" 'term-show-output) |
470 (define-key term-mode-map "\C-m" 'term-send-input) | |
471 (define-key term-mode-map "\C-d" 'term-delchar-or-maybe-eof) | |
472 (define-key term-mode-map "\C-c\C-a" 'term-bol) | |
473 (define-key term-mode-map "\C-c\C-u" 'term-kill-input) | |
474 (define-key term-mode-map "\C-c\C-w" 'backward-kill-word) | |
475 (define-key term-mode-map "\C-c\C-c" 'term-interrupt-subjob) | |
476 (define-key term-mode-map "\C-c\C-z" 'term-stop-subjob) | |
477 (define-key term-mode-map "\C-c\C-\\" 'term-quit-subjob) | |
478 (define-key term-mode-map "\C-c\C-m" 'term-copy-old-input) | |
479 (define-key term-mode-map "\C-c\C-o" 'term-kill-output) | |
480 (define-key term-mode-map "\C-c\C-r" 'term-show-output) | |
481 (define-key term-mode-map "\C-c\C-e" 'term-show-maximum-output) | |
482 (define-key term-mode-map "\C-c\C-l" 'term-dynamic-list-input-ring) | |
483 (define-key term-mode-map "\C-c\C-n" 'term-next-prompt) | |
484 (define-key term-mode-map "\C-c\C-p" 'term-previous-prompt) | |
485 (define-key term-mode-map "\C-c\C-d" 'term-send-eof) | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
486 (define-key term-mode-map "\C-c\C-k" 'term-char-mode) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
487 (define-key term-mode-map "\C-c\C-j" 'term-line-mode) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
488 (define-key term-mode-map "\C-c\C-q" 'term-pager-toggle) |
9509 | 489 |
490 (copy-face 'default 'term-underline-face) | |
491 (set-face-underline-p 'term-underline-face t) | |
492 | |
493 ; ;; completion: | |
494 ; (define-key term-mode-map [menu-bar completion] | |
495 ; (cons "Complete" (make-sparse-keymap "Complete"))) | |
496 ; (define-key term-mode-map [menu-bar completion complete-expand] | |
497 ; '("Expand File Name" . term-replace-by-expanded-filename)) | |
498 ; (define-key term-mode-map [menu-bar completion complete-listing] | |
499 ; '("File Completion Listing" . term-dynamic-list-filename-completions)) | |
500 ; (define-key term-mode-map [menu-bar completion complete-file] | |
501 ; '("Complete File Name" . term-dynamic-complete-filename)) | |
502 ; (define-key term-mode-map [menu-bar completion complete] | |
503 ; '("Complete Before Point" . term-dynamic-complete)) | |
504 ; ;; Put them in the menu bar: | |
505 ; (setq menu-bar-final-items (append '(terminal completion inout signals) | |
506 ; menu-bar-final-items)) | |
507 ) | |
508 | |
509 ;; Menu bars: | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
510 (term-ifnot-xemacs |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
511 (term-if-emacs19 |
9509 | 512 |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
513 ;; terminal: |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
514 (let (newmap) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
515 (setq newmap (make-sparse-keymap "Terminal")) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
516 (define-key newmap [terminal-pager-enable] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
517 '("Enable paging" . term-fake-pager-enable)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
518 (define-key newmap [terminal-pager-disable] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
519 '("Disable paging" . term-fake-pager-disable)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
520 (define-key newmap [terminal-char-mode] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
521 '("Character mode" . term-char-mode)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
522 (define-key newmap [terminal-line-mode] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
523 '("Line mode" . term-line-mode)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
524 (define-key newmap [menu-bar terminal] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
525 (setq term-terminal-menu (cons "Terminal" newmap))) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
526 |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
527 ;; completion: (line mode only) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
528 (defvar term-completion-menu (make-sparse-keymap "Complete")) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
529 (define-key term-mode-map [menu-bar completion] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
530 (cons "Complete" term-completion-menu)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
531 (define-key term-completion-menu [complete-expand] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
532 '("Expand File Name" . term-replace-by-expanded-filename)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
533 (define-key term-completion-menu [complete-listing] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
534 '("File Completion Listing" . term-dynamic-list-filename-completions)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
535 (define-key term-completion-menu [menu-bar completion complete-file] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
536 '("Complete File Name" . term-dynamic-complete-filename)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
537 (define-key term-completion-menu [menu-bar completion complete] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
538 '("Complete Before Point" . term-dynamic-complete)) |
9509 | 539 |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
540 ;; Input history: (line mode only) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
541 (defvar term-inout-menu (make-sparse-keymap "In/Out")) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
542 (define-key term-mode-map [menu-bar inout] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
543 (cons "In/Out" term-inout-menu)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
544 (define-key term-inout-menu [kill-output] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
545 '("Kill Current Output Group" . term-kill-output)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
546 (define-key term-inout-menu [next-prompt] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
547 '("Forward Output Group" . term-next-prompt)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
548 (define-key term-inout-menu [previous-prompt] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
549 '("Backward Output Group" . term-previous-prompt)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
550 (define-key term-inout-menu [show-maximum-output] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
551 '("Show Maximum Output" . term-show-maximum-output)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
552 (define-key term-inout-menu [show-output] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
553 '("Show Current Output Group" . term-show-output)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
554 (define-key term-inout-menu [kill-input] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
555 '("Kill Current Input" . term-kill-input)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
556 (define-key term-inout-menu [copy-input] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
557 '("Copy Old Input" . term-copy-old-input)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
558 (define-key term-inout-menu [forward-matching-history] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
559 '("Forward Matching Input..." . term-forward-matching-input)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
560 (define-key term-inout-menu [backward-matching-history] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
561 '("Backward Matching Input..." . term-backward-matching-input)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
562 (define-key term-inout-menu [next-matching-history] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
563 '("Next Matching Input..." . term-next-matching-input)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
564 (define-key term-inout-menu [previous-matching-history] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
565 '("Previous Matching Input..." . term-previous-matching-input)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
566 (define-key term-inout-menu [next-matching-history-from-input] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
567 '("Next Matching Current Input" . term-next-matching-input-from-input)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
568 (define-key term-inout-menu [previous-matching-history-from-input] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
569 '("Previous Matching Current Input" . term-previous-matching-input-from-input)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
570 (define-key term-inout-menu [next-history] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
571 '("Next Input" . term-next-input)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
572 (define-key term-inout-menu [previous-history] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
573 '("Previous Input" . term-previous-input)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
574 (define-key term-inout-menu [list-history] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
575 '("List Input History" . term-dynamic-list-input-ring)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
576 (define-key term-inout-menu [expand-history] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
577 '("Expand History Before Point" . term-replace-by-expanded-history)) |
9509 | 578 |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
579 ;; Signals |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
580 (setq newmap (make-sparse-keymap "Signals")) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
581 (define-key newmap [eof] '("EOF" . term-send-eof)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
582 (define-key newmap [kill] '("KILL" . term-kill-subjob)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
583 (define-key newmap [quit] '("QUIT" . term-quit-subjob)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
584 (define-key newmap [cont] '("CONT" . term-continue-subjob)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
585 (define-key newmap [stop] '("STOP" . term-stop-subjob)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
586 (define-key newmap [] '("BREAK" . term-interrupt-subjob)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
587 (define-key term-mode-map [menu-bar signals] |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
588 (setq term-signals-menu (cons "Signals" newmap))) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
589 ))) |
9509 | 590 |
591 (defun term-reset-size (height width) | |
592 (setq term-height height) | |
593 (setq term-width width) | |
594 (setq term-start-line-column nil) | |
595 (setq term-current-row nil) | |
596 (setq term-current-column nil) | |
597 (term-scroll-region 0 height)) | |
598 | |
599 ;; Recursive routine used to check if any string in term-kill-echo-list | |
600 ;; matches part of the buffer before point. | |
601 ;; If so, delete that matched part of the buffer - this suppresses echo. | |
602 ;; Also, remove that string from the term-kill-echo-list. | |
603 ;; We *also* remove any older string on the list, as a sanity measure, | |
604 ;; in case something gets out of sync. (Except for type-ahead, there | |
605 ;; should only be one element in the list.) | |
606 | |
607 (defun term-check-kill-echo-list () | |
608 (let ((cur term-kill-echo-list) (found nil) (save-point (point))) | |
609 (unwind-protect | |
610 (progn | |
611 (end-of-line) | |
612 (while cur | |
613 (let* ((str (car cur)) (len (length str)) (start (- (point) len))) | |
614 (if (and (>= start (point-min)) | |
615 (string= str (buffer-substring start (point)))) | |
616 (progn (delete-backward-char len) | |
617 (setq term-kill-echo-list (cdr cur)) | |
618 (setq term-current-column nil) | |
619 (setq term-current-row nil) | |
620 (setq term-start-line-column nil) | |
621 (setq cur nil found t)) | |
622 (setq cur (cdr cur)))))) | |
623 (if (not found) | |
624 (goto-char save-point))) | |
625 found)) | |
626 | |
627 (defun term-check-size (process) | |
628 (if (or (/= term-height (1- (window-height))) | |
629 (/= term-width (1- (window-width)))) | |
630 (progn | |
631 (term-reset-size (1- (window-height)) (1- (window-width))) | |
632 (set-process-window-size process term-height term-width)))) | |
633 | |
634 (defun term-send-raw-string (chars) | |
635 (let ((proc (get-buffer-process (current-buffer)))) | |
636 (if (not proc) | |
637 (error "Current buffer has no process") | |
638 ;; Note that (term-current-row) must be called *after* | |
639 ;; (point) has been updated to (process-mark proc). | |
640 (goto-char (process-mark proc)) | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
641 (if (term-pager-enabled) |
9509 | 642 (setq term-pager-count (term-current-row))) |
643 (send-string proc chars)))) | |
644 | |
645 (defun term-send-raw () | |
646 "Send the last character typed through the terminal-emulator | |
647 without any interpretation." | |
648 (interactive) | |
649 ;; Convert `return' to C-m, etc. | |
650 (if (and (symbolp last-input-char) | |
651 (get last-input-char 'ascii-character)) | |
652 (setq last-input-char (get last-input-char 'ascii-character))) | |
653 (term-send-raw-string (make-string 1 last-input-char))) | |
654 | |
655 (defun term-send-raw-meta () | |
656 (interactive) | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
657 (if (symbolp last-input-char) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
658 ;; Convert `return' to C-m, etc. |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
659 (let ((tmp (get last-input-char 'event-symbol-elements))) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
660 (if tmp |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
661 (setq last-input-char (car tmp))) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
662 (if (symbolp last-input-char) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
663 (progn |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
664 (setq tmp (get last-input-char 'ascii-character)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
665 (if tmp (setq last-input-char tmp)))))) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
666 (term-send-raw-string (if (and (numberp last-input-char) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
667 (> last-input-char 127) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
668 (< last-input-char 256)) |
9509 | 669 (make-string 1 last-input-char) |
670 (format "\e%c" last-input-char)))) | |
671 | |
672 (defun term-mouse-paste (click arg) | |
673 "Insert the last stretch of killed text at the position clicked on." | |
674 (interactive "e\nP") | |
11033
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
675 (term-if-xemacs |
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
676 (term-send-raw-string (or (condition-case () (x-get-selection) (error ())) |
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
677 (x-get-cutbuffer) |
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
678 (error "No selection or cut buffer available")))) |
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
679 (term-ifnot-xemacs |
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
680 ;; Give temporary modes such as isearch a chance to turn off. |
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
681 (run-hooks 'mouse-leave-buffer-hook) |
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
682 (setq this-command 'yank) |
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
683 (term-send-raw-string (current-kill (cond |
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
684 ((listp arg) 0) |
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
685 ((eq arg '-) -1) |
8d2f156b72ff
(term-mouse-paste): Make work for xemacs. Minor GNU emacs fixes.
Per Bothner <bothner@cygnus.com>
parents:
11032
diff
changeset
|
686 (t (1- arg))))))) |
9509 | 687 |
688 ;; Which would be better: "\e[A" or "\eOA"? readline accepts either. | |
689 (defun term-send-up () (interactive) (term-send-raw-string "\e[A")) | |
690 (defun term-send-down () (interactive) (term-send-raw-string "\e[B")) | |
691 (defun term-send-right () (interactive) (term-send-raw-string "\e[C")) | |
692 (defun term-send-left () (interactive) (term-send-raw-string "\e[D")) | |
693 | |
694 (defun term-set-escape-char (c) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
695 "Change term-escape-char and keymaps that depend on it." |
9509 | 696 (if term-escape-char |
697 (define-key term-raw-map term-escape-char 'term-send-raw)) | |
698 (setq c (make-string 1 c)) | |
699 (define-key term-raw-map c term-raw-escape-map) | |
700 ;; Define standard binings in term-raw-escape-map | |
701 (define-key term-raw-escape-map "\C-x" | |
702 (lookup-key (current-global-map) "\C-x")) | |
703 (define-key term-raw-escape-map "\C-v" | |
704 (lookup-key (current-global-map) "\C-v")) | |
705 (define-key term-raw-escape-map "\C-u" | |
706 (lookup-key (current-global-map) "\C-u")) | |
707 (define-key term-raw-escape-map c 'term-send-raw) | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
708 (define-key term-raw-escape-map "\C-q" 'term-pager-toggle) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
709 ;; The keybinding for term-char-mode is needed by the menubar code. |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
710 (define-key term-raw-escape-map "\C-k" 'term-char-mode) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
711 (define-key term-raw-escape-map "\C-j" 'term-line-mode)) |
9509 | 712 |
713 (defun term-char-mode () | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
714 "Switch to char (\"raw\") sub-mode of term mode. |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
715 Each character you type is sent directly to the inferior without |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
716 intervention from emacs, except for the escape character (usually C-c)." |
9509 | 717 (interactive) |
718 (if (not term-raw-map) | |
719 (let* ((map (make-keymap)) | |
720 (esc-map (make-keymap)) | |
721 (i 0)) | |
722 (while (< i 128) | |
723 (define-key map (make-string 1 i) 'term-send-raw) | |
724 (define-key esc-map (make-string 1 i) 'term-send-raw-meta) | |
725 (setq i (1+ i))) | |
726 (define-key map "\e" esc-map) | |
727 (setq term-raw-map map) | |
728 (setq term-raw-escape-map | |
729 (copy-keymap (lookup-key (current-global-map) "\C-x"))) | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
730 (term-if-emacs19 |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
731 (term-if-xemacs |
11032
4b411b6a4e70
(term-char-mode): Fix arrow key and [button2] support for xemacs.
Per Bothner <bothner@cygnus.com>
parents:
10933
diff
changeset
|
732 (define-key term-raw-map [button2] 'term-mouse-paste)) |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
733 (term-ifnot-xemacs |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
734 (define-key term-raw-map [mouse-2] 'term-mouse-paste) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
735 (define-key term-raw-map [menu-bar terminal] term-terminal-menu) |
11032
4b411b6a4e70
(term-char-mode): Fix arrow key and [button2] support for xemacs.
Per Bothner <bothner@cygnus.com>
parents:
10933
diff
changeset
|
736 (define-key term-raw-map [menu-bar signals] term-signals-menu)) |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
737 (define-key term-raw-map [up] 'term-send-up) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
738 (define-key term-raw-map [down] 'term-send-down) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
739 (define-key term-raw-map [right] 'term-send-right) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
740 (define-key term-raw-map [left] 'term-send-left)) |
11032
4b411b6a4e70
(term-char-mode): Fix arrow key and [button2] support for xemacs.
Per Bothner <bothner@cygnus.com>
parents:
10933
diff
changeset
|
741 (term-set-escape-char ?\C-c))) |
9509 | 742 ;; FIXME: Emit message? Cfr ilisp-raw-message |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
743 (if (term-in-line-mode) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
744 (progn |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
745 (setq term-old-mode-map (current-local-map)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
746 (use-local-map term-raw-map) |
9509 | 747 |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
748 ;; Send existing partial line to inferior (without newline). |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
749 (let ((pmark (process-mark (get-buffer-process (current-buffer)))) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
750 (save-input-sender term-input-sender)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
751 (if (> (point) pmark) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
752 (unwind-protect |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
753 (progn |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
754 (setq term-input-sender |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
755 (symbol-function 'term-send-string)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
756 (end-of-line) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
757 (term-send-input)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
758 (setq term-input-sender save-input-sender)))) |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
759 (term-update-mode-line)))) |
9509 | 760 |
761 (defun term-line-mode () | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
762 "Switch to line (\"cooked\") sub-mode of term mode. |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
763 This means that emacs editing commands work as normally, until |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
764 you type \\[term-send-input] which sends the current line to the inferior." |
9509 | 765 (interactive) |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
766 (if (term-in-char-mode) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
767 (progn |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
768 (use-local-map term-old-mode-map) |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
769 (term-update-mode-line)))) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
770 |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
771 (defun term-update-mode-line () |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
772 (setq mode-line-process |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
773 (if (term-in-char-mode) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
774 (if (term-pager-enabled) '(": char page %s") '(": char %s")) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
775 (if (term-pager-enabled) '(": line page %s") '(": line %s")))) |
11570
f210b0ee984a
(term-update-mode-line, term-process-pager): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
11033
diff
changeset
|
776 (force-mode-line-update)) |
9509 | 777 |
778 (defun term-check-proc (buffer) | |
779 "True if there is a process associated w/buffer BUFFER, and | |
780 it is alive (status RUN or STOP). BUFFER can be either a buffer or the | |
781 name of one" | |
782 (let ((proc (get-buffer-process buffer))) | |
783 (and proc (memq (process-status proc) '(run stop))))) | |
784 | |
785 ;;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it () | |
786 ;;; for the second argument (program). | |
787 ;;;###autoload | |
788 (defun make-term (name program &optional startfile &rest switches) | |
789 "Make a term process NAME in a buffer, running PROGRAM. | |
790 The name of the buffer is made by surrounding NAME with `*'s. | |
791 If there is already a running process in that buffer, it is not restarted. | |
792 Optional third arg STARTFILE is the name of a file to send the contents of to | |
793 the process. Any more args are arguments to PROGRAM." | |
794 (let ((buffer (get-buffer-create (concat "*" name "*")))) | |
795 ;; If no process, or nuked process, crank up a new one and put buffer in | |
796 ;; term mode. Otherwise, leave buffer and existing process alone. | |
797 (cond ((not (term-check-proc buffer)) | |
798 (save-excursion | |
799 (set-buffer buffer) | |
800 (term-mode)) ; Install local vars, mode, keymap, ... | |
801 (term-exec buffer name program startfile switches))) | |
802 buffer)) | |
803 | |
804 ;;;###autoload | |
805 (defun term (program) | |
806 "Start a terminal-emulator in a new buffer." | |
807 (interactive (list (read-from-minibuffer "Run program: " | |
808 (or explicit-shell-file-name | |
809 (getenv "ESHELL") | |
810 (getenv "SHELL") | |
811 "/bin/sh")))) | |
812 (set-buffer (make-term "terminal" program)) | |
813 (term-mode) | |
814 (term-char-mode) | |
815 (switch-to-buffer "*terminal*")) | |
816 | |
817 (defun term-exec (buffer name command startfile switches) | |
818 "Start up a process in buffer for term modes. | |
819 Blasts any old process running in the buffer. Doesn't set the buffer mode. | |
820 You can use this to cheaply run a series of processes in the same term | |
821 buffer. The hook term-exec-hook is run after each exec." | |
822 (save-excursion | |
823 (set-buffer buffer) | |
824 (let ((proc (get-buffer-process buffer))) ; Blast any old process. | |
825 (if proc (delete-process proc))) | |
826 ;; Crank up a new process | |
827 (let ((proc (term-exec-1 name buffer command switches))) | |
828 (make-local-variable 'term-ptyp) | |
829 (setq term-ptyp process-connection-type) ; T if pty, NIL if pipe. | |
830 ;; Jump to the end, and set the process mark. | |
831 (goto-char (point-max)) | |
832 (set-marker (process-mark proc) (point)) | |
833 (set-process-filter proc 'term-emulate-terminal) | |
834 ;; Feed it the startfile. | |
835 (cond (startfile | |
836 ;;This is guaranteed to wait long enough | |
837 ;;but has bad results if the term does not prompt at all | |
838 ;; (while (= size (buffer-size)) | |
839 ;; (sleep-for 1)) | |
840 ;;I hope 1 second is enough! | |
841 (sleep-for 1) | |
842 (goto-char (point-max)) | |
843 (insert-file-contents startfile) | |
844 (setq startfile (buffer-substring (point) (point-max))) | |
845 (delete-region (point) (point-max)) | |
846 (term-send-string proc startfile))) | |
847 (run-hooks 'term-exec-hook) | |
848 buffer))) | |
849 | |
850 ;;; Name to use for TERM. | |
851 ;;; Using "emacs" loses, because bash disables editing if TERM == emacs. | |
852 (defvar term-term-name "eterm") | |
853 ; Format string, usage: (format term-termcap-string emacs-term-name "TERMCAP=" 24 80) | |
854 (defvar term-termcap-format | |
10044 | 855 "%s%s:li#%d:co#%d:cl=\\E[H\\E[J:cd=\\E[J:bs:am:xn:cm=\\E[%%i%%d;%%dH\ |
9509 | 856 :nd=\\E[C:up=\\E[A:ce=\\E[K:ho=\\E[H:pt\ |
857 :al=\\E[L:dl=\\E[M:DL=\\E[%%dM:AL=\\E[%%dL:cs=\\E[%%i%%d;%%dr:sf=\\n\ | |
858 :te=\\E[2J\\E[?47l\\E8:ti=\\E7\\E[?47h\ | |
10044 | 859 :dc=\\E[P:DC=\\E[%%dP:IC=\\E[%%d@:im=\\E[4h:ei=\\E[4l:mi:\ |
9509 | 860 :so=\\E[7m:se=\\E[m:us=\\E[4m:ue=\\E[m:md=\\E[1m:mr=\\E[7m:me=\\E[m\ |
861 :UP=\\E[%%dA:DO=\\E[%%dB:LE=\\E[%%dD:RI=\\E[%%dC" | |
862 ;;; : -undefine ic | |
863 "termcap capabilties supported") | |
864 | |
865 ;;; This auxiliary function cranks up the process for term-exec in | |
866 ;;; the appropriate environment. | |
867 | |
868 (defun term-exec-1 (name buffer command switches) | |
10044 | 869 ;; We need to do an extra (fork-less) exec to run stty. |
870 ;; (This would not be needed if we had suitable emacs primitives.) | |
871 ;; The 'if ...; then shift; fi' hack is because Bourne shell | |
872 ;; loses one arg when called with -c, and newer shells (bash, ksh) don't. | |
873 ;; Thus we add an extra dummy argument "..", and then remove it. | |
874 (let ((process-environment | |
875 (nconc | |
876 (list | |
877 (format "TERM=%s" term-term-name) | |
878 (if (and (boundp 'system-uses-terminfo) system-uses-terminfo) | |
879 (format "TERMINFO=%s" data-directory) | |
880 (format term-termcap-format "TERMCAP=" | |
881 term-term-name term-height term-width)) | |
10679
aec6cbccf909
(term-protocol-version): Renamed from term-version.
Richard M. Stallman <rms@gnu.org>
parents:
10671
diff
changeset
|
882 (format "EMACS=%s (term:%s)" emacs-version term-protocol-version) |
10044 | 883 (format "LINES=%d" term-height) |
884 (format "COLUMNS=%d" term-width)) | |
885 process-environment))) | |
886 (apply 'start-process name buffer | |
887 "/bin/sh" "-c" | |
888 (format "stty -nl echo rows %d columns %d sane 2>/dev/null;\ | |
889 if [ $1 = .. ]; then shift; fi; exec \"$@\"" | |
890 term-height term-width) | |
891 ".." | |
892 command switches))) | |
9509 | 893 |
894 ;;; This should be in emacs, but it isn't. | |
895 (defun term-mem (item list &optional elt=) | |
896 "Test to see if ITEM is equal to an item in LIST. | |
897 Option comparison function ELT= defaults to equal." | |
898 (let ((elt= (or elt= (function equal))) | |
899 (done nil)) | |
900 (while (and list (not done)) | |
901 (if (funcall elt= item (car list)) | |
902 (setq done list) | |
903 (setq list (cdr list)))) | |
904 done)) | |
905 | |
906 | |
907 ;;; Input history processing in a buffer | |
908 ;;; =========================================================================== | |
909 ;;; Useful input history functions, courtesy of the Ergo group. | |
910 | |
911 ;;; Eleven commands: | |
912 ;;; term-dynamic-list-input-ring List history in help buffer. | |
913 ;;; term-previous-input Previous input... | |
914 ;;; term-previous-matching-input ...matching a string. | |
915 ;;; term-previous-matching-input-from-input ... matching the current input. | |
916 ;;; term-next-input Next input... | |
917 ;;; term-next-matching-input ...matching a string. | |
918 ;;; term-next-matching-input-from-input ... matching the current input. | |
919 ;;; term-backward-matching-input Backwards input... | |
920 ;;; term-forward-matching-input ...matching a string. | |
921 ;;; term-replace-by-expanded-history Expand history at point; | |
922 ;;; replace with expanded history. | |
923 ;;; term-magic-space Expand history and insert space. | |
924 ;;; | |
925 ;;; Three functions: | |
926 ;;; term-read-input-ring Read into term-input-ring... | |
927 ;;; term-write-input-ring Write to term-input-ring-file-name. | |
928 ;;; term-replace-by-expanded-history-before-point Workhorse function. | |
929 | |
930 (defun term-read-input-ring (&optional silent) | |
931 "Sets the buffer's `term-input-ring' from a history file. | |
932 The name of the file is given by the variable `term-input-ring-file-name'. | |
933 The history ring is of size `term-input-ring-size', regardless of file size. | |
934 If `term-input-ring-file-name' is nil this function does nothing. | |
935 | |
936 If the optional argument SILENT is non-nil, we say nothing about a | |
937 failure to read the history file. | |
938 | |
939 This function is useful for major mode commands and mode hooks. | |
940 | |
941 The structure of the history file should be one input command per line, | |
942 with the most recent command last. | |
943 See also `term-input-ignoredups' and `term-write-input-ring'." | |
944 (cond ((or (null term-input-ring-file-name) | |
945 (equal term-input-ring-file-name "")) | |
946 nil) | |
947 ((not (file-readable-p term-input-ring-file-name)) | |
948 (or silent | |
949 (message "Cannot read history file %s" | |
950 term-input-ring-file-name))) | |
951 (t | |
952 (let ((history-buf (get-buffer-create " *temp*")) | |
953 (file term-input-ring-file-name) | |
954 (count 0) | |
955 (ring (make-ring term-input-ring-size))) | |
956 (unwind-protect | |
957 (save-excursion | |
958 (set-buffer history-buf) | |
959 (widen) | |
960 (erase-buffer) | |
961 (insert-file-contents file) | |
962 ;; Save restriction in case file is already visited... | |
963 ;; Watch for those date stamps in history files! | |
964 (goto-char (point-max)) | |
965 (while (and (< count term-input-ring-size) | |
966 (re-search-backward "^[ \t]*\\([^#\n].*\\)[ \t]*$" | |
967 nil t)) | |
968 (let ((history (buffer-substring (match-beginning 1) | |
969 (match-end 1)))) | |
970 (if (or (null term-input-ignoredups) | |
971 (ring-empty-p ring) | |
972 (not (string-equal (ring-ref ring 0) history))) | |
973 (ring-insert-at-beginning ring history))) | |
974 (setq count (1+ count)))) | |
975 (kill-buffer history-buf)) | |
976 (setq term-input-ring ring | |
977 term-input-ring-index nil))))) | |
978 | |
979 (defun term-write-input-ring () | |
980 "Writes the buffer's `term-input-ring' to a history file. | |
981 The name of the file is given by the variable `term-input-ring-file-name'. | |
982 The original contents of the file are lost if `term-input-ring' is not empty. | |
983 If `term-input-ring-file-name' is nil this function does nothing. | |
984 | |
985 Useful within process sentinels. | |
986 | |
987 See also `term-read-input-ring'." | |
988 (cond ((or (null term-input-ring-file-name) | |
989 (equal term-input-ring-file-name "") | |
990 (null term-input-ring) (ring-empty-p term-input-ring)) | |
991 nil) | |
992 ((not (file-writable-p term-input-ring-file-name)) | |
993 (message "Cannot write history file %s" term-input-ring-file-name)) | |
994 (t | |
995 (let* ((history-buf (get-buffer-create " *Temp Input History*")) | |
996 (ring term-input-ring) | |
997 (file term-input-ring-file-name) | |
998 (index (ring-length ring))) | |
999 ;; Write it all out into a buffer first. Much faster, but messier, | |
1000 ;; than writing it one line at a time. | |
1001 (save-excursion | |
1002 (set-buffer history-buf) | |
1003 (erase-buffer) | |
1004 (while (> index 0) | |
1005 (setq index (1- index)) | |
1006 (insert (ring-ref ring index) ?\n)) | |
1007 (write-region (buffer-string) nil file nil 'no-message) | |
1008 (kill-buffer nil)))))) | |
1009 | |
1010 | |
1011 (defun term-dynamic-list-input-ring () | |
1012 "List in help buffer the buffer's input history." | |
1013 (interactive) | |
1014 (if (or (not (ring-p term-input-ring)) | |
1015 (ring-empty-p term-input-ring)) | |
1016 (message "No history") | |
1017 (let ((history nil) | |
1018 (history-buffer " *Input History*") | |
1019 (index (1- (ring-length term-input-ring))) | |
1020 (conf (current-window-configuration))) | |
1021 ;; We have to build up a list ourselves from the ring vector. | |
1022 (while (>= index 0) | |
1023 (setq history (cons (ring-ref term-input-ring index) history) | |
1024 index (1- index))) | |
1025 ;; Change "completion" to "history reference" | |
1026 ;; to make the display accurate. | |
1027 (with-output-to-temp-buffer history-buffer | |
1028 (display-completion-list history) | |
1029 (set-buffer history-buffer) | |
1030 (forward-line 3) | |
1031 (while (search-backward "completion" nil 'move) | |
1032 (replace-match "history reference"))) | |
1033 (sit-for 0) | |
1034 (message "Hit space to flush") | |
1035 (let ((ch (read-event))) | |
1036 (if (eq ch ?\ ) | |
1037 (set-window-configuration conf) | |
1038 (setq unread-command-events (list ch))))))) | |
1039 | |
1040 | |
1041 (defun term-regexp-arg (prompt) | |
1042 ;; Return list of regexp and prefix arg using PROMPT. | |
1043 (let* ((minibuffer-history-sexp-flag nil) | |
1044 ;; Don't clobber this. | |
1045 (last-command last-command) | |
1046 (regexp (read-from-minibuffer prompt nil nil nil | |
1047 'minibuffer-history-search-history))) | |
1048 (list (if (string-equal regexp "") | |
1049 (setcar minibuffer-history-search-history | |
1050 (nth 1 minibuffer-history-search-history)) | |
1051 regexp) | |
1052 (prefix-numeric-value current-prefix-arg)))) | |
1053 | |
1054 (defun term-search-arg (arg) | |
1055 ;; First make sure there is a ring and that we are after the process mark | |
1056 (cond ((not (term-after-pmark-p)) | |
1057 (error "Not at command line")) | |
1058 ((or (null term-input-ring) | |
1059 (ring-empty-p term-input-ring)) | |
1060 (error "Empty input ring")) | |
1061 ((zerop arg) | |
1062 ;; arg of zero resets search from beginning, and uses arg of 1 | |
1063 (setq term-input-ring-index nil) | |
1064 1) | |
1065 (t | |
1066 arg))) | |
1067 | |
1068 (defun term-search-start (arg) | |
1069 ;; Index to start a directional search, starting at term-input-ring-index | |
1070 (if term-input-ring-index | |
1071 ;; If a search is running, offset by 1 in direction of arg | |
1072 (mod (+ term-input-ring-index (if (> arg 0) 1 -1)) | |
1073 (ring-length term-input-ring)) | |
1074 ;; For a new search, start from beginning or end, as appropriate | |
1075 (if (>= arg 0) | |
1076 0 ; First elt for forward search | |
1077 (1- (ring-length term-input-ring))))) ; Last elt for backward search | |
1078 | |
1079 (defun term-previous-input-string (arg) | |
1080 "Return the string ARG places along the input ring. | |
1081 Moves relative to `term-input-ring-index'." | |
1082 (ring-ref term-input-ring (if term-input-ring-index | |
1083 (mod (+ arg term-input-ring-index) | |
1084 (ring-length term-input-ring)) | |
1085 arg))) | |
1086 | |
1087 (defun term-previous-input (arg) | |
1088 "Cycle backwards through input history." | |
1089 (interactive "*p") | |
1090 (term-previous-matching-input "." arg)) | |
1091 | |
1092 (defun term-next-input (arg) | |
1093 "Cycle forwards through input history." | |
1094 (interactive "*p") | |
1095 (term-previous-input (- arg))) | |
1096 | |
1097 (defun term-previous-matching-input-string (regexp arg) | |
1098 "Return the string matching REGEXP ARG places along the input ring. | |
1099 Moves relative to `term-input-ring-index'." | |
1100 (let* ((pos (term-previous-matching-input-string-position regexp arg))) | |
1101 (if pos (ring-ref term-input-ring pos)))) | |
1102 | |
1103 (defun term-previous-matching-input-string-position (regexp arg &optional start) | |
1104 "Return the index matching REGEXP ARG places along the input ring. | |
1105 Moves relative to START, or `term-input-ring-index'." | |
1106 (if (or (not (ring-p term-input-ring)) | |
1107 (ring-empty-p term-input-ring)) | |
1108 (error "No history")) | |
1109 (let* ((len (ring-length term-input-ring)) | |
1110 (motion (if (> arg 0) 1 -1)) | |
1111 (n (mod (- (or start (term-search-start arg)) motion) len)) | |
1112 (tried-each-ring-item nil) | |
1113 (prev nil)) | |
1114 ;; Do the whole search as many times as the argument says. | |
1115 (while (and (/= arg 0) (not tried-each-ring-item)) | |
1116 ;; Step once. | |
1117 (setq prev n | |
1118 n (mod (+ n motion) len)) | |
1119 ;; If we haven't reached a match, step some more. | |
1120 (while (and (< n len) (not tried-each-ring-item) | |
1121 (not (string-match regexp (ring-ref term-input-ring n)))) | |
1122 (setq n (mod (+ n motion) len) | |
1123 ;; If we have gone all the way around in this search. | |
1124 tried-each-ring-item (= n prev))) | |
1125 (setq arg (if (> arg 0) (1- arg) (1+ arg)))) | |
1126 ;; Now that we know which ring element to use, if we found it, return that. | |
1127 (if (string-match regexp (ring-ref term-input-ring n)) | |
1128 n))) | |
1129 | |
1130 (defun term-previous-matching-input (regexp arg) | |
1131 "Search backwards through input history for match for REGEXP. | |
1132 \(Previous history elements are earlier commands.) | |
1133 With prefix argument N, search for Nth previous match. | |
1134 If N is negative, find the next or Nth next match." | |
1135 (interactive (term-regexp-arg "Previous input matching (regexp): ")) | |
1136 (setq arg (term-search-arg arg)) | |
1137 (let ((pos (term-previous-matching-input-string-position regexp arg))) | |
1138 ;; Has a match been found? | |
1139 (if (null pos) | |
1140 (error "Not found") | |
1141 (setq term-input-ring-index pos) | |
1142 (message "History item: %d" (1+ pos)) | |
1143 (delete-region | |
1144 ;; Can't use kill-region as it sets this-command | |
1145 (process-mark (get-buffer-process (current-buffer))) (point)) | |
1146 (insert (ring-ref term-input-ring pos))))) | |
1147 | |
1148 (defun term-next-matching-input (regexp arg) | |
1149 "Search forwards through input history for match for REGEXP. | |
1150 \(Later history elements are more recent commands.) | |
1151 With prefix argument N, search for Nth following match. | |
1152 If N is negative, find the previous or Nth previous match." | |
1153 (interactive (term-regexp-arg "Next input matching (regexp): ")) | |
1154 (term-previous-matching-input regexp (- arg))) | |
1155 | |
1156 (defun term-previous-matching-input-from-input (arg) | |
1157 "Search backwards through input history for match for current input. | |
1158 \(Previous history elements are earlier commands.) | |
1159 With prefix argument N, search for Nth previous match. | |
1160 If N is negative, search forwards for the -Nth following match." | |
1161 (interactive "p") | |
1162 (if (not (memq last-command '(term-previous-matching-input-from-input | |
1163 term-next-matching-input-from-input))) | |
1164 ;; Starting a new search | |
1165 (setq term-matching-input-from-input-string | |
1166 (buffer-substring | |
1167 (process-mark (get-buffer-process (current-buffer))) | |
1168 (point)) | |
1169 term-input-ring-index nil)) | |
1170 (term-previous-matching-input | |
1171 (concat "^" (regexp-quote term-matching-input-from-input-string)) | |
1172 arg)) | |
1173 | |
1174 (defun term-next-matching-input-from-input (arg) | |
1175 "Search forwards through input history for match for current input. | |
1176 \(Following history elements are more recent commands.) | |
1177 With prefix argument N, search for Nth following match. | |
1178 If N is negative, search backwards for the -Nth previous match." | |
1179 (interactive "p") | |
1180 (term-previous-matching-input-from-input (- arg))) | |
1181 | |
1182 | |
1183 (defun term-replace-by-expanded-history (&optional silent) | |
1184 "Expand input command history references before point. | |
1185 Expansion is dependent on the value of `term-input-autoexpand'. | |
1186 | |
1187 This function depends on the buffer's idea of the input history, which may not | |
1188 match the command interpreter's idea, assuming it has one. | |
1189 | |
1190 Assumes history syntax is like typical Un*x shells'. However, since emacs | |
1191 cannot know the interpreter's idea of input line numbers, assuming it has one, | |
1192 it cannot expand absolute input line number references. | |
1193 | |
1194 If the optional argument SILENT is non-nil, never complain | |
1195 even if history reference seems erroneous. | |
1196 | |
1197 See `term-magic-space' and `term-replace-by-expanded-history-before-point'. | |
1198 | |
1199 Returns t if successful." | |
1200 (interactive) | |
1201 (if (and term-input-autoexpand | |
1202 (string-match "[!^]" (funcall term-get-old-input)) | |
1203 (save-excursion (beginning-of-line) | |
1204 (looking-at term-prompt-regexp))) | |
1205 ;; Looks like there might be history references in the command. | |
1206 (let ((previous-modified-tick (buffer-modified-tick))) | |
1207 (message "Expanding history references...") | |
1208 (term-replace-by-expanded-history-before-point silent) | |
1209 (/= previous-modified-tick (buffer-modified-tick))))) | |
1210 | |
1211 | |
1212 (defun term-replace-by-expanded-history-before-point (silent) | |
1213 "Expand directory stack reference before point. | |
1214 See `term-replace-by-expanded-history'. Returns t if successful." | |
1215 (save-excursion | |
1216 (let ((toend (- (save-excursion (end-of-line nil) (point)) (point))) | |
1217 (start (progn (term-bol nil) (point)))) | |
1218 (while (progn | |
1219 (skip-chars-forward "^!^" | |
1220 (save-excursion | |
1221 (end-of-line nil) (- (point) toend))) | |
1222 (< (point) | |
1223 (save-excursion | |
1224 (end-of-line nil) (- (point) toend)))) | |
1225 ;; This seems a bit complex. We look for references such as !!, !-num, | |
1226 ;; !foo, !?foo, !{bar}, !?{bar}, ^oh, ^my^, ^god^it, ^never^ends^. | |
1227 ;; If that wasn't enough, the plings can be suffixed with argument | |
1228 ;; range specifiers. | |
1229 ;; Argument ranges are complex too, so we hive off the input line, | |
1230 ;; referenced with plings, with the range string to `term-args'. | |
1231 (setq term-input-ring-index nil) | |
1232 (cond ((or (= (preceding-char) ?\\) | |
1233 (term-within-quotes start (point))) | |
1234 ;; The history is quoted, or we're in quotes. | |
1235 (goto-char (1+ (point)))) | |
1236 ((looking-at "![0-9]+\\($\\|[^-]\\)") | |
1237 ;; We cannot know the interpreter's idea of input line numbers. | |
1238 (goto-char (match-end 0)) | |
1239 (message "Absolute reference cannot be expanded")) | |
1240 ((looking-at "!-\\([0-9]+\\)\\(:?[0-9^$*-]+\\)?") | |
1241 ;; Just a number of args from `number' lines backward. | |
1242 (let ((number (1- (string-to-number | |
1243 (buffer-substring (match-beginning 1) | |
1244 (match-end 1)))))) | |
1245 (if (<= number (ring-length term-input-ring)) | |
1246 (progn | |
1247 (replace-match | |
1248 (term-args (term-previous-input-string number) | |
1249 (match-beginning 2) (match-end 2)) | |
1250 t t) | |
1251 (setq term-input-ring-index number) | |
1252 (message "History item: %d" (1+ number))) | |
1253 (goto-char (match-end 0)) | |
1254 (message "Relative reference exceeds input history size")))) | |
1255 ((or (looking-at "!!?:?\\([0-9^$*-]+\\)") (looking-at "!!")) | |
1256 ;; Just a number of args from the previous input line. | |
1257 (replace-match | |
1258 (term-args (term-previous-input-string 0) | |
1259 (match-beginning 1) (match-end 1)) | |
1260 t t) | |
1261 (message "History item: previous")) | |
1262 ((looking-at | |
1263 "!\\??\\({\\(.+\\)}\\|\\(\\sw+\\)\\)\\(:?[0-9^$*-]+\\)?") | |
1264 ;; Most recent input starting with or containing (possibly | |
1265 ;; protected) string, maybe just a number of args. Phew. | |
1266 (let* ((mb1 (match-beginning 1)) (me1 (match-end 1)) | |
1267 (mb2 (match-beginning 2)) (me2 (match-end 2)) | |
1268 (exp (buffer-substring (or mb2 mb1) (or me2 me1))) | |
1269 (pref (if (save-match-data (looking-at "!\\?")) "" "^")) | |
1270 (pos (save-match-data | |
1271 (term-previous-matching-input-string-position | |
1272 (concat pref (regexp-quote exp)) 1)))) | |
1273 (if (null pos) | |
1274 (progn | |
1275 (goto-char (match-end 0)) | |
1276 (or silent | |
1277 (progn (message "Not found") | |
1278 (ding)))) | |
1279 (setq term-input-ring-index pos) | |
1280 (replace-match | |
1281 (term-args (ring-ref term-input-ring pos) | |
1282 (match-beginning 4) (match-end 4)) | |
1283 t t) | |
1284 (message "History item: %d" (1+ pos))))) | |
1285 ((looking-at "\\^\\([^^]+\\)\\^?\\([^^]*\\)\\^?") | |
1286 ;; Quick substitution on the previous input line. | |
1287 (let ((old (buffer-substring (match-beginning 1) (match-end 1))) | |
1288 (new (buffer-substring (match-beginning 2) (match-end 2))) | |
1289 (pos nil)) | |
1290 (replace-match (term-previous-input-string 0) t t) | |
1291 (setq pos (point)) | |
1292 (goto-char (match-beginning 0)) | |
1293 (if (not (search-forward old pos t)) | |
1294 (or silent | |
1295 (error "Not found")) | |
1296 (replace-match new t t) | |
1297 (message "History item: substituted")))) | |
1298 (t | |
1299 (goto-char (match-end 0)))))))) | |
1300 | |
1301 | |
1302 (defun term-magic-space (arg) | |
1303 "Expand input history references before point and insert ARG spaces. | |
1304 A useful command to bind to SPC. See `term-replace-by-expanded-history'." | |
1305 (interactive "p") | |
1306 (term-replace-by-expanded-history) | |
1307 (self-insert-command arg)) | |
1308 | |
1309 (defun term-within-quotes (beg end) | |
1310 "Return t if the number of quotes between BEG and END is odd. | |
1311 Quotes are single and double." | |
1312 (let ((countsq (term-how-many-region "\\(^\\|[^\\\\]\\)\'" beg end)) | |
1313 (countdq (term-how-many-region "\\(^\\|[^\\\\]\\)\"" beg end))) | |
1314 (or (= (mod countsq 2) 1) (= (mod countdq 2) 1)))) | |
1315 | |
1316 (defun term-how-many-region (regexp beg end) | |
1317 "Return number of matches for REGEXP from BEG to END." | |
1318 (let ((count 0)) | |
1319 (save-excursion | |
1320 (save-match-data | |
1321 (goto-char beg) | |
1322 (while (re-search-forward regexp end t) | |
1323 (setq count (1+ count))))) | |
1324 count)) | |
1325 | |
1326 (defun term-args (string begin end) | |
1327 ;; From STRING, return the args depending on the range specified in the text | |
1328 ;; from BEGIN to END. If BEGIN is nil, assume all args. Ignore leading `:'. | |
1329 ;; Range can be x-y, x-, -y, where x/y can be [0-9], *, ^, $. | |
1330 (save-match-data | |
1331 (if (null begin) | |
1332 (term-arguments string 0 nil) | |
1333 (let* ((range (buffer-substring | |
1334 (if (eq (char-after begin) ?:) (1+ begin) begin) end)) | |
1335 (nth (cond ((string-match "^[*^]" range) 1) | |
1336 ((string-match "^-" range) 0) | |
1337 ((string-equal range "$") nil) | |
1338 (t (string-to-number range)))) | |
1339 (mth (cond ((string-match "[-*$]$" range) nil) | |
1340 ((string-match "-" range) | |
1341 (string-to-number (substring range (match-end 0)))) | |
1342 (t nth)))) | |
1343 (term-arguments string nth mth))))) | |
1344 | |
1345 ;; Return a list of arguments from ARG. Break it up at the | |
1346 ;; delimiters in term-delimiter-argument-list. Returned list is backwards. | |
1347 (defun term-delim-arg (arg) | |
1348 (if (null term-delimiter-argument-list) | |
1349 (list arg) | |
1350 (let ((args nil) | |
1351 (pos 0) | |
1352 (len (length arg))) | |
1353 (while (< pos len) | |
1354 (let ((char (aref arg pos)) | |
1355 (start pos)) | |
1356 (if (memq char term-delimiter-argument-list) | |
1357 (while (and (< pos len) (eq (aref arg pos) char)) | |
1358 (setq pos (1+ pos))) | |
1359 (while (and (< pos len) | |
1360 (not (memq (aref arg pos) | |
1361 term-delimiter-argument-list))) | |
1362 (setq pos (1+ pos)))) | |
1363 (setq args (cons (substring arg start pos) args)))) | |
1364 args))) | |
1365 | |
1366 (defun term-arguments (string nth mth) | |
1367 "Return from STRING the NTH to MTH arguments. | |
1368 NTH and/or MTH can be nil, which means the last argument. | |
1369 Returned arguments are separated by single spaces. | |
1370 We assume whitespace separates arguments, except within quotes. | |
1371 Also, a run of one or more of a single character | |
1372 in `term-delimiter-argument-list' is a separate argument. | |
1373 Argument 0 is the command name." | |
1374 (let ((argpart "[^ \n\t\"'`]+\\|\\(\"[^\"]*\"\\|'[^']*'\\|`[^`]*`\\)") | |
1375 (args ()) (pos 0) | |
1376 (count 0) | |
1377 beg str value quotes) | |
1378 ;; Build a list of all the args until we have as many as we want. | |
1379 (while (and (or (null mth) (<= count mth)) | |
1380 (string-match argpart string pos)) | |
1381 (if (and beg (= pos (match-beginning 0))) | |
1382 ;; It's contiguous, part of the same arg. | |
1383 (setq pos (match-end 0) | |
1384 quotes (or quotes (match-beginning 1))) | |
1385 ;; It's a new separate arg. | |
1386 (if beg | |
1387 ;; Put the previous arg, if there was one, onto ARGS. | |
1388 (setq str (substring string beg pos) | |
1389 args (if quotes (cons str args) | |
1390 (nconc (term-delim-arg str) args)) | |
1391 count (1+ count))) | |
1392 (setq quotes (match-beginning 1)) | |
1393 (setq beg (match-beginning 0)) | |
1394 (setq pos (match-end 0)))) | |
1395 (if beg | |
1396 (setq str (substring string beg pos) | |
1397 args (if quotes (cons str args) | |
1398 (nconc (term-delim-arg str) args)) | |
1399 count (1+ count))) | |
1400 (let ((n (or nth (1- count))) | |
1401 (m (if mth (1- (- count mth)) 0))) | |
1402 (mapconcat | |
1403 (function (lambda (a) a)) (nthcdr n (nreverse (nthcdr m args))) " ")))) | |
1404 | |
1405 ;;; | |
1406 ;;; Input processing stuff [line mode] | |
1407 ;;; | |
1408 | |
1409 (defun term-send-input () | |
1410 "Send input to process. | |
1411 After the process output mark, sends all text from the process mark to | |
1412 point as input to the process. Before the process output mark, calls value | |
1413 of variable term-get-old-input to retrieve old input, copies it to the | |
1414 process mark, and sends it. A terminal newline is also inserted into the | |
1415 buffer and sent to the process. The list of function names contained in the | |
1416 value of `term-input-filter-functions' is called on the input before sending | |
1417 it. The input is entered into the input history ring, if the value of variable | |
1418 term-input-filter returns non-nil when called on the input. | |
1419 | |
1420 Any history reference may be expanded depending on the value of the variable | |
1421 `term-input-autoexpand'. The list of function names contained in the value | |
1422 of `term-input-filter-functions' is called on the input before sending it. | |
1423 The input is entered into the input history ring, if the value of variable | |
1424 `term-input-filter' returns non-nil when called on the input. | |
1425 | |
10933
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1426 If variable `term-eol-on-send' is non-nil, then point is moved to the |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1427 end of line before sending the input. |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1428 |
9509 | 1429 The values of `term-get-old-input', `term-input-filter-functions', and |
1430 `term-input-filter' are chosen according to the command interpreter running | |
1431 in the buffer. E.g., | |
1432 | |
1433 If the interpreter is the csh, | |
1434 term-get-old-input is the default: take the current line, discard any | |
1435 initial string matching regexp term-prompt-regexp. | |
1436 term-input-filter-functions monitors input for \"cd\", \"pushd\", and | |
1437 \"popd\" commands. When it sees one, it cd's the buffer. | |
1438 term-input-filter is the default: returns T if the input isn't all white | |
1439 space. | |
1440 | |
1441 If the term is Lucid Common Lisp, | |
1442 term-get-old-input snarfs the sexp ending at point. | |
1443 term-input-filter-functions does nothing. | |
1444 term-input-filter returns NIL if the input matches input-filter-regexp, | |
1445 which matches (1) all whitespace (2) :a, :c, etc. | |
1446 | |
1447 Similarly for Soar, Scheme, etc." | |
1448 (interactive) | |
1449 ;; Note that the input string does not include its terminal newline. | |
1450 (let ((proc (get-buffer-process (current-buffer)))) | |
1451 (if (not proc) (error "Current buffer has no process") | |
1452 (let* ((pmark (process-mark proc)) | |
1453 (pmark-val (marker-position pmark)) | |
10933
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1454 (input-is-new (>= (point) pmark-val)) |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1455 (intxt (if input-is-new |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1456 (progn (if term-eol-on-send (end-of-line)) |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1457 (buffer-substring pmark (point))) |
9509 | 1458 (funcall term-get-old-input))) |
1459 (input (if (not (eq term-input-autoexpand 'input)) | |
1460 ;; Just whatever's already there | |
1461 intxt | |
1462 ;; Expand and leave it visible in buffer | |
1463 (term-replace-by-expanded-history t) | |
1464 (buffer-substring pmark (point)))) | |
1465 (history (if (not (eq term-input-autoexpand 'history)) | |
1466 input | |
1467 ;; This is messy 'cos ultimately the original | |
1468 ;; functions used do insertion, rather than return | |
1469 ;; strings. We have to expand, then insert back. | |
1470 (term-replace-by-expanded-history t) | |
1471 (let ((copy (buffer-substring pmark (point)))) | |
1472 (delete-region pmark (point)) | |
1473 (insert input) | |
1474 copy)))) | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
1475 (if (term-pager-enabled) |
9509 | 1476 (save-excursion |
1477 (goto-char (process-mark proc)) | |
1478 (setq term-pager-count (term-current-row)))) | |
1479 (if (and (funcall term-input-filter history) | |
1480 (or (null term-input-ignoredups) | |
1481 (not (ring-p term-input-ring)) | |
1482 (ring-empty-p term-input-ring) | |
1483 (not (string-equal (ring-ref term-input-ring 0) | |
1484 history)))) | |
1485 (ring-insert term-input-ring history)) | |
1486 (let ((functions term-input-filter-functions)) | |
1487 (while functions | |
1488 (funcall (car functions) (concat input "\n")) | |
1489 (setq functions (cdr functions)))) | |
1490 (setq term-input-ring-index nil) | |
10933
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1491 |
9509 | 1492 ;; Update the markers before we send the input |
1493 ;; in case we get output amidst sending the input. | |
1494 (set-marker term-last-input-start pmark) | |
1495 (set-marker term-last-input-end (point)) | |
10933
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1496 (if input-is-new |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1497 (progn |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1498 ;; Set up to delete, because inferior should echo. |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1499 (if (marker-buffer term-pending-delete-marker) |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1500 (delete-region term-pending-delete-marker pmark)) |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1501 (set-marker term-pending-delete-marker pmark-val) |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1502 (set-marker (process-mark proc) (point)))) |
3057c4fd86d3
* term.el (term-eol-on-send): New variable. Use it.
Per Bothner <bothner@cygnus.com>
parents:
10679
diff
changeset
|
1503 (goto-char pmark) |
9509 | 1504 (funcall term-input-sender proc input))))) |
1505 | |
1506 (defun term-get-old-input-default () | |
1507 "Default for term-get-old-input. | |
1508 Take the current line, and discard any initial text matching | |
1509 term-prompt-regexp." | |
1510 (save-excursion | |
1511 (beginning-of-line) | |
1512 (term-skip-prompt) | |
1513 (let ((beg (point))) | |
1514 (end-of-line) | |
1515 (buffer-substring beg (point))))) | |
1516 | |
1517 (defun term-copy-old-input () | |
1518 "Insert after prompt old input at point as new input to be edited. | |
1519 Calls `term-get-old-input' to get old input." | |
1520 (interactive) | |
1521 (let ((input (funcall term-get-old-input)) | |
1522 (process (get-buffer-process (current-buffer)))) | |
1523 (if (not process) | |
1524 (error "Current buffer has no process") | |
1525 (goto-char (process-mark process)) | |
1526 (insert input)))) | |
1527 | |
1528 (defun term-skip-prompt () | |
1529 "Skip past the text matching regexp term-prompt-regexp. | |
1530 If this takes us past the end of the current line, don't skip at all." | |
1531 (let ((eol (save-excursion (end-of-line) (point)))) | |
1532 (if (and (looking-at term-prompt-regexp) | |
1533 (<= (match-end 0) eol)) | |
1534 (goto-char (match-end 0))))) | |
1535 | |
1536 | |
1537 (defun term-after-pmark-p () | |
1538 "Is point after the process output marker?" | |
1539 ;; Since output could come into the buffer after we looked at the point | |
1540 ;; but before we looked at the process marker's value, we explicitly | |
1541 ;; serialise. This is just because I don't know whether or not emacs | |
1542 ;; services input during execution of lisp commands. | |
1543 (let ((proc-pos (marker-position | |
1544 (process-mark (get-buffer-process (current-buffer)))))) | |
1545 (<= proc-pos (point)))) | |
1546 | |
1547 (defun term-simple-send (proc string) | |
1548 "Default function for sending to PROC input STRING. | |
1549 This just sends STRING plus a newline. To override this, | |
1550 set the hook TERM-INPUT-SENDER." | |
1551 (term-send-string proc string) | |
1552 (term-send-string proc "\n")) | |
1553 | |
1554 (defun term-bol (arg) | |
1555 "Goes to the beginning of line, then skips past the prompt, if any. | |
1556 If a prefix argument is given (\\[universal-argument]), then no prompt skip | |
1557 -- go straight to column 0. | |
1558 | |
1559 The prompt skip is done by skipping text matching the regular expression | |
1560 term-prompt-regexp, a buffer local variable." | |
1561 (interactive "P") | |
1562 (beginning-of-line) | |
1563 (if (null arg) (term-skip-prompt))) | |
1564 | |
1565 ;;; These two functions are for entering text you don't want echoed or | |
1566 ;;; saved -- typically passwords to ftp, telnet, or somesuch. | |
1567 ;;; Just enter m-x term-send-invisible and type in your line. | |
1568 | |
1569 (defun term-read-noecho (prompt &optional stars) | |
1570 "Read a single line of text from user without echoing, and return it. | |
1571 Prompt with argument PROMPT, a string. Optional argument STARS causes | |
1572 input to be echoed with '*' characters on the prompt line. Input ends with | |
1573 RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. C-g aborts (if | |
1574 `inhibit-quit' is set because e.g. this function was called from a process | |
1575 filter and C-g is pressed, this function returns nil rather than a string). | |
1576 | |
1577 Note that the keystrokes comprising the text can still be recovered | |
1578 \(temporarily) with \\[view-lossage]. This may be a security bug for some | |
1579 applications." | |
1580 (let ((ans "") | |
1581 (c 0) | |
1582 (echo-keystrokes 0) | |
1583 (cursor-in-echo-area t) | |
1584 (done nil)) | |
1585 (while (not done) | |
1586 (if stars | |
1587 (message "%s%s" prompt (make-string (length ans) ?*)) | |
1588 (message prompt)) | |
1589 (setq c (read-char)) | |
1590 (cond ((= c ?\C-g) | |
1591 ;; This function may get called from a process filter, where | |
1592 ;; inhibit-quit is set. In later versions of emacs read-char | |
1593 ;; may clear quit-flag itself and return C-g. That would make | |
1594 ;; it impossible to quit this loop in a simple way, so | |
1595 ;; re-enable it here (for backward-compatibility the check for | |
1596 ;; quit-flag below would still be necessary, so this seems | |
1597 ;; like the simplest way to do things). | |
1598 (setq quit-flag t | |
1599 done t)) | |
1600 ((or (= c ?\r) (= c ?\n) (= c ?\e)) | |
1601 (setq done t)) | |
1602 ((= c ?\C-u) | |
1603 (setq ans "")) | |
1604 ((and (/= c ?\b) (/= c ?\177)) | |
1605 (setq ans (concat ans (char-to-string c)))) | |
1606 ((> (length ans) 0) | |
1607 (setq ans (substring ans 0 -1))))) | |
1608 (if quit-flag | |
1609 ;; Emulate a true quit, except that we have to return a value. | |
1610 (prog1 | |
1611 (setq quit-flag nil) | |
1612 (message "Quit") | |
1613 (beep t)) | |
1614 (message "") | |
1615 ans))) | |
1616 | |
1617 (defun term-send-invisible (str &optional proc) | |
1618 "Read a string without echoing. | |
1619 Then send it to the process running in the current buffer. A new-line | |
1620 is additionally sent. String is not saved on term input history list. | |
1621 Security bug: your string can still be temporarily recovered with | |
1622 \\[view-lossage]." | |
1623 (interactive "P") ; Defeat snooping via C-x esc | |
1624 (if (not (stringp str)) | |
1625 (setq str (term-read-noecho "Non-echoed text: " t))) | |
1626 (if (not proc) | |
1627 (setq proc (get-buffer-process (current-buffer)))) | |
1628 (if (not proc) (error "Current buffer has no process") | |
1629 (setq term-kill-echo-list (nconc term-kill-echo-list | |
1630 (cons str nil))) | |
1631 (term-send-string proc str) | |
1632 (term-send-string proc "\n"))) | |
1633 | |
1634 | |
1635 ;;; Low-level process communication | |
1636 | |
1637 (defvar term-input-chunk-size 512 | |
1638 "*Long inputs send to term processes are broken up into chunks of this size. | |
1639 If your process is choking on big inputs, try lowering the value.") | |
1640 | |
1641 (defun term-send-string (proc str) | |
1642 "Send PROCESS the contents of STRING as input. | |
1643 This is equivalent to process-send-string, except that long input strings | |
1644 are broken up into chunks of size term-input-chunk-size. Processes | |
1645 are given a chance to output between chunks. This can help prevent processes | |
1646 from hanging when you send them long inputs on some OS's." | |
1647 (let* ((len (length str)) | |
1648 (i (min len term-input-chunk-size))) | |
1649 (process-send-string proc (substring str 0 i)) | |
1650 (while (< i len) | |
1651 (let ((next-i (+ i term-input-chunk-size))) | |
1652 (accept-process-output) | |
1653 (process-send-string proc (substring str i (min len next-i))) | |
1654 (setq i next-i))))) | |
1655 | |
1656 (defun term-send-region (proc start end) | |
1657 "Sends to PROC the region delimited by START and END. | |
1658 This is a replacement for process-send-region that tries to keep | |
1659 your process from hanging on long inputs. See term-send-string." | |
1660 (term-send-string proc (buffer-substring start end))) | |
1661 | |
1662 | |
1663 ;;; Random input hackage | |
1664 | |
1665 (defun term-kill-output () | |
1666 "Kill all output from interpreter since last input." | |
1667 (interactive) | |
1668 (let ((pmark (process-mark (get-buffer-process (current-buffer))))) | |
1669 (kill-region term-last-input-end pmark) | |
1670 (goto-char pmark) | |
1671 (insert "*** output flushed ***\n") | |
1672 (set-marker pmark (point)))) | |
1673 | |
1674 (defun term-show-output () | |
1675 "Display start of this batch of interpreter output at top of window. | |
1676 Sets mark to the value of point when this command is run." | |
1677 (interactive) | |
1678 (goto-char term-last-input-end) | |
1679 (backward-char) | |
1680 (beginning-of-line) | |
1681 (set-window-start (selected-window) (point)) | |
1682 (end-of-line)) | |
1683 | |
1684 (defun term-interrupt-subjob () | |
1685 "Interrupt the current subjob." | |
1686 (interactive) | |
1687 (interrupt-process nil term-ptyp)) | |
1688 | |
1689 (defun term-kill-subjob () | |
1690 "Send kill signal to the current subjob." | |
1691 (interactive) | |
1692 (kill-process nil term-ptyp)) | |
1693 | |
1694 (defun term-quit-subjob () | |
1695 "Send quit signal to the current subjob." | |
1696 (interactive) | |
1697 (quit-process nil term-ptyp)) | |
1698 | |
1699 (defun term-stop-subjob () | |
1700 "Stop the current subjob. | |
1701 WARNING: if there is no current subjob, you can end up suspending | |
1702 the top-level process running in the buffer. If you accidentally do | |
1703 this, use \\[term-continue-subjob] to resume the process. (This | |
1704 is not a problem with most shells, since they ignore this signal.)" | |
1705 (interactive) | |
1706 (stop-process nil term-ptyp)) | |
1707 | |
1708 (defun term-continue-subjob () | |
1709 "Send CONT signal to process buffer's process group. | |
1710 Useful if you accidentally suspend the top-level process." | |
1711 (interactive) | |
1712 (continue-process nil term-ptyp)) | |
1713 | |
1714 (defun term-kill-input () | |
1715 "Kill all text from last stuff output by interpreter to point." | |
1716 (interactive) | |
1717 (let* ((pmark (process-mark (get-buffer-process (current-buffer)))) | |
1718 (p-pos (marker-position pmark))) | |
1719 (if (> (point) p-pos) | |
1720 (kill-region pmark (point))))) | |
1721 | |
1722 (defun term-delchar-or-maybe-eof (arg) | |
1723 "Delete ARG characters forward, or send an EOF to process if at end of buffer." | |
1724 (interactive "p") | |
1725 (if (eobp) | |
1726 (process-send-eof) | |
1727 (delete-char arg))) | |
1728 | |
1729 (defun term-send-eof () | |
1730 "Send an EOF to the current buffer's process." | |
1731 (interactive) | |
1732 (process-send-eof)) | |
1733 | |
1734 (defun term-backward-matching-input (regexp arg) | |
1735 "Search backward through buffer for match for REGEXP. | |
1736 Matches are searched for on lines that match `term-prompt-regexp'. | |
1737 With prefix argument N, search for Nth previous match. | |
1738 If N is negative, find the next or Nth next match." | |
1739 (interactive (term-regexp-arg "Backward input matching (regexp): ")) | |
1740 (let* ((re (concat term-prompt-regexp ".*" regexp)) | |
1741 (pos (save-excursion (end-of-line (if (> arg 0) 0 1)) | |
1742 (if (re-search-backward re nil t arg) | |
1743 (point))))) | |
1744 (if (null pos) | |
1745 (progn (message "Not found") | |
1746 (ding)) | |
1747 (goto-char pos) | |
1748 (term-bol nil)))) | |
1749 | |
1750 (defun term-forward-matching-input (regexp arg) | |
1751 "Search forward through buffer for match for REGEXP. | |
1752 Matches are searched for on lines that match `term-prompt-regexp'. | |
1753 With prefix argument N, search for Nth following match. | |
1754 If N is negative, find the previous or Nth previous match." | |
1755 (interactive (term-regexp-arg "Forward input matching (regexp): ")) | |
1756 (term-backward-matching-input regexp (- arg))) | |
1757 | |
1758 | |
1759 (defun term-next-prompt (n) | |
1760 "Move to end of Nth next prompt in the buffer. | |
1761 See `term-prompt-regexp'." | |
1762 (interactive "p") | |
1763 (let ((paragraph-start term-prompt-regexp)) | |
1764 (end-of-line (if (> n 0) 1 0)) | |
1765 (forward-paragraph n) | |
1766 (term-skip-prompt))) | |
1767 | |
1768 (defun term-previous-prompt (n) | |
1769 "Move to end of Nth previous prompt in the buffer. | |
1770 See `term-prompt-regexp'." | |
1771 (interactive "p") | |
1772 (term-next-prompt (- n))) | |
1773 | |
1774 ;;; Support for source-file processing commands. | |
1775 ;;;============================================================================ | |
1776 ;;; Many command-interpreters (e.g., Lisp, Scheme, Soar) have | |
1777 ;;; commands that process files of source text (e.g. loading or compiling | |
1778 ;;; files). So the corresponding process-in-a-buffer modes have commands | |
1779 ;;; for doing this (e.g., lisp-load-file). The functions below are useful | |
1780 ;;; for defining these commands. | |
1781 ;;; | |
1782 ;;; Alas, these guys don't do exactly the right thing for Lisp, Scheme | |
1783 ;;; and Soar, in that they don't know anything about file extensions. | |
1784 ;;; So the compile/load interface gets the wrong default occasionally. | |
1785 ;;; The load-file/compile-file default mechanism could be smarter -- it | |
1786 ;;; doesn't know about the relationship between filename extensions and | |
1787 ;;; whether the file is source or executable. If you compile foo.lisp | |
1788 ;;; with compile-file, then the next load-file should use foo.bin for | |
1789 ;;; the default, not foo.lisp. This is tricky to do right, particularly | |
1790 ;;; because the extension for executable files varies so much (.o, .bin, | |
1791 ;;; .lbin, .mo, .vo, .ao, ...). | |
1792 | |
1793 | |
1794 ;;; TERM-SOURCE-DEFAULT -- determines defaults for source-file processing | |
1795 ;;; commands. | |
1796 ;;; | |
1797 ;;; TERM-CHECK-SOURCE -- if FNAME is in a modified buffer, asks you if you | |
1798 ;;; want to save the buffer before issuing any process requests to the command | |
1799 ;;; interpreter. | |
1800 ;;; | |
1801 ;;; TERM-GET-SOURCE -- used by the source-file processing commands to prompt | |
1802 ;;; for the file to process. | |
1803 | |
1804 ;;; (TERM-SOURCE-DEFAULT previous-dir/file source-modes) | |
1805 ;;;============================================================================ | |
1806 ;;; This function computes the defaults for the load-file and compile-file | |
1807 ;;; commands for tea, soar, cmulisp, and cmuscheme modes. | |
1808 ;;; | |
1809 ;;; - PREVIOUS-DIR/FILE is a pair (directory . filename) from the last | |
1810 ;;; source-file processing command. NIL if there hasn't been one yet. | |
1811 ;;; - SOURCE-MODES is a list used to determine what buffers contain source | |
1812 ;;; files: if the major mode of the buffer is in SOURCE-MODES, it's source. | |
1813 ;;; Typically, (lisp-mode) or (scheme-mode). | |
1814 ;;; | |
1815 ;;; If the command is given while the cursor is inside a string, *and* | |
1816 ;;; the string is an existing filename, *and* the filename is not a directory, | |
1817 ;;; then the string is taken as default. This allows you to just position | |
1818 ;;; your cursor over a string that's a filename and have it taken as default. | |
1819 ;;; | |
1820 ;;; If the command is given in a file buffer whose major mode is in | |
1821 ;;; SOURCE-MODES, then the the filename is the default file, and the | |
1822 ;;; file's directory is the default directory. | |
1823 ;;; | |
1824 ;;; If the buffer isn't a source file buffer (e.g., it's the process buffer), | |
1825 ;;; then the default directory & file are what was used in the last source-file | |
1826 ;;; processing command (i.e., PREVIOUS-DIR/FILE). If this is the first time | |
1827 ;;; the command has been run (PREVIOUS-DIR/FILE is nil), the default directory | |
1828 ;;; is the cwd, with no default file. (\"no default file\" = nil) | |
1829 ;;; | |
1830 ;;; SOURCE-REGEXP is typically going to be something like (tea-mode) | |
1831 ;;; for T programs, (lisp-mode) for Lisp programs, (soar-mode lisp-mode) | |
1832 ;;; for Soar programs, etc. | |
1833 ;;; | |
1834 ;;; The function returns a pair: (default-directory . default-file). | |
1835 | |
1836 (defun term-source-default (previous-dir/file source-modes) | |
1837 (cond ((and buffer-file-name (memq major-mode source-modes)) | |
1838 (cons (file-name-directory buffer-file-name) | |
1839 (file-name-nondirectory buffer-file-name))) | |
1840 (previous-dir/file) | |
1841 (t | |
1842 (cons default-directory nil)))) | |
1843 | |
1844 | |
1845 ;;; (TERM-CHECK-SOURCE fname) | |
1846 ;;;============================================================================ | |
1847 ;;; Prior to loading or compiling (or otherwise processing) a file (in the CMU | |
1848 ;;; process-in-a-buffer modes), this function can be called on the filename. | |
1849 ;;; If the file is loaded into a buffer, and the buffer is modified, the user | |
1850 ;;; is queried to see if he wants to save the buffer before proceeding with | |
1851 ;;; the load or compile. | |
1852 | |
1853 (defun term-check-source (fname) | |
1854 (let ((buff (get-file-buffer fname))) | |
1855 (if (and buff | |
1856 (buffer-modified-p buff) | |
1857 (y-or-n-p (format "Save buffer %s first? " | |
1858 (buffer-name buff)))) | |
1859 ;; save BUFF. | |
1860 (let ((old-buffer (current-buffer))) | |
1861 (set-buffer buff) | |
1862 (save-buffer) | |
1863 (set-buffer old-buffer))))) | |
1864 | |
1865 | |
1866 ;;; (TERM-GET-SOURCE prompt prev-dir/file source-modes mustmatch-p) | |
1867 ;;;============================================================================ | |
1868 ;;; TERM-GET-SOURCE is used to prompt for filenames in command-interpreter | |
1869 ;;; commands that process source files (like loading or compiling a file). | |
1870 ;;; It prompts for the filename, provides a default, if there is one, | |
1871 ;;; and returns the result filename. | |
1872 ;;; | |
1873 ;;; See TERM-SOURCE-DEFAULT for more on determining defaults. | |
1874 ;;; | |
1875 ;;; PROMPT is the prompt string. PREV-DIR/FILE is the (directory . file) pair | |
1876 ;;; from the last source processing command. SOURCE-MODES is a list of major | |
1877 ;;; modes used to determine what file buffers contain source files. (These | |
1878 ;;; two arguments are used for determining defaults). If MUSTMATCH-P is true, | |
1879 ;;; then the filename reader will only accept a file that exists. | |
1880 ;;; | |
1881 ;;; A typical use: | |
1882 ;;; (interactive (term-get-source "Compile file: " prev-lisp-dir/file | |
1883 ;;; '(lisp-mode) t)) | |
1884 | |
1885 ;;; This is pretty stupid about strings. It decides we're in a string | |
1886 ;;; if there's a quote on both sides of point on the current line. | |
1887 (defun term-extract-string () | |
1888 "Returns string around POINT that starts the current line or nil." | |
1889 (save-excursion | |
1890 (let* ((point (point)) | |
1891 (bol (progn (beginning-of-line) (point))) | |
1892 (eol (progn (end-of-line) (point))) | |
1893 (start (progn (goto-char point) | |
1894 (and (search-backward "\"" bol t) | |
1895 (1+ (point))))) | |
1896 (end (progn (goto-char point) | |
1897 (and (search-forward "\"" eol t) | |
1898 (1- (point)))))) | |
1899 (and start end | |
1900 (buffer-substring start end))))) | |
1901 | |
1902 (defun term-get-source (prompt prev-dir/file source-modes mustmatch-p) | |
1903 (let* ((def (term-source-default prev-dir/file source-modes)) | |
1904 (stringfile (term-extract-string)) | |
1905 (sfile-p (and stringfile | |
1906 (condition-case () | |
1907 (file-exists-p stringfile) | |
1908 (error nil)) | |
1909 (not (file-directory-p stringfile)))) | |
1910 (defdir (if sfile-p (file-name-directory stringfile) | |
1911 (car def))) | |
1912 (deffile (if sfile-p (file-name-nondirectory stringfile) | |
1913 (cdr def))) | |
1914 (ans (read-file-name (if deffile (format "%s(default %s) " | |
1915 prompt deffile) | |
1916 prompt) | |
1917 defdir | |
1918 (concat defdir deffile) | |
1919 mustmatch-p))) | |
1920 (list (expand-file-name (substitute-in-file-name ans))))) | |
1921 | |
1922 ;;; I am somewhat divided on this string-default feature. It seems | |
1923 ;;; to violate the principle-of-least-astonishment, in that it makes | |
1924 ;;; the default harder to predict, so you actually have to look and see | |
1925 ;;; what the default really is before choosing it. This can trip you up. | |
1926 ;;; On the other hand, it can be useful, I guess. I would appreciate feedback | |
1927 ;;; on this. | |
1928 ;;; -Olin | |
1929 | |
1930 | |
1931 ;;; Simple process query facility. | |
1932 ;;; =========================================================================== | |
1933 ;;; This function is for commands that want to send a query to the process | |
1934 ;;; and show the response to the user. For example, a command to get the | |
1935 ;;; arglist for a Common Lisp function might send a "(arglist 'foo)" query | |
1936 ;;; to an inferior Common Lisp process. | |
1937 ;;; | |
1938 ;;; This simple facility just sends strings to the inferior process and pops | |
1939 ;;; up a window for the process buffer so you can see what the process | |
1940 ;;; responds with. We don't do anything fancy like try to intercept what the | |
1941 ;;; process responds with and put it in a pop-up window or on the message | |
1942 ;;; line. We just display the buffer. Low tech. Simple. Works good. | |
1943 | |
1944 ;;; Send to the inferior process PROC the string STR. Pop-up but do not select | |
1945 ;;; a window for the inferior process so that its response can be seen. | |
1946 (defun term-proc-query (proc str) | |
1947 (let* ((proc-buf (process-buffer proc)) | |
1948 (proc-mark (process-mark proc))) | |
1949 (display-buffer proc-buf) | |
1950 (set-buffer proc-buf) ; but it's not the selected *window* | |
1951 (let ((proc-win (get-buffer-window proc-buf)) | |
1952 (proc-pt (marker-position proc-mark))) | |
1953 (term-send-string proc str) ; send the query | |
1954 (accept-process-output proc) ; wait for some output | |
1955 ;; Try to position the proc window so you can see the answer. | |
1956 ;; This is bogus code. If you delete the (sit-for 0), it breaks. | |
1957 ;; I don't know why. Wizards invited to improve it. | |
1958 (if (not (pos-visible-in-window-p proc-pt proc-win)) | |
1959 (let ((opoint (window-point proc-win))) | |
1960 (set-window-point proc-win proc-mark) (sit-for 0) | |
1961 (if (not (pos-visible-in-window-p opoint proc-win)) | |
1962 (push-mark opoint) | |
1963 (set-window-point proc-win opoint))))))) | |
1964 | |
1965 ;;; Returns the current column in the current screen line. | |
1966 ;;; Note: (current-column) yields column in buffer line. | |
1967 | |
1968 (defun term-horizontal-column () | |
1969 (- (term-current-column) (term-start-line-column))) | |
1970 | |
1971 ;; Calls either vertical-motion or buffer-vertical-motion | |
1972 (defmacro term-vertical-motion (count) | |
1973 (list 'funcall 'term-vertical-motion count)) | |
1974 | |
1975 ;; An emulation of vertical-motion that is independent of having a window. | |
1976 ;; Instead, it uses the term-width variable as the logical window width. | |
1977 | |
1978 (defun buffer-vertical-motion (count) | |
1979 (cond ((= count 0) | |
1980 (move-to-column (* term-width (/ (current-column) term-width))) | |
1981 0) | |
1982 ((> count 0) | |
1983 (let ((H) | |
1984 (todo (+ count (/ (current-column) term-width)))) | |
1985 (end-of-line) | |
1986 ;; The loop interates over buffer lines; | |
1987 ;; H is the number of screen lines in the current line, i.e. | |
1988 ;; the ceiling of dividing the buffer line width by term-width. | |
1989 (while (and (<= (setq H (max (/ (+ (current-column) term-width -1) | |
1990 term-width) | |
1991 1)) | |
1992 todo) | |
1993 (not (eobp))) | |
1994 (setq todo (- todo H)) | |
1995 (forward-char) ;; Move past the ?\n | |
1996 (end-of-line)) ;; and on to the end of the next line. | |
1997 (if (and (>= todo H) (> todo 0)) | |
1998 (+ (- count todo) H -1) ;; Hit end of buffer. | |
1999 (move-to-column (* todo term-width)) | |
2000 count))) | |
2001 (t ;; (< count 0) ;; Similar algorithm, but for upward motion. | |
2002 (let ((H) | |
2003 (todo (- count))) | |
2004 (while (and (<= (setq H (max (/ (+ (current-column) term-width -1) | |
2005 term-width) | |
2006 1)) | |
2007 todo) | |
2008 (progn (beginning-of-line) | |
2009 (not (bobp)))) | |
2010 (setq todo (- todo H)) | |
2011 (backward-char)) ;; Move to end of previos line | |
2012 (if (and (>= todo H) (> todo 0)) | |
2013 (+ count todo (- 1 H)) ;; Hit beginning of buffer. | |
2014 (move-to-column (* (- H todo 1) term-width)) | |
2015 count))))) | |
2016 | |
2017 ;;; The term-start-line-column variable is used as a cache. | |
2018 (defun term-start-line-column () | |
2019 (cond (term-start-line-column) | |
2020 ((let ((save-pos (point))) | |
2021 (term-vertical-motion 0) | |
2022 (setq term-start-line-column (current-column)) | |
2023 (goto-char save-pos) | |
2024 term-start-line-column)))) | |
2025 | |
2026 ;;; Same as (current-column), but uses term-current-column as a cache. | |
2027 (defun term-current-column () | |
2028 (cond (term-current-column) | |
2029 ((setq term-current-column (current-column))))) | |
2030 | |
2031 ;;; Move DELTA column right (or left if delta < 0). | |
2032 | |
2033 (defun term-move-columns (delta) | |
2034 (setq term-current-column (+ (term-current-column) delta)) | |
2035 (move-to-column term-current-column t)) | |
2036 | |
2037 ;; Insert COUNT copies of CHAR in the default face. | |
2038 (defun term-insert-char (char count) | |
2039 (let ((old-point (point))) | |
2040 (insert-char char count) | |
2041 (put-text-property old-point (point) 'face 'default))) | |
2042 | |
2043 (defun term-current-row () | |
2044 (cond (term-current-row) | |
2045 ((setq term-current-row | |
2046 (save-restriction | |
2047 (save-excursion | |
2048 (narrow-to-region term-home-marker (point-max)) | |
2049 (- (term-vertical-motion -9999)))))))) | |
2050 | |
2051 (defun term-adjust-current-row-cache (delta) | |
2052 (if term-current-row | |
2053 (setq term-current-row (+ term-current-row delta)))) | |
2054 | |
2055 (defun term-terminal-pos () | |
2056 (save-excursion ; save-restriction | |
2057 (let ((save-col (term-current-column)) | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2058 x y) |
9509 | 2059 (term-vertical-motion 0) |
2060 (setq x (- save-col (current-column))) | |
2061 (setq y (term-vertical-motion term-height)) | |
2062 (cons x y)))) | |
2063 | |
2064 ;;; Terminal emulation | |
2065 ;;; This is the standard process filter for term buffers. | |
2066 ;;; It emulates (most of the features of) a VT100/ANSI-style terminal. | |
2067 | |
2068 (defun term-emulate-terminal (proc str) | |
2069 (let* ((previous-buffer (current-buffer)) | |
2070 (i 0) char funny count save-point save-marker old-point temp win | |
2071 (selected (selected-window)) | |
2072 (str-length (length str))) | |
2073 (unwind-protect | |
2074 (progn | |
2075 (set-buffer (process-buffer proc)) | |
2076 | |
2077 (if (marker-buffer term-pending-delete-marker) | |
2078 (progn | |
2079 ;; Delete text following term-pending-delete-marker. | |
2080 (delete-region term-pending-delete-marker (process-mark proc)) | |
2081 (set-marker term-pending-delete-marker nil))) | |
2082 | |
2083 (if (eq (window-buffer) (current-buffer)) | |
2084 (progn | |
2085 (setq term-vertical-motion (symbol-function 'vertical-motion)) | |
2086 (term-check-size proc)) | |
2087 (setq term-vertical-motion | |
2088 (symbol-function 'buffer-vertical-motion))) | |
2089 | |
2090 (setq save-marker (copy-marker (process-mark proc))) | |
2091 | |
2092 (if (/= (point) (process-mark proc)) | |
2093 (progn (setq save-point (point-marker)) | |
2094 (goto-char (process-mark proc)))) | |
2095 | |
2096 (save-restriction | |
2097 ;; If the buffer is in line mode, and there is a partial | |
2098 ;; input line, save the line (by narrowing to leave it | |
2099 ;; outside the restriction ) until we're done with output. | |
2100 (if (and (> (point-max) (process-mark proc)) | |
2101 (term-in-line-mode)) | |
2102 (narrow-to-region (point-min) (process-mark proc))) | |
2103 | |
2104 (if term-log-buffer | |
2105 (princ str term-log-buffer)) | |
2106 (cond ((eq term-terminal-state 4) ;; Have saved pending output. | |
2107 (setq str (concat term-terminal-parameter str)) | |
2108 (setq term-terminal-parameter nil) | |
2109 (setq str-length (length str)) | |
2110 (setq term-terminal-state 0))) | |
2111 | |
2112 (while (< i str-length) | |
2113 (setq char (aref str i)) | |
2114 (cond ((< term-terminal-state 2) | |
2115 ;; Look for prefix of regular chars | |
2116 (setq funny | |
2117 (string-match "[\r\n\000\007\033\t\b\032\016\017]" | |
2118 str i)) | |
2119 (if (not funny) (setq funny str-length)) | |
2120 (cond ((> funny i) | |
2121 (cond ((eq term-terminal-state 1) | |
2122 (term-move-columns 1) | |
2123 (setq term-terminal-state 0))) | |
2124 (setq count (- funny i)) | |
2125 (setq temp (- (+ (term-horizontal-column) count) | |
2126 term-width)) | |
2127 (cond ((<= temp 0)) ;; All count chars fit in line. | |
2128 ((> count temp) ;; Some chars fit. | |
2129 ;; This iteration, handle only what fits. | |
2130 (setq count (- count temp)) | |
2131 (setq funny (+ count i))) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2132 ((or (not (or term-pager-count |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2133 term-scroll-with-delete)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2134 (> (term-handle-scroll 1) 0)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2135 (term-adjust-current-row-cache 1) |
9509 | 2136 (setq count (min count term-width)) |
2137 (setq funny (+ count i)) | |
2138 (setq term-start-line-column | |
2139 term-current-column)) | |
2140 (t ;; Doing PAGER processing. | |
2141 (setq count 0 funny i) | |
2142 (setq term-current-column nil) | |
2143 (setq term-start-line-column nil))) | |
2144 (setq old-point (point)) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2145 ;; In the common case that we're at the end of |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2146 ;; the buffer, we can save a little work. |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2147 (cond ((/= (point) (point-max)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2148 (if term-insert-mode |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2149 ;; Inserting spaces, then deleting them, |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2150 ;; then inserting the actual text is |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2151 ;; inefficient, but it is simple, and |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2152 ;; the actual overhead is miniscule. |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2153 (term-insert-spaces count)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2154 (term-move-columns count) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2155 (delete-region old-point (point))) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2156 (t (setq term-current-column (+ (term-current-column) count)))) |
9509 | 2157 (insert (substring str i funny)) |
2158 (put-text-property old-point (point) | |
2159 'face term-current-face) | |
2160 ;; If the last char was written in last column, | |
2161 ;; back up one column, but remember we did so. | |
2162 ;; Thus we emulate xterm/vt100-style line-wrapping. | |
2163 (cond ((eq temp 0) | |
2164 (term-move-columns -1) | |
2165 (setq term-terminal-state 1))) | |
2166 (setq i (1- funny))) | |
2167 ((and (setq term-terminal-state 0) | |
2168 (eq char ?\^I)) ; TAB | |
2169 ;; FIXME: Does not handle line wrap! | |
2170 (setq count (term-current-column)) | |
2171 (setq count (+ count 8 (- (mod count 8)))) | |
2172 (if (< (move-to-column count nil) count) | |
2173 (term-insert-char char 1)) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2174 (setq term-current-column count)) |
9509 | 2175 ((eq char ?\r) |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2176 ;; Optimize CRLF at end of buffer: |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2177 (cond ((and (< (setq temp (1+ i)) str-length) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2178 (eq (aref str temp) ?\n) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2179 (= (point) (point-max)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2180 (not (or term-pager-count |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2181 term-kill-echo-list |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2182 term-scroll-with-delete))) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2183 (insert ?\n) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2184 (term-adjust-current-row-cache 1) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2185 (setq term-start-line-column 0) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2186 (setq term-current-column 0) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2187 (setq i temp)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2188 (t ;; Not followed by LF or can't optimize: |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2189 (term-vertical-motion 0) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2190 (setq term-current-column 0)))) |
9509 | 2191 ((eq char ?\n) |
2192 (if (not (and term-kill-echo-list | |
2193 (term-check-kill-echo-list))) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2194 (term-down 1 t))) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2195 ((eq char ?\b) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2196 (term-move-columns -1)) |
9509 | 2197 ((eq char ?\033) ; Escape |
2198 (setq term-terminal-state 2)) | |
2199 ((eq char 0)) ; NUL: Do nothing | |
2200 ((eq char ?\016)) ; Shift Out - ignored | |
2201 ((eq char ?\017)) ; Shift In - ignored | |
2202 ((eq char ?\^G) | |
2203 (beep t)) ; Bell | |
2204 ((eq char ?\032) | |
2205 (let ((end (string-match "\n" str i))) | |
2206 (if end | |
2207 (progn (funcall term-command-hook | |
2208 (substring str (1+ i) (1- end))) | |
2209 (setq i end)) | |
2210 (setq term-terminal-parameter | |
2211 (substring str i)) | |
2212 (setq term-terminal-state 4) | |
2213 (setq i str-length)))) | |
2214 (t ; insert char FIXME: Should never happen | |
2215 (term-move-columns 1) | |
2216 (backward-delete-char 1) | |
2217 (insert char)))) | |
2218 ((eq term-terminal-state 2) ; Seen Esc | |
2219 (cond ((eq char ?\133) ;; ?\133 = ?[ | |
2220 (make-local-variable 'term-terminal-parameter) | |
2221 (make-local-variable 'term-terminal-previous-parameter) | |
2222 (setq term-terminal-parameter 0) | |
2223 (setq term-terminal-previous-parameter 0) | |
2224 (setq term-terminal-state 3)) | |
2225 ((eq char ?D) ;; scroll forward | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2226 (term-handle-deferred-scroll) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2227 (term-down 1 t) |
9509 | 2228 (setq term-terminal-state 0)) |
2229 ((eq char ?M) ;; scroll reversed | |
2230 (term-insert-lines 1) | |
2231 (setq term-terminal-state 0)) | |
2232 ((eq char ?7) ;; Save cursor | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2233 (term-handle-deferred-scroll) |
9509 | 2234 (setq term-saved-cursor |
2235 (cons (term-current-row) | |
2236 (term-horizontal-column))) | |
2237 (setq term-terminal-state 0)) | |
2238 ((eq char ?8) ;; Restore cursor | |
2239 (if term-saved-cursor | |
2240 (term-goto (car term-saved-cursor) | |
2241 (cdr term-saved-cursor))) | |
2242 (setq term-terminal-state 0)) | |
2243 ((setq term-terminal-state 0)))) | |
2244 ((eq term-terminal-state 3) ; Seen Esc [ | |
2245 (cond ((and (>= char ?0) (<= char ?9)) | |
2246 (setq term-terminal-parameter | |
2247 (+ (* 10 term-terminal-parameter) (- char ?0)))) | |
2248 ((eq char ?\073 ) ; ?; | |
2249 (setq term-terminal-previous-parameter | |
2250 term-terminal-parameter) | |
2251 (setq term-terminal-parameter 0)) | |
2252 ((eq char ??)) ; Ignore ? | |
2253 (t | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2254 (term-handle-ansi-escape proc char) |
9509 | 2255 (setq term-terminal-state 0))))) |
2256 (if (term-handling-pager) | |
2257 ;; Finish stuff to get ready to handle PAGER. | |
2258 (progn | |
2259 (if (> (% (current-column) term-width) 0) | |
2260 (setq term-terminal-parameter | |
2261 (substring str i)) | |
2262 ;; We're at column 0. Goto end of buffer; to compensate, | |
2263 ;; prepend a ?\r for later. This looks more consistent. | |
2264 (if (zerop i) | |
2265 (setq term-terminal-parameter | |
2266 (concat "\r" (substring str i))) | |
2267 (setq term-terminal-parameter (substring str (1- i))) | |
2268 (aset term-terminal-parameter 0 ?\r)) | |
2269 (goto-char (point-max))) | |
2270 (setq term-terminal-state 4) | |
2271 (make-local-variable 'term-pager-old-filter) | |
2272 (setq term-pager-old-filter (process-filter proc)) | |
2273 (set-process-filter proc term-pager-filter) | |
2274 (setq i str-length))) | |
2275 (setq i (1+ i)))) | |
2276 | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2277 (if (>= (term-current-row) term-height) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2278 (term-handle-deferred-scroll)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2279 |
9509 | 2280 (set-marker (process-mark proc) (point)) |
2281 (if save-point | |
2282 (progn (goto-char save-point) | |
2283 (set-marker save-point nil))) | |
2284 | |
2285 ;; Check for a pending filename-and-line number to display. | |
2286 ;; We do this before scrolling, because we might create a new window. | |
2287 (if (and term-pending-frame | |
2288 (eq (window-buffer selected) (current-buffer))) | |
2289 (progn (term-display-line (car term-pending-frame) | |
2290 (cdr term-pending-frame)) | |
2291 (setq term-pending-frame nil) | |
2292 ;; We have created a new window, so check the window size. | |
2293 (term-check-size proc))) | |
2294 | |
2295 ;; Scroll each window displaying the buffer but (by default) | |
2296 ;; only if the point matches the process-mark we started with. | |
2297 (setq win selected) | |
2298 (while (progn | |
2299 (setq win (next-window win nil t)) | |
2300 (if (eq (window-buffer win) (process-buffer proc)) | |
2301 (let ((scroll term-scroll-to-bottom-on-output)) | |
2302 (select-window win) | |
2303 (if (or (= (point) save-marker) | |
2304 (eq scroll t) (eq scroll 'all) | |
2305 ;; Maybe user wants point to jump to the end. | |
2306 (and (eq selected win) | |
2307 (or (eq scroll 'this) (not save-point))) | |
2308 (and (eq scroll 'others) | |
2309 (not (eq selected win)))) | |
2310 (progn | |
2311 (goto-char term-home-marker) | |
2312 (recenter 0) | |
2313 (goto-char (process-mark proc)) | |
2314 (if (not (pos-visible-in-window-p (point) win)) | |
2315 (recenter -1)))) | |
2316 ;; Optionally scroll so that the text | |
2317 ;; ends at the bottom of the window. | |
2318 (if (and term-scroll-show-maximum-output | |
2319 (>= (point) (process-mark proc))) | |
2320 (save-excursion | |
2321 (goto-char (point-max)) | |
2322 (recenter -1))))) | |
2323 (not (eq win selected)))) | |
2324 | |
2325 (set-marker save-marker nil)) | |
2326 ;; unwind-protect cleanup-forms follow: | |
2327 (set-buffer previous-buffer) | |
2328 (select-window selected)))) | |
2329 | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2330 (defun term-handle-deferred-scroll () |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2331 (let ((count (- (term-current-row) term-height))) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2332 (if (> count 0) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2333 (save-excursion |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2334 (goto-char term-home-marker) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2335 (term-vertical-motion count) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2336 (set-marker term-home-marker (point)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2337 (setq term-current-row (1- term-height)))))) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2338 |
9509 | 2339 ;;; Handle a character assuming (eq terminal-state 2) - |
2340 ;;; i.e. we have previousely seen Escape followed by ?[. | |
2341 | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2342 (defun term-handle-ansi-escape (proc char) |
9509 | 2343 (cond |
2344 ((eq char ?H) ; cursor motion | |
2345 (if (<= term-terminal-parameter 0) | |
2346 (setq term-terminal-parameter 1)) | |
2347 (if (<= term-terminal-previous-parameter 0) | |
2348 (setq term-terminal-previous-parameter 1)) | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2349 (if (> term-terminal-previous-parameter term-height) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2350 (setq term-terminal-previous-parameter term-height)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2351 (if (> term-terminal-parameter term-width) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2352 (setq term-terminal-parameter term-width)) |
9509 | 2353 (term-goto |
2354 (1- term-terminal-previous-parameter) | |
2355 (1- term-terminal-parameter))) | |
2356 ;; \E[A - cursor up | |
2357 ((eq char ?A) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2358 (term-handle-deferred-scroll) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2359 (term-down (- (max 1 term-terminal-parameter)) t)) |
9509 | 2360 ;; \E[B - cursor down |
2361 ((eq char ?B) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2362 (term-down (max 1 term-terminal-parameter) t)) |
9509 | 2363 ;; \E[C - cursor right |
2364 ((eq char ?C) | |
2365 (term-move-columns (max 1 term-terminal-parameter))) | |
2366 ;; \E[D - cursor left | |
2367 ((eq char ?D) | |
2368 (term-move-columns (- (max 1 term-terminal-parameter)))) | |
2369 ;; \E[J - clear to end of screen | |
2370 ((eq char ?J) | |
2371 (term-erase-in-display term-terminal-parameter)) | |
2372 ;; \E[K - clear to end of line | |
2373 ((eq char ?K) | |
2374 (term-erase-in-line term-terminal-parameter)) | |
2375 ;; \E[L - insert lines | |
2376 ((eq char ?L) | |
2377 (term-insert-lines (max 1 term-terminal-parameter))) | |
2378 ;; \E[M - delete lines | |
2379 ((eq char ?M) | |
2380 (term-delete-lines (max 1 term-terminal-parameter))) | |
2381 ;; \E[P - delete chars | |
2382 ((eq char ?P) | |
2383 (term-delete-chars (max 1 term-terminal-parameter))) | |
2384 ;; \E[@ - insert spaces | |
2385 ((eq char ?@) | |
2386 (term-insert-spaces (max 1 term-terminal-parameter))) | |
2387 ;; \E[?h - DEC Private Mode Set | |
2388 ((eq char ?h) | |
2389 (cond ((eq term-terminal-parameter 4) | |
2390 (setq term-insert-mode t)) | |
2391 ((eq term-terminal-parameter 47) | |
2392 (term-switch-to-alternate-sub-buffer t)))) | |
10044 | 2393 ;; \E[?l - DEC Private Mode Reset |
9509 | 2394 ((eq char ?l) |
2395 (cond ((eq term-terminal-parameter 4) | |
2396 (setq term-insert-mode nil)) | |
2397 ((eq term-terminal-parameter 47) | |
2398 (term-switch-to-alternate-sub-buffer nil)))) | |
2399 ;; \E[m - Set/reset standard mode | |
2400 ((eq char ?m) | |
2401 (cond ((eq term-terminal-parameter 7) | |
2402 (setq term-current-face 'highlight)) | |
2403 ((eq term-terminal-parameter 4) | |
2404 (setq term-current-face 'term-underline-face)) | |
2405 ((eq term-terminal-parameter 1) | |
2406 (setq term-current-face 'bold)) | |
2407 (t (setq term-current-face 'default)))) | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2408 ;; \E[6n - Report cursor position |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2409 ((eq char ?n) |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2410 (term-handle-deferred-scroll) |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2411 (process-send-string proc |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2412 (format "\e[%s;%sR" |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2413 (1+ (term-current-row)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2414 (1+ (term-horizontal-column))))) |
9509 | 2415 ;; \E[r - Set scrolling region |
2416 ((eq char ?r) | |
2417 (term-scroll-region | |
2418 (1- term-terminal-previous-parameter) | |
2419 term-terminal-parameter)) | |
2420 (t))) | |
2421 | |
2422 (defun term-scroll-region (top bottom) | |
2423 "Set scrolling region. | |
2424 TOP is the top-most line (inclusive) of the new scrolling region, | |
2425 while BOTTOM is the line folling the new scrolling region (e.g. exclusive). | |
2426 The top-most line is line 0." | |
2427 (setq term-scroll-start | |
2428 (if (or (< top 0) (>= top term-height)) | |
2429 0 | |
2430 top)) | |
2431 (setq term-scroll-end | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2432 (if (or (<= bottom term-scroll-start) (> bottom term-height)) |
9509 | 2433 term-height |
2434 bottom)) | |
2435 (setq term-scroll-with-delete | |
2436 (or (term-using-alternate-sub-buffer) | |
2437 (not (and (= term-scroll-start 0) | |
2438 (= term-scroll-end term-height)))))) | |
2439 | |
2440 (defun term-switch-to-alternate-sub-buffer (set) | |
2441 ;; If asked to switch to (from) the alternate sub-buffer, and already (not) | |
2442 ;; using it, do nothing. This test is needed for some programs (including | |
2443 ;; emacs) that emit the ti termcap string twice, for unknown reason. | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2444 (term-handle-deferred-scroll) |
9509 | 2445 (if (eq set (not (term-using-alternate-sub-buffer))) |
2446 (let ((row (term-current-row)) | |
2447 (col (term-horizontal-column))) | |
2448 (cond (set | |
2449 (goto-char (point-max)) | |
2450 (if (not (eq (preceding-char) ?\n)) | |
2451 (term-insert-char ?\n 1)) | |
2452 (setq term-scroll-with-delete t) | |
2453 (setq term-saved-home-marker (copy-marker term-home-marker)) | |
2454 (set-marker term-home-marker (point))) | |
2455 (t | |
2456 (setq term-scroll-with-delete | |
2457 (not (and (= term-scroll-start 0) | |
2458 (= term-scroll-end term-height)))) | |
2459 (set-marker term-home-marker term-saved-home-marker) | |
2460 (set-marker term-saved-home-marker nil) | |
2461 (setq term-saved-home-marker nil) | |
2462 (goto-char term-home-marker))) | |
2463 (setq term-current-column nil) | |
2464 (setq term-current-row 0) | |
2465 (term-goto row col)))) | |
2466 | |
2467 ;; Default value for the symbol term-command-hook. | |
2468 | |
2469 (defun term-command-hook (string) | |
2470 (cond ((= (aref string 0) ?\032) | |
2471 ;; gdb (when invoked with -fullname) prints: | |
2472 ;; \032\032FULLFILENAME:LINENUMBER:CHARPOS:BEG_OR_MIDDLE:PC\n | |
2473 (let* ((first-colon (string-match ":" string 1)) | |
2474 (second-colon | |
2475 (string-match ":" string (1+ first-colon))) | |
2476 (filename (substring string 1 first-colon)) | |
2477 (fileline (string-to-int | |
2478 (substring string (1+ first-colon) second-colon)))) | |
2479 (setq term-pending-frame (cons filename fileline)))) | |
2480 ((= (aref string 0) ?/) | |
2481 (cd (substring string 1))) | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2482 ;; Allowing the inferior to call functions in emacs is |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2483 ;; probably too big a security hole. |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2484 ;; ((= (aref string 0) ?!) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2485 ;; (eval (car (read-from-string string 1)))) |
9509 | 2486 (t)));; Otherwise ignore it |
2487 | |
2488 ;; Make sure the file named TRUE-FILE is in a buffer that appears on the screen | |
2489 ;; and that its line LINE is visible. | |
2490 ;; Put the overlay-arrow on the line LINE in that buffer. | |
2491 ;; This is mainly used by gdb. | |
2492 | |
2493 (defun term-display-line (true-file line) | |
2494 (term-display-buffer-line (find-file-noselect true-file) line)) | |
2495 | |
2496 (defun term-display-buffer-line (buffer line) | |
2497 (let* ((window (display-buffer buffer t)) | |
2498 (pos)) | |
2499 (save-excursion | |
2500 (set-buffer buffer) | |
2501 (save-restriction | |
2502 (widen) | |
2503 (goto-line line) | |
2504 (setq pos (point)) | |
2505 (setq overlay-arrow-string "=>") | |
2506 (or overlay-arrow-position | |
2507 (setq overlay-arrow-position (make-marker))) | |
2508 (set-marker overlay-arrow-position (point) (current-buffer))) | |
2509 (cond ((or (< pos (point-min)) (> pos (point-max))) | |
2510 (widen) | |
2511 (goto-char pos)))) | |
2512 (set-window-point window overlay-arrow-position))) | |
2513 | |
2514 ;;; The buffer-local marker term-home-marker defines the "home position" | |
2515 ;;; (in terms of cursor motion). However, we move the term-home-marker | |
2516 ;;; "down" as needed so that is no more that a window-full above (point-max). | |
2517 | |
2518 (defun term-goto-home () | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2519 (term-handle-deferred-scroll) |
9509 | 2520 (goto-char term-home-marker) |
2521 (setq term-current-row 0) | |
2522 (setq term-current-column (current-column)) | |
2523 (setq term-start-line-column term-current-column)) | |
2524 | |
2525 (defun term-goto (row col) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2526 (term-handle-deferred-scroll) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2527 (cond ((and term-current-row (>= row term-current-row)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2528 ;; I assume this is a worthwhile optimization. |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2529 (term-vertical-motion 0) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2530 (setq term-current-column term-start-line-column) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2531 (setq row (- row term-current-row))) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2532 (t |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2533 (term-goto-home))) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2534 (term-down row) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2535 (term-move-columns col)) |
9509 | 2536 |
2537 ; The page is full, so enter "pager" mode, and wait for input. | |
2538 | |
2539 (defun term-process-pager () | |
2540 (if (not term-pager-break-map) | |
2541 (let* ((map (make-keymap)) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2542 (i 0) tmp) |
9509 | 2543 ; (while (< i 128) |
2544 ; (define-key map (make-string 1 i) 'term-send-raw) | |
2545 ; (setq i (1+ i))) | |
2546 (define-key map "\e" | |
2547 (lookup-key (current-global-map) "\e")) | |
2548 (define-key map "\C-x" | |
2549 (lookup-key (current-global-map) "\C-x")) | |
2550 (define-key map "\C-u" | |
2551 (lookup-key (current-global-map) "\C-u")) | |
2552 (define-key map " " 'term-pager-page) | |
2553 (define-key map "\r" 'term-pager-line) | |
2554 (define-key map "?" 'term-pager-help) | |
2555 (define-key map "h" 'term-pager-help) | |
2556 (define-key map "b" 'term-pager-back-page) | |
2557 (define-key map "\177" 'term-pager-back-line) | |
2558 (define-key map "q" 'term-pager-discard) | |
2559 (define-key map "D" 'term-pager-disable) | |
2560 (define-key map "<" 'term-pager-bob) | |
2561 (define-key map ">" 'term-pager-eob) | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2562 |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2563 ;; Add menu bar. |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2564 (term-if-emacs19 |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2565 (term-ifnot-xemacs |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2566 (define-key map [menu-bar terminal] term-terminal-menu) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2567 (define-key map [menu-bar signals] term-signals-menu) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2568 (setq tmp (make-sparse-keymap "More pages?")) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2569 (define-key tmp [help] '("Help" . term-pager-help)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2570 (define-key tmp [disable] |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2571 '("Diable paging" . term-fake-pager-disable)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2572 (define-key tmp [discard] |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2573 '("Discard remaining output" . term-pager-discard)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2574 (define-key tmp [eob] '("Goto to end" . term-pager-eob)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2575 (define-key tmp [bob] '("Goto to beginning" . term-pager-bob)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2576 (define-key tmp [line] '("1 line forwards" . term-pager-line)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2577 (define-key tmp [bline] '("1 line backwards" . term-pager-back-line)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2578 (define-key tmp [back] '("1 page backwards" . term-pager-back-page)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2579 (define-key tmp [page] '("1 page forwards" . term-pager-page)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2580 (define-key map [menu-bar page] (cons "More pages?" tmp)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2581 )) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2582 |
9509 | 2583 (setq term-pager-break-map map))) |
2584 ; (let ((process (get-buffer-process (current-buffer)))) | |
2585 ; (stop-process process)) | |
2586 (setq term-pager-old-local-map (current-local-map)) | |
2587 (use-local-map term-pager-break-map) | |
2588 (make-local-variable 'term-old-mode-line-format) | |
2589 (setq term-old-mode-line-format mode-line-format) | |
2590 (setq mode-line-format | |
2591 (list "-- **MORE** " | |
2592 mode-line-buffer-identification | |
2593 " [Type ? for help] " | |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2594 "%-")) |
11570
f210b0ee984a
(term-update-mode-line, term-process-pager): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
11033
diff
changeset
|
2595 (force-mode-line-update)) |
9509 | 2596 |
2597 (defun term-pager-line (lines) | |
2598 (interactive "p") | |
2599 (let* ((moved (vertical-motion (1+ lines))) | |
2600 (deficit (- lines moved))) | |
2601 (if (> moved lines) | |
2602 (backward-char)) | |
2603 (cond ((<= deficit 0) ;; OK, had enough in the buffer for request. | |
2604 (recenter (1- term-height))) | |
2605 ((term-pager-continue deficit))))) | |
2606 | |
2607 (defun term-pager-page (arg) | |
2608 "Proceed past the **MORE** break, allowing the next page of output to appear" | |
2609 (interactive "p") | |
2610 (term-pager-line (* arg term-height))) | |
2611 | |
2612 ; Pager mode command to go to beginning of buffer | |
2613 (defun term-pager-bob () | |
2614 (interactive) | |
2615 (goto-char (point-min)) | |
2616 (if (= (vertical-motion term-height) term-height) | |
2617 (backward-char)) | |
2618 (recenter (1- term-height))) | |
2619 | |
2620 ; pager mode command to go to end of buffer | |
2621 (defun term-pager-eob () | |
2622 (interactive) | |
2623 (goto-char term-home-marker) | |
2624 (recenter 0) | |
2625 (goto-char (process-mark (get-buffer-process (current-buffer))))) | |
2626 | |
2627 (defun term-pager-back-line (lines) | |
2628 (interactive "p") | |
2629 (vertical-motion (- 1 lines)) | |
2630 (if (not (bobp)) | |
2631 (backward-char) | |
2632 (beep) | |
2633 ;; Move cursor to end of window. | |
2634 (vertical-motion term-height) | |
2635 (backward-char)) | |
2636 (recenter (1- term-height))) | |
2637 | |
2638 (defun term-pager-back-page (arg) | |
2639 (interactive "p") | |
2640 (term-pager-back-line (* arg term-height))) | |
2641 | |
2642 (defun term-pager-discard () | |
2643 (interactive) | |
2644 (setq term-terminal-parameter "") | |
2645 (interrupt-process nil t) | |
2646 (term-pager-continue term-height)) | |
2647 | |
2648 ; Disable pager processing. | |
2649 ; Only callable while in pager mode. (Contrast term-disable-pager.) | |
2650 (defun term-pager-disable () | |
2651 (interactive) | |
2652 (if (term-handling-pager) | |
2653 (term-pager-continue nil) | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2654 (setq term-pager-count nil)) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2655 (term-update-mode-line)) |
9509 | 2656 |
2657 ; Enable pager processing. | |
2658 (defun term-pager-enable () | |
2659 (interactive) | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2660 (or (term-pager-enabled) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2661 (setq term-pager-count 0)) ;; Or maybe set to (term-current-row) ?? |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2662 (term-update-mode-line)) |
9509 | 2663 |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2664 (defun term-pager-toggle () |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2665 (interactive) |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2666 (if (term-pager-enabled) (term-pager-disable) (term-pager-enable))) |
10515
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2667 |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2668 (term-ifnot-xemacs |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2669 (defalias 'term-fake-pager-enable 'term-pager-toggle) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2670 (defalias 'term-fake-pager-disable 'term-pager-toggle) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2671 (put 'term-char-mode 'menu-enable '(term-in-line-mode)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2672 (put 'term-line-mode 'menu-enable '(term-in-char-mode)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2673 (put 'term-fake-pager-enable 'menu-enable '(not term-pager-count)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2674 (put 'term-fake-pager-disable 'menu-enable 'term-pager-count)) |
d32348ef2b69
(term-version): Increased to 0.94.
Richard M. Stallman <rms@gnu.org>
parents:
10044
diff
changeset
|
2675 |
9509 | 2676 (defun term-pager-help () |
2677 "Provide help on commands available in a terminal-emulator **MORE** break" | |
2678 (interactive) | |
2679 (message "Terminal-emulator pager break help...") | |
2680 (sit-for 0) | |
2681 (with-electric-help | |
2682 (function (lambda () | |
2683 (princ (substitute-command-keys | |
2684 "\\<term-pager-break-map>\ | |
2685 Terminal-emulator MORE break.\n\ | |
2686 Type one of the following keys:\n\n\ | |
2687 \\[term-pager-page]\t\tMove forward one page.\n\ | |
2688 \\[term-pager-line]\t\tMove forward one line.\n\ | |
2689 \\[universal-argument] N \\[term-pager-page]\tMove N pages forward.\n\ | |
2690 \\[universal-argument] N \\[term-pager-line]\tMove N lines forward.\n\ | |
2691 \\[universal-argument] N \\[term-pager-back-line]\tMove N lines back.\n\ | |
2692 \\[universal-argument] N \\[term-pager-back-page]\t\tMove N pages back.\n\ | |
2693 \\[term-pager-bob]\t\tMove to the beginning of the buffer.\n\ | |
2694 \\[term-pager-eob]\t\tMove to the end of the buffer.\n\ | |
2695 \\[term-pager-discard]\t\tKill pending output and kill process.\n\ | |
2696 \\[term-pager-disable]\t\tDisable PAGER handling.\n\n\ | |
2697 \\{term-pager-break-map}\n\ | |
2698 Any other key is passed through to the program | |
2699 running under the terminal emulator and disables pager processing until | |
2700 all pending output has been dealt with.")) | |
2701 nil)))) | |
2702 | |
2703 (defun term-pager-continue (new-count) | |
2704 (let ((process (get-buffer-process (current-buffer)))) | |
2705 (use-local-map term-pager-old-local-map) | |
2706 (setq term-pager-old-local-map nil) | |
2707 (setq mode-line-format term-old-mode-line-format) | |
11570
f210b0ee984a
(term-update-mode-line, term-process-pager): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
11033
diff
changeset
|
2708 (force-mode-line-update) |
9509 | 2709 (setq term-pager-count new-count) |
2710 (set-process-filter process term-pager-old-filter) | |
2711 (funcall term-pager-old-filter process "") | |
2712 (continue-process process))) | |
2713 | |
2714 ;; Make sure there are DOWN blank lines below the current one. | |
2715 ;; Return 0 if we're unable (because of PAGER handling), else return DOWN. | |
2716 | |
2717 (defun term-handle-scroll (down) | |
2718 (let ((scroll-needed | |
2719 (- (+ (term-current-row) down 1) term-scroll-end))) | |
2720 (if (> scroll-needed 0) | |
2721 (let ((save-point (copy-marker (point))) (save-top)) | |
2722 (goto-char term-home-marker) | |
2723 (cond (term-scroll-with-delete | |
2724 ;; delete scroll-needed lines at term-scroll-start | |
2725 (term-vertical-motion term-scroll-start) | |
2726 (setq save-top (point)) | |
2727 (term-vertical-motion scroll-needed) | |
2728 (delete-region save-top (point)) | |
2729 (goto-char save-point) | |
2730 (term-vertical-motion down) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2731 (term-adjust-current-row-cache (- scroll-needed)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2732 (setq term-current-column nil) |
9509 | 2733 (term-insert-char ?\n scroll-needed)) |
2734 ((and (numberp term-pager-count) | |
2735 (< (setq term-pager-count (- term-pager-count down)) | |
2736 0)) | |
2737 (setq down 0) | |
2738 (term-process-pager)) | |
2739 (t | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2740 (term-adjust-current-row-cache (- scroll-needed)) |
9509 | 2741 (term-vertical-motion scroll-needed) |
2742 (set-marker term-home-marker (point)))) | |
2743 (goto-char save-point) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2744 (set-marker save-point nil)))) |
9509 | 2745 down) |
2746 | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2747 (defun term-down (down &optional check-for-scroll) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2748 "Move down DOWN screen lines vertically." |
9509 | 2749 (let ((start-column (term-horizontal-column))) |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2750 (if (and check-for-scroll (or term-scroll-with-delete term-pager-count)) |
9509 | 2751 (setq down (term-handle-scroll down))) |
2752 (term-adjust-current-row-cache down) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2753 (if (/= (point) (point-max)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2754 (setq down (- down (term-vertical-motion down)))) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2755 ;; Extend buffer with extra blank lines if needed. |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2756 (cond ((> down 0) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2757 (term-insert-char ?\n down) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2758 (setq term-current-column 0) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2759 (setq term-start-line-column 0)) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2760 (t |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2761 (setq term-current-column nil) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2762 (setq term-start-line-column (current-column)))) |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2763 (if start-column |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2764 (term-move-columns start-column)))) |
9509 | 2765 |
2766 ;; Assuming point is at the beginning of a screen line, | |
2767 ;; if the line above point wraps around, add a ?\n to undo the wrapping. | |
2768 ;; FIXME: Probably should be called more than it is. | |
2769 (defun term-unwrap-line () | |
2770 (if (not (bolp)) (insert-before-markers ?\n))) | |
2771 | |
2772 (defun term-erase-in-line (kind) | |
2773 (if (> kind 1) ;; erase left of point | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2774 (let ((cols (term-horizontal-column)) (saved-point (point))) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2775 (term-vertical-motion 0) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2776 (delete-region (point) saved-point) |
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2777 (term-insert-char ?\n cols))) |
9509 | 2778 (if (not (eq kind 1)) ;; erase right of point |
2779 (let ((saved-point (point)) | |
2780 (wrapped (and (zerop (term-horizontal-column)) | |
2781 (not (zerop (term-current-column)))))) | |
2782 (term-vertical-motion 1) | |
2783 (delete-region saved-point (point)) | |
2784 ;; wrapped is true if we're at the beginning of screen line, | |
2785 ;; but not a buffer line. If we delete the current screen line | |
2786 ;; that will make the previous line no longer wrap, and (because | |
2787 ;; of the way emacs display works) point will be at the end of | |
2788 ;; the previous screen line rather then the beginning of the | |
2789 ;; current one. To avoid that, we make sure that current line | |
2790 ;; contain a space, to force the previous line to continue to wrap. | |
2791 ;; We could do this always, but it seems preferable to not add the | |
2792 ;; extra space when wrapped is false. | |
2793 (if wrapped | |
2794 (insert ? )) | |
2795 (insert ?\n) | |
2796 (put-text-property saved-point (point) 'face 'default) | |
2797 (goto-char saved-point)))) | |
2798 | |
2799 (defun term-erase-in-display (kind) | |
2800 "Erases (that is blanks out) part of the window. | |
2801 If KIND is 0, erase from (point) to (point-max); | |
2802 if KIND is 1, erase from home to point; else erase from home to point-max. | |
2803 Should only be called when point is at the start of a screen line." | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2804 (term-handle-deferred-scroll) |
9509 | 2805 (cond ((eq term-terminal-parameter 0) |
2806 (delete-region (point) (point-max)) | |
2807 (term-unwrap-line)) | |
2808 ((let ((row (term-current-row)) | |
2809 (col (term-horizontal-column)) | |
2810 (start-region term-home-marker) | |
2811 (end-region (if (eq kind 1) (point) (point-max)))) | |
2812 (delete-region start-region end-region) | |
2813 (term-unwrap-line) | |
2814 (if (eq kind 1) | |
10671
fe4d986bef9d
Version 0.95. Numerous small fixes. See ChangeLog.
Per Bothner <bothner@cygnus.com>
parents:
10515
diff
changeset
|
2815 (term-insert-char ?\n row)) |
9509 | 2816 (setq term-current-column nil) |
2817 (setq term-current-row nil) | |
2818 (term-goto row col))))) | |
2819 | |
2820 (defun term-delete-chars (count) | |
2821 (let ((save-point (point))) | |
2822 (term-vertical-motion 1) | |
2823 (term-unwrap-line) | |
2824 (goto-char save-point) | |
2825 (move-to-column (+ (term-current-column) count) t) | |
2826 (delete-region save-point (point)))) | |
2827 | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2828 ;;; Insert COUNT spaces after point, but do not change any of |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2829 ;;; following screen lines. Hence we may have to delete characters |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2830 ;;; at teh end of this screen line to make room. |
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2831 |
9509 | 2832 (defun term-insert-spaces (count) |
2833 (let ((save-point (point)) (save-eol)) | |
2834 (term-vertical-motion 1) | |
2835 (if (bolp) | |
2836 (backward-char)) | |
2837 (setq save-eol (point)) | |
2838 (move-to-column (+ (term-start-line-column) (- term-width count)) t) | |
2839 (if (> save-eol (point)) | |
2840 (delete-region (point) save-eol)) | |
2841 (goto-char save-point) | |
2842 (term-insert-char ? count) | |
2843 (goto-char save-point))) | |
2844 | |
2845 (defun term-delete-lines (lines) | |
2846 (let ((start (point)) | |
2847 (save-current-column term-current-column) | |
2848 (save-start-line-column term-start-line-column) | |
2849 (save-current-row (term-current-row))) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2850 (term-down lines) |
9509 | 2851 (delete-region start (point)) |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2852 (term-down (- term-scroll-end save-current-row lines)) |
9509 | 2853 (term-insert-char ?\n lines) |
2854 (setq term-current-column save-current-column) | |
2855 (setq term-start-line-column save-start-line-column) | |
2856 (setq term-current-row save-current-row) | |
2857 (goto-char start))) | |
2858 | |
2859 (defun term-insert-lines (lines) | |
2860 (let ((start (point)) | |
2861 (start-deleted) | |
2862 (save-current-column term-current-column) | |
2863 (save-start-line-column term-start-line-column) | |
2864 (save-current-row (term-current-row))) | |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2865 (term-down (- term-scroll-end save-current-row lines)) |
9509 | 2866 (setq start-deleted (point)) |
12229
697c01e75adc
Various optimizations. The main one is to optimize for
Richard M. Stallman <rms@gnu.org>
parents:
11570
diff
changeset
|
2867 (term-down lines) |
9509 | 2868 (delete-region start-deleted (point)) |
2869 (goto-char start) | |
2870 (setq term-current-column save-current-column) | |
2871 (setq term-start-line-column save-start-line-column) | |
2872 (setq term-current-row save-current-row) | |
2873 (term-insert-char ?\n lines) | |
2874 (goto-char start))) | |
2875 | |
2876 (defun term-set-output-log (name) | |
2877 "Record raw inferior process output in a buffer." | |
2878 (interactive (list (if term-log-buffer | |
2879 nil | |
2880 (read-buffer "Record output in buffer: " | |
2881 (format "%s output-log" | |
2882 (buffer-name (current-buffer))) | |
2883 nil)))) | |
2884 (if (or (null name) (equal name "")) | |
2885 (progn (setq term-log-buffer nil) | |
2886 (message "Output logging off.")) | |
2887 (if (get-buffer name) | |
2888 nil | |
2889 (save-excursion | |
2890 (set-buffer (get-buffer-create name)) | |
2891 (fundamental-mode) | |
2892 (buffer-disable-undo (current-buffer)) | |
2893 (erase-buffer))) | |
2894 (setq term-log-buffer (get-buffer name)) | |
2895 (message "Recording terminal emulator output into buffer \"%s\"" | |
2896 (buffer-name term-log-buffer)))) | |
2897 | |
2898 (defun term-stop-photo () | |
2899 "Discontinue raw inferior process logging." | |
2900 (interactive) | |
2901 (term-set-output-log nil)) | |
2902 | |
2903 (defun term-show-maximum-output () | |
2904 "Put the end of the buffer at the bottom of the window." | |
2905 (interactive) | |
2906 (goto-char (point-max)) | |
2907 (recenter -1)) | |
2908 | |
2909 ;;; Do the user's customisation... | |
2910 | |
2911 (defvar term-load-hook nil | |
2912 "This hook is run when term is loaded in. | |
2913 This is a good place to put keybindings.") | |
2914 | |
2915 (run-hooks 'term-load-hook) | |
2916 | |
2917 | |
2918 ;;; Filename/command/history completion in a buffer | |
2919 ;;; =========================================================================== | |
2920 ;;; Useful completion functions, courtesy of the Ergo group. | |
2921 | |
2922 ;;; Six commands: | |
2923 ;;; term-dynamic-complete Complete or expand command, filename, | |
2924 ;;; history at point. | |
2925 ;;; term-dynamic-complete-filename Complete filename at point. | |
2926 ;;; term-dynamic-list-filename-completions List completions in help buffer. | |
2927 ;;; term-replace-by-expanded-filename Expand and complete filename at point; | |
2928 ;;; replace with expanded/completed name. | |
2929 ;;; term-dynamic-simple-complete Complete stub given candidates. | |
2930 | |
2931 ;;; These are not installed in the term-mode keymap. But they are | |
2932 ;;; available for people who want them. Shell-mode installs them: | |
2933 ;;; (define-key shell-mode-map "\t" 'term-dynamic-complete) | |
2934 ;;; (define-key shell-mode-map "\M-?" | |
2935 ;;; 'term-dynamic-list-filename-completions))) | |
2936 ;;; | |
2937 ;;; Commands like this are fine things to put in load hooks if you | |
2938 ;;; want them present in specific modes. | |
2939 | |
2940 (defvar term-completion-autolist nil | |
2941 "*If non-nil, automatically list possiblities on partial completion. | |
2942 This mirrors the optional behavior of tcsh.") | |
2943 | |
2944 (defvar term-completion-addsuffix t | |
2945 "*If non-nil, add a `/' to completed directories, ` ' to file names. | |
2946 This mirrors the optional behavior of tcsh.") | |
2947 | |
2948 (defvar term-completion-recexact nil | |
2949 "*If non-nil, use shortest completion if characters cannot be added. | |
2950 This mirrors the optional behavior of tcsh. | |
2951 | |
2952 A non-nil value is useful if `term-completion-autolist' is non-nil too.") | |
2953 | |
2954 (defvar term-completion-fignore nil | |
2955 "*List of suffixes to be disregarded during file completion. | |
2956 This mirrors the optional behavior of bash and tcsh. | |
2957 | |
2958 Note that this applies to `term-dynamic-complete-filename' only.") | |
2959 | |
2960 (defvar term-file-name-prefix "" | |
2961 "Prefix prepended to absolute file names taken from process input. | |
2962 This is used by term's and shell's completion functions, and by shell's | |
2963 directory tracking functions.") | |
2964 | |
2965 | |
2966 (defun term-directory (directory) | |
2967 ;; Return expanded DIRECTORY, with `term-file-name-prefix' if absolute. | |
2968 (expand-file-name (if (file-name-absolute-p directory) | |
2969 (concat term-file-name-prefix directory) | |
2970 directory))) | |
2971 | |
2972 | |
2973 (defun term-word (word-chars) | |
2974 "Return the word of WORD-CHARS at point, or nil if non is found. | |
2975 Word constituents are considered to be those in WORD-CHARS, which is like the | |
2976 inside of a \"[...]\" (see `skip-chars-forward')." | |
2977 (save-excursion | |
2978 (let ((limit (point)) | |
2979 (word (concat "[" word-chars "]")) | |
2980 (non-word (concat "[^" word-chars "]"))) | |
2981 (if (re-search-backward non-word nil 'move) | |
2982 (forward-char 1)) | |
2983 ;; Anchor the search forwards. | |
2984 (if (or (eolp) (looking-at non-word)) | |
2985 nil | |
2986 (re-search-forward (concat word "+") limit) | |
2987 (buffer-substring (match-beginning 0) (match-end 0)))))) | |
2988 | |
2989 | |
2990 (defun term-match-partial-filename () | |
2991 "Return the filename at point, or nil if non is found. | |
2992 Environment variables are substituted. See `term-word'." | |
2993 (let ((filename (term-word "~/A-Za-z0-9+@:_.$#,={}-"))) | |
2994 (and filename (substitute-in-file-name filename)))) | |
2995 | |
2996 | |
2997 (defun term-dynamic-complete () | |
2998 "Dynamically perform completion at point. | |
2999 Calls the functions in `term-dynamic-complete-functions' to perform | |
3000 completion until a function returns non-nil, at which point completion is | |
3001 assumed to have occurred." | |
3002 (interactive) | |
3003 (let ((functions term-dynamic-complete-functions)) | |
3004 (while (and functions (null (funcall (car functions)))) | |
3005 (setq functions (cdr functions))))) | |
3006 | |
3007 | |
3008 (defun term-dynamic-complete-filename () | |
3009 "Dynamically complete the filename at point. | |
3010 Completes if after a filename. See `term-match-partial-filename' and | |
3011 `term-dynamic-complete-as-filename'. | |
3012 This function is similar to `term-replace-by-expanded-filename', except that | |
3013 it won't change parts of the filename already entered in the buffer; it just | |
3014 adds completion characters to the end of the filename. A completions listing | |
3015 may be shown in a help buffer if completion is ambiguous. | |
3016 | |
3017 Completion is dependent on the value of `term-completion-addsuffix', | |
3018 `term-completion-recexact' and `term-completion-fignore', and the timing of | |
3019 completions listing is dependent on the value of `term-completion-autolist'. | |
3020 | |
3021 Returns t if successful." | |
3022 (interactive) | |
3023 (if (term-match-partial-filename) | |
3024 (prog2 (or (eq (selected-window) (minibuffer-window)) | |
3025 (message "Completing file name...")) | |
3026 (term-dynamic-complete-as-filename)))) | |
3027 | |
3028 (defun term-dynamic-complete-as-filename () | |
3029 "Dynamically complete at point as a filename. | |
3030 See `term-dynamic-complete-filename'. Returns t if successful." | |
3031 (let* ((completion-ignore-case nil) | |
3032 (completion-ignored-extensions term-completion-fignore) | |
3033 (success t) | |
3034 (filename (or (term-match-partial-filename) "")) | |
3035 (pathdir (file-name-directory filename)) | |
3036 (pathnondir (file-name-nondirectory filename)) | |
3037 (directory (if pathdir (term-directory pathdir) default-directory)) | |
3038 (completion (file-name-completion pathnondir directory)) | |
3039 (mini-flag (eq (selected-window) (minibuffer-window)))) | |
3040 (cond ((null completion) | |
3041 (message "No completions of %s" filename) | |
3042 (setq success nil)) | |
3043 ((eq completion t) ; Means already completed "file". | |
3044 (if term-completion-addsuffix (insert " ")) | |
3045 (or mini-flag (message "Sole completion"))) | |
3046 ((string-equal completion "") ; Means completion on "directory/". | |
3047 (term-dynamic-list-filename-completions)) | |
3048 (t ; Completion string returned. | |
3049 (let ((file (concat (file-name-as-directory directory) completion))) | |
3050 (insert (substring (directory-file-name completion) | |
3051 (length pathnondir))) | |
3052 (cond ((symbolp (file-name-completion completion directory)) | |
3053 ;; We inserted a unique completion. | |
3054 (if term-completion-addsuffix | |
3055 (insert (if (file-directory-p file) "/" " "))) | |
3056 (or mini-flag (message "Completed"))) | |
3057 ((and term-completion-recexact term-completion-addsuffix | |
3058 (string-equal pathnondir completion) | |
3059 (file-exists-p file)) | |
3060 ;; It's not unique, but user wants shortest match. | |
3061 (insert (if (file-directory-p file) "/" " ")) | |
3062 (or mini-flag (message "Completed shortest"))) | |
3063 ((or term-completion-autolist | |
3064 (string-equal pathnondir completion)) | |
3065 ;; It's not unique, list possible completions. | |
3066 (term-dynamic-list-filename-completions)) | |
3067 (t | |
3068 (or mini-flag (message "Partially completed"))))))) | |
3069 success)) | |
3070 | |
3071 | |
3072 (defun term-replace-by-expanded-filename () | |
3073 "Dynamically expand and complete the filename at point. | |
3074 Replace the filename with an expanded, canonicalised and completed replacement. | |
3075 \"Expanded\" means environment variables (e.g., $HOME) and `~'s are replaced | |
3076 with the corresponding directories. \"Canonicalised\" means `..' and `.' are | |
3077 removed, and the filename is made absolute instead of relative. For expansion | |
3078 see `expand-file-name' and `substitute-in-file-name'. For completion see | |
3079 `term-dynamic-complete-filename'." | |
3080 (interactive) | |
3081 (replace-match (expand-file-name (term-match-partial-filename)) t t) | |
3082 (term-dynamic-complete-filename)) | |
3083 | |
3084 | |
3085 (defun term-dynamic-simple-complete (stub candidates) | |
3086 "Dynamically complete STUB from CANDIDATES list. | |
3087 This function inserts completion characters at point by completing STUB from | |
3088 the strings in CANDIDATES. A completions listing may be shown in a help buffer | |
3089 if completion is ambiguous. | |
3090 | |
3091 Returns nil if no completion was inserted. | |
3092 Returns `sole' if completed with the only completion match. | |
3093 Returns `shortest' if completed with the shortest of the completion matches. | |
3094 Returns `partial' if completed as far as possible with the completion matches. | |
3095 Returns `listed' if a completion listing was shown. | |
3096 | |
3097 See also `term-dynamic-complete-filename'." | |
3098 (let* ((completion-ignore-case nil) | |
3099 (candidates (mapcar (function (lambda (x) (list x))) candidates)) | |
3100 (completions (all-completions stub candidates))) | |
3101 (cond ((null completions) | |
3102 (message "No completions of %s" stub) | |
3103 nil) | |
3104 ((= 1 (length completions)) ; Gotcha! | |
3105 (let ((completion (car completions))) | |
3106 (if (string-equal completion stub) | |
3107 (message "Sole completion") | |
3108 (insert (substring completion (length stub))) | |
3109 (message "Completed")) | |
3110 (if term-completion-addsuffix (insert " ")) | |
3111 'sole)) | |
3112 (t ; There's no unique completion. | |
3113 (let ((completion (try-completion stub candidates))) | |
3114 ;; Insert the longest substring. | |
3115 (insert (substring completion (length stub))) | |
3116 (cond ((and term-completion-recexact term-completion-addsuffix | |
3117 (string-equal stub completion) | |
3118 (member completion completions)) | |
3119 ;; It's not unique, but user wants shortest match. | |
3120 (insert " ") | |
3121 (message "Completed shortest") | |
3122 'shortest) | |
3123 ((or term-completion-autolist | |
3124 (string-equal stub completion)) | |
3125 ;; It's not unique, list possible completions. | |
3126 (term-dynamic-list-completions completions) | |
3127 'listed) | |
3128 (t | |
3129 (message "Partially completed") | |
3130 'partial))))))) | |
3131 | |
3132 | |
3133 (defun term-dynamic-list-filename-completions () | |
3134 "List in help buffer possible completions of the filename at point." | |
3135 (interactive) | |
3136 (let* ((completion-ignore-case nil) | |
3137 (filename (or (term-match-partial-filename) "")) | |
3138 (pathdir (file-name-directory filename)) | |
3139 (pathnondir (file-name-nondirectory filename)) | |
3140 (directory (if pathdir (term-directory pathdir) default-directory)) | |
3141 (completions (file-name-all-completions pathnondir directory))) | |
3142 (if completions | |
3143 (term-dynamic-list-completions completions) | |
3144 (message "No completions of %s" filename)))) | |
3145 | |
3146 | |
3147 (defun term-dynamic-list-completions (completions) | |
3148 "List in help buffer sorted COMPLETIONS. | |
3149 Typing SPC flushes the help buffer." | |
3150 (let ((conf (current-window-configuration))) | |
3151 (with-output-to-temp-buffer "*Completions*" | |
3152 (display-completion-list (sort completions 'string-lessp))) | |
3153 (message "Hit space to flush") | |
3154 (let (key first) | |
3155 (if (save-excursion | |
3156 (set-buffer (get-buffer "*Completions*")) | |
3157 (setq key (read-key-sequence nil) | |
3158 first (aref key 0)) | |
3159 (and (consp first) | |
3160 (eq (window-buffer (posn-window (event-start first))) | |
3161 (get-buffer "*Completions*")) | |
3162 (eq (key-binding key) 'mouse-choose-completion))) | |
3163 ;; If the user does mouse-choose-completion with the mouse, | |
3164 ;; execute the command, then delete the completion window. | |
3165 (progn | |
3166 (mouse-choose-completion first) | |
3167 (set-window-configuration conf)) | |
3168 (if (eq first ?\ ) | |
3169 (set-window-configuration conf) | |
3170 (setq unread-command-events (listify-key-sequence key))))))) | |
3171 | |
3172 ;;; Converting process modes to use term mode | |
3173 ;;; =========================================================================== | |
3174 ;;; Renaming variables | |
3175 ;;; Most of the work is renaming variables and functions. These are the common | |
3176 ;;; ones: | |
3177 ;;; Local variables: | |
3178 ;;; last-input-start term-last-input-start | |
3179 ;;; last-input-end term-last-input-end | |
3180 ;;; shell-prompt-pattern term-prompt-regexp | |
3181 ;;; shell-set-directory-error-hook <no equivalent> | |
3182 ;;; Miscellaneous: | |
3183 ;;; shell-set-directory <unnecessary> | |
3184 ;;; shell-mode-map term-mode-map | |
3185 ;;; Commands: | |
3186 ;;; shell-send-input term-send-input | |
3187 ;;; shell-send-eof term-delchar-or-maybe-eof | |
3188 ;;; kill-shell-input term-kill-input | |
3189 ;;; interrupt-shell-subjob term-interrupt-subjob | |
3190 ;;; stop-shell-subjob term-stop-subjob | |
3191 ;;; quit-shell-subjob term-quit-subjob | |
3192 ;;; kill-shell-subjob term-kill-subjob | |
3193 ;;; kill-output-from-shell term-kill-output | |
3194 ;;; show-output-from-shell term-show-output | |
3195 ;;; copy-last-shell-input Use term-previous-input/term-next-input | |
3196 ;;; | |
3197 ;;; SHELL-SET-DIRECTORY is gone, its functionality taken over by | |
3198 ;;; SHELL-DIRECTORY-TRACKER, the shell mode's term-input-filter-functions. | |
3199 ;;; Term mode does not provide functionality equivalent to | |
3200 ;;; shell-set-directory-error-hook; it is gone. | |
3201 ;;; | |
3202 ;;; term-last-input-start is provided for modes which want to munge | |
3203 ;;; the buffer after input is sent, perhaps because the inferior | |
3204 ;;; insists on echoing the input. The LAST-INPUT-START variable in | |
3205 ;;; the old shell package was used to implement a history mechanism, | |
3206 ;;; but you should think twice before using term-last-input-start | |
3207 ;;; for this; the input history ring often does the job better. | |
3208 ;;; | |
3209 ;;; If you are implementing some process-in-a-buffer mode, called foo-mode, do | |
3210 ;;; *not* create the term-mode local variables in your foo-mode function. | |
3211 ;;; This is not modular. Instead, call term-mode, and let *it* create the | |
3212 ;;; necessary term-specific local variables. Then create the | |
3213 ;;; foo-mode-specific local variables in foo-mode. Set the buffer's keymap to | |
3214 ;;; be foo-mode-map, and its mode to be foo-mode. Set the term-mode hooks | |
3215 ;;; (term-{prompt-regexp, input-filter, input-filter-functions, | |
3216 ;;; get-old-input) that need to be different from the defaults. Call | |
3217 ;;; foo-mode-hook, and you're done. Don't run the term-mode hook yourself; | |
3218 ;;; term-mode will take care of it. The following example, from shell.el, | |
3219 ;;; is typical: | |
3220 ;;; | |
3221 ;;; (defvar shell-mode-map '()) | |
3222 ;;; (cond ((not shell-mode-map) | |
3223 ;;; (setq shell-mode-map (copy-keymap term-mode-map)) | |
3224 ;;; (define-key shell-mode-map "\C-c\C-f" 'shell-forward-command) | |
3225 ;;; (define-key shell-mode-map "\C-c\C-b" 'shell-backward-command) | |
3226 ;;; (define-key shell-mode-map "\t" 'term-dynamic-complete) | |
3227 ;;; (define-key shell-mode-map "\M-?" | |
3228 ;;; 'term-dynamic-list-filename-completions))) | |
3229 ;;; | |
3230 ;;; (defun shell-mode () | |
3231 ;;; (interactive) | |
3232 ;;; (term-mode) | |
3233 ;;; (setq term-prompt-regexp shell-prompt-pattern) | |
3234 ;;; (setq major-mode 'shell-mode) | |
3235 ;;; (setq mode-name "Shell") | |
3236 ;;; (use-local-map shell-mode-map) | |
3237 ;;; (make-local-variable 'shell-directory-stack) | |
3238 ;;; (setq shell-directory-stack nil) | |
3239 ;;; (add-hook 'term-input-filter-functions 'shell-directory-tracker) | |
3240 ;;; (run-hooks 'shell-mode-hook)) | |
3241 ;;; | |
3242 ;;; | |
3243 ;;; Note that make-term is different from make-shell in that it | |
3244 ;;; doesn't have a default program argument. If you give make-shell | |
3245 ;;; a program name of NIL, it cleverly chooses one of explicit-shell-name, | |
3246 ;;; $ESHELL, $SHELL, or /bin/sh. If you give make-term a program argument | |
3247 ;;; of NIL, it barfs. Adjust your code accordingly... | |
3248 ;;; | |
3249 ;;; Completion for term-mode users | |
3250 ;;; | |
3251 ;;; For modes that use term-mode, term-dynamic-complete-functions is the | |
3252 ;;; hook to add completion functions to. Functions on this list should return | |
3253 ;;; non-nil if completion occurs (i.e., further completion should not occur). | |
3254 ;;; You could use term-dynamic-simple-complete to do the bulk of the | |
3255 ;;; completion job. | |
3256 | |
3257 (provide 'term) | |
3258 | |
3259 ;;; term.el ends here |