Mercurial > emacs
annotate lisp/shell.el @ 837:a8aef92e0025
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 22 Jul 1992 01:36:20 +0000 |
parents | 38b2499cb3e9 |
children | bf829a2d63b4 |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
1 ;;; shell.el --- general command interpreter in a window stuff |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
2 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
3 ;; Author: Olin Shivers <shivers@cs.cmu.edu> |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
4 ;; Last-Modified: 16 Mar 1992 |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
5 ;; Keywords: processes |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
6 |
252 | 7 ;;; Copyright Olin Shivers (1988). |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
8 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
9 ;;; This file is part of GNU Emacs. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
10 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
11 ;;; GNU Emacs is free software; you can redistribute it and/or modify |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
12 ;;; it under the terms of the GNU General Public License as published by |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
787
diff
changeset
|
13 ;;; the Free Software Foundation; either version 2, or (at your option) |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
14 ;;; any later version. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
15 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
16 ;;; GNU Emacs is distributed in the hope that it will be useful, |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
17 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
18 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
19 ;;; GNU General Public License for more details. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
20 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
21 ;;; You should have received a copy of the GNU General Public License |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
22 ;;; along with GNU Emacs; see the file COPYING. If not, write to |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
23 ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
114 | 24 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
25 ;;; Commentary: |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
26 |
252 | 27 ;;; The changelog is at the end of file. |
114 | 28 |
252 | 29 ;;; Please send me bug reports, bug fixes, and extensions, so that I can |
30 ;;; merge them into the master source. | |
31 ;;; - Olin Shivers (shivers@cs.cmu.edu) | |
114 | 32 |
252 | 33 ;;; This file defines a a shell-in-a-buffer package (shell mode) built |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
34 ;;; on top of comint mode. This is actually cmushell with things |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
35 ;;; renamed to replace its counterpart in Emacs 18. cmushell is more |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
36 ;;; featureful, robust, and uniform than the Emacs 18 version. |
114 | 37 |
38 ;;; Since this mode is built on top of the general command-interpreter-in- | |
39 ;;; a-buffer mode (comint mode), it shares a common base functionality, | |
40 ;;; and a common set of bindings, with all modes derived from comint mode. | |
252 | 41 ;;; This makes these modes easier to use. |
114 | 42 |
43 ;;; For documentation on the functionality provided by comint mode, and | |
44 ;;; the hooks available for customising it, see the file comint.el. | |
252 | 45 ;;; For further information on shell mode, see the comments below. |
114 | 46 |
47 ;;; Needs fixin: | |
48 ;;; When sending text from a source file to a subprocess, the process-mark can | |
49 ;;; move off the window, so you can lose sight of the process interactions. | |
50 ;;; Maybe I should ensure the process mark is in the window when I send | |
51 ;;; text to the process? Switch selectable? | |
52 | |
252 | 53 ;; YOUR .EMACS FILE |
54 ;;============================================================================= | |
55 ;; Some suggestions for your .emacs file. | |
56 ;; | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
57 ;; ; If cmushell lives in some non-standard directory, you must tell emacs |
252 | 58 ;; ; where to get it. This may or may not be necessary. |
59 ;; (setq load-path (cons (expand-file-name "~jones/lib/emacs") load-path)) | |
60 ;; | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
61 ;; ; Autoload cmushell from file cmushell.el |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
62 ;; (autoload 'cmushell "cmushell" |
252 | 63 ;; "Run an inferior shell process." |
64 ;; t) | |
65 ;; | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
66 ;; ; Define C-c t to run my favorite command in cmushell mode: |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
67 ;; (setq cmushell-load-hook |
252 | 68 ;; '((lambda () |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
69 ;; (define-key cmushell-mode-map "\C-ct" 'favorite-cmd)))) |
252 | 70 |
71 | |
72 ;;; Brief Command Documentation: | |
73 ;;;============================================================================ | |
74 ;;; Comint Mode Commands: (common to shell and all comint-derived modes) | |
75 ;;; | |
76 ;;; m-p comint-previous-input Cycle backwards in input history | |
77 ;;; m-n comint-next-input Cycle forwards | |
78 ;;; m-c-r comint-previous-input-matching Search backwards in input history | |
79 ;;; return comint-send-input | |
80 ;;; c-a comint-bol Beginning of line; skip prompt. | |
81 ;;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff. | |
82 ;;; c-c c-u comint-kill-input ^u | |
83 ;;; c-c c-w backward-kill-word ^w | |
84 ;;; c-c c-c comint-interrupt-subjob ^c | |
85 ;;; c-c c-z comint-stop-subjob ^z | |
86 ;;; c-c c-\ comint-quit-subjob ^\ | |
87 ;;; c-c c-o comint-kill-output Delete last batch of process output | |
88 ;;; c-c c-r comint-show-output Show last batch of process output | |
89 ;;; send-invisible Read line w/o echo & send to proc | |
90 ;;; comint-continue-subjob Useful if you accidentally suspend | |
91 ;;; top-level job. | |
92 ;;; comint-mode-hook is the comint mode hook. | |
93 | |
94 ;;; Shell Mode Commands: | |
95 ;;; shell Fires up the shell process. | |
96 ;;; tab comint-dynamic-complete Complete a partial file name | |
97 ;;; m-? comint-dynamic-list-completions List completions in help buffer | |
98 ;;; dirs Resync the buffer's dir stack. | |
99 ;;; dirtrack-toggle Turn dir tracking on/off. | |
100 ;;; | |
101 ;;; The shell mode hook is shell-mode-hook | |
102 ;;; The shell-load-hook is run after this file is loaded. | |
103 ;;; comint-prompt-regexp is initialised to shell-prompt-pattern, for backwards | |
104 ;;; compatibility. | |
105 | |
106 ;;; Read the rest of this file for more information. | |
107 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
108 ;;; SHELL.EL COMPATIBILITY |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
109 ;;; Notes from when this was called cmushell, and was not the standard emacs |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
110 ;;; shell package. |
252 | 111 ;;;============================================================================ |
112 ;;; In brief: this package should have no trouble coexisting with shell.el. | |
113 ;;; | |
114 ;;; Most customising variables -- e.g., explicit-shell-file-name -- are the | |
115 ;;; same, so the users shouldn't have much trouble. Hooks have different | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
116 ;;; names, however, so you can customise shell mode differently from cmushell |
252 | 117 ;;; mode. You basically just have to remember to type M-x cmushell instead of |
118 ;;; M-x shell. | |
119 ;;; | |
120 ;;; It would be nice if this file was completely plug-compatible with the old | |
121 ;;; shell package -- if you could just name this file shell.el, and have it | |
122 ;;; transparently replace the old one. But you can't. Several other packages | |
123 ;;; (tex-mode, background, dbx, gdb, kermit, monkey, prolog, telnet) are also | |
124 ;;; clients of shell mode. These packages assume detailed knowledge of shell | |
125 ;;; mode internals in ways that are incompatible with cmushell mode (mostly | |
126 ;;; because of cmushell mode's greater functionality). So, unless we are | |
127 ;;; willing to port all of these packages, we can't have this file be a | |
128 ;;; complete replacement for shell.el -- that is, we can't name this file | |
129 ;;; shell.el, and its main entry point (shell), because dbx.el will break | |
130 ;;; when it loads it in and tries to use it. | |
131 ;;; | |
132 ;;; There are two ways to fix this. One: rewrite these other modes to use the | |
133 ;;; new package. This is a win, but can't be assumed. The other, backwards | |
134 ;;; compatible route, is to make this package non-conflict with shell.el, so | |
135 ;;; both files can be loaded in at the same time. And *that* is why some | |
136 ;;; functions and variables have different names: (cmushell), | |
137 ;;; cmushell-mode-map, that sort of thing. All the names have been carefully | |
138 ;;; chosen so that shell.el and cmushell.el won't tromp on each other. | |
139 | |
140 ;;; Customisation and Buffer Variables | |
141 ;;; =========================================================================== | |
142 ;;; | |
143 | |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
144 ;;; Code: |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
145 |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
146 (require 'comint) |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
147 |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
148 ;;;###autoload |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
149 (defconst shell-prompt-pattern "^[^#$%>]*[#$%>] *" |
252 | 150 "Regexp to match prompts in the inferior shell. |
151 Defaults to \"^[^#$%>]*[#$%>] *\", which works pretty well. | |
152 This variable is used to initialise comint-prompt-regexp in the | |
153 shell buffer. | |
154 | |
155 This is a fine thing to set in your .emacs file.") | |
156 | |
114 | 157 (defvar shell-popd-regexp "popd" |
158 "*Regexp to match subshell commands equivalent to popd.") | |
159 | |
160 (defvar shell-pushd-regexp "pushd" | |
161 "*Regexp to match subshell commands equivalent to pushd.") | |
162 | |
163 (defvar shell-cd-regexp "cd" | |
164 "*Regexp to match subshell commands equivalent to cd.") | |
165 | |
166 (defvar explicit-shell-file-name nil | |
167 "*If non-nil, is file name to use for explicitly requested inferior shell.") | |
168 | |
169 (defvar explicit-csh-args | |
170 (if (eq system-type 'hpux) | |
171 ;; -T persuades HP's csh not to think it is smarter | |
172 ;; than us about what terminal modes to use. | |
173 '("-i" "-T") | |
174 '("-i")) | |
175 "*Args passed to inferior shell by M-x shell, if the shell is csh. | |
176 Value is a list of strings, which may be nil.") | |
177 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
178 ;;; All the above vars aren't prefixed "cmushell-" to make them |
252 | 179 ;;; backwards compatible w/shell.el and old .emacs files. |
180 | |
114 | 181 (defvar shell-dirstack nil |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
182 "List of directories saved by pushd in this buffer's shell. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
183 Thus, this does not include the shell's current directory.") |
114 | 184 |
185 (defvar shell-dirstack-query "dirs" | |
186 "Command used by shell-resync-dirlist to query shell.") | |
187 | |
252 | 188 (defvar shell-mode-map '()) |
114 | 189 (cond ((not shell-mode-map) |
252 | 190 (setq shell-mode-map (full-copy-sparse-keymap comint-mode-map)) |
114 | 191 (define-key shell-mode-map "\t" 'comint-dynamic-complete) |
192 (define-key shell-mode-map "\M-?" 'comint-dynamic-list-completions))) | |
193 | |
194 (defvar shell-mode-hook '() | |
195 "*Hook for customising shell mode") | |
196 | |
197 | |
198 ;;; Basic Procedures | |
199 ;;; =========================================================================== | |
200 ;;; | |
201 | |
202 (defun shell-mode () | |
203 "Major mode for interacting with an inferior shell. | |
204 Return after the end of the process' output sends the text from the | |
205 end of process to the end of the current line. | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
206 Return before end of process output copies the current line (except |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
207 for the prompt) to the end of the buffer and sends it. |
114 | 208 M-x send-invisible reads a line of text without echoing it, and sends it to |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
209 the shell. This is useful for entering passwords. |
114 | 210 |
211 If you accidentally suspend your process, use \\[comint-continue-subjob] | |
212 to continue it. | |
213 | |
214 cd, pushd and popd commands given to the shell are watched by Emacs to keep | |
215 this buffer's default directory the same as the shell's working directory. | |
216 M-x dirs queries the shell and resyncs Emacs' idea of what the current | |
217 directory stack is. | |
218 M-x dirtrack-toggle turns directory tracking on and off. | |
219 | |
220 \\{shell-mode-map} | |
221 Customisation: Entry to this mode runs the hooks on comint-mode-hook and | |
222 shell-mode-hook (in that order). | |
223 | |
224 Variables shell-cd-regexp, shell-pushd-regexp and shell-popd-regexp are used | |
225 to match their respective commands." | |
226 (interactive) | |
227 (comint-mode) | |
252 | 228 (setq comint-prompt-regexp shell-prompt-pattern) |
229 (setq major-mode 'shell-mode) | |
230 (setq mode-name "shell") | |
114 | 231 (use-local-map shell-mode-map) |
232 (make-local-variable 'shell-dirstack) | |
252 | 233 (setq shell-dirstack nil) |
234 (make-local-variable 'shell-dirtrackp) | |
235 (setq shell-dirtrackp t) | |
236 (setq comint-input-sentinel 'shell-directory-tracker) | |
114 | 237 (run-hooks 'shell-mode-hook)) |
238 | |
239 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
240 ;;;###autoload |
114 | 241 (defun shell () |
242 "Run an inferior shell, with I/O through buffer *shell*. | |
243 If buffer exists but shell process is not running, make new shell. | |
252 | 244 If buffer exists and shell process is running, |
245 just switch to buffer *shell*. | |
246 Program used comes from variable explicit-shell-file-name, | |
247 or (if that is nil) from the ESHELL environment variable, | |
248 or else from SHELL if there is no ESHELL. | |
249 If a file ~/.emacs_SHELLNAME exists, it is given as initial input | |
250 (Note that this may lose due to a timing error if the shell | |
251 discards input when it starts up.) | |
252 The buffer is put in shell-mode, giving commands for sending input | |
253 and controlling the subjobs of the shell. See shell-mode. | |
254 See also variable shell-prompt-pattern. | |
114 | 255 |
252 | 256 The shell file name (sans directories) is used to make a symbol name |
114 | 257 such as `explicit-csh-arguments'. If that symbol is a variable, |
258 its value is used as a list of arguments when invoking the shell. | |
259 Otherwise, one argument `-i' is passed to the shell. | |
260 | |
261 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" | |
262 (interactive) | |
263 (cond ((not (comint-check-proc "*shell*")) | |
264 (let* ((prog (or explicit-shell-file-name | |
265 (getenv "ESHELL") | |
266 (getenv "SHELL") | |
252 | 267 "/bin/sh")) |
114 | 268 (name (file-name-nondirectory prog)) |
269 (startfile (concat "~/.emacs_" name)) | |
270 (xargs-name (intern-soft (concat "explicit-" name "-args")))) | |
271 (set-buffer (apply 'make-comint "shell" prog | |
272 (if (file-exists-p startfile) startfile) | |
273 (if (and xargs-name (boundp xargs-name)) | |
274 (symbol-value xargs-name) | |
275 '("-i")))) | |
276 (shell-mode)))) | |
277 (switch-to-buffer "*shell*")) | |
278 | |
279 | |
280 ;;; Directory tracking | |
281 ;;; =========================================================================== | |
282 ;;; This code provides the shell mode input sentinel | |
283 ;;; SHELL-DIRECTORY-TRACKER | |
284 ;;; that tracks cd, pushd, and popd commands issued to the shell, and | |
285 ;;; changes the current directory of the shell buffer accordingly. | |
286 ;;; | |
287 ;;; This is basically a fragile hack, although it's more accurate than | |
252 | 288 ;;; the released version in shell.el. It has the following failings: |
114 | 289 ;;; 1. It doesn't know about the cdpath shell variable. |
290 ;;; 2. It only spots the first command in a command sequence. E.g., it will | |
291 ;;; miss the cd in "ls; cd foo" | |
292 ;;; 3. More generally, any complex command (like ";" sequencing) is going to | |
293 ;;; throw it. Otherwise, you'd have to build an entire shell interpreter in | |
294 ;;; emacs lisp. Failing that, there's no way to catch shell commands where | |
295 ;;; cd's are buried inside conditional expressions, aliases, and so forth. | |
296 ;;; | |
297 ;;; The whole approach is a crock. Shell aliases mess it up. File sourcing | |
298 ;;; messes it up. You run other processes under the shell; these each have | |
299 ;;; separate working directories, and some have commands for manipulating | |
300 ;;; their w.d.'s (e.g., the lcd command in ftp). Some of these programs have | |
252 | 301 ;;; commands that do *not* affect the current w.d. at all, but look like they |
114 | 302 ;;; do (e.g., the cd command in ftp). In shells that allow you job |
303 ;;; control, you can switch between jobs, all having different w.d.'s. So | |
304 ;;; simply saying %3 can shift your w.d.. | |
305 ;;; | |
306 ;;; The solution is to relax, not stress out about it, and settle for | |
307 ;;; a hack that works pretty well in typical circumstances. Remember | |
308 ;;; that a half-assed solution is more in keeping with the spirit of Unix, | |
309 ;;; anyway. Blech. | |
310 ;;; | |
311 ;;; One good hack not implemented here for users of programmable shells | |
312 ;;; is to program up the shell w.d. manipulation commands to output | |
313 ;;; a coded command sequence to the tty. Something like | |
314 ;;; ESC | <cwd> | | |
315 ;;; where <cwd> is the new current working directory. Then trash the | |
316 ;;; directory tracking machinery currently used in this package, and | |
317 ;;; replace it with a process filter that watches for and strips out | |
318 ;;; these messages. | |
319 | |
320 ;;; REGEXP is a regular expression. STR is a string. START is a fixnum. | |
321 ;;; Returns T if REGEXP matches STR where the match is anchored to start | |
322 ;;; at position START in STR. Sort of like LOOKING-AT for strings. | |
323 (defun shell-front-match (regexp str start) | |
324 (eq start (string-match regexp str start))) | |
325 | |
326 (defun shell-directory-tracker (str) | |
327 "Tracks cd, pushd and popd commands issued to the shell. | |
328 This function is called on each input passed to the shell. | |
329 It watches for cd, pushd and popd commands and sets the buffer's | |
330 default directory to track these commands. | |
331 | |
332 You may toggle this tracking on and off with M-x dirtrack-toggle. | |
333 If emacs gets confused, you can resync with the shell with M-x dirs. | |
334 | |
335 See variables shell-cd-regexp, shell-pushd-regexp, and shell-popd-regexp. | |
336 Environment variables are expanded, see function substitute-in-file-name." | |
337 (condition-case err | |
338 (cond (shell-dirtrackp | |
339 (string-match "^\\s *" str) ; skip whitespace | |
340 (let ((bos (match-end 0)) | |
341 (x nil)) | |
342 (cond ((setq x (shell-match-cmd-w/optional-arg shell-popd-regexp | |
343 str bos)) | |
344 (shell-process-popd (substitute-in-file-name x))) | |
345 ((setq x (shell-match-cmd-w/optional-arg shell-pushd-regexp | |
346 str bos)) | |
347 (shell-process-pushd (substitute-in-file-name x))) | |
348 ((setq x (shell-match-cmd-w/optional-arg shell-cd-regexp | |
349 str bos)) | |
350 (shell-process-cd (substitute-in-file-name x))))))) | |
351 (error (message (car (cdr err)))))) | |
352 | |
353 | |
354 ;;; Try to match regexp CMD to string, anchored at position START. | |
355 ;;; CMD may be followed by a single argument. If a match, then return | |
356 ;;; the argument, if there is one, or the empty string if not. If | |
357 ;;; no match, return nil. | |
358 | |
359 (defun shell-match-cmd-w/optional-arg (cmd str start) | |
360 (and (shell-front-match cmd str start) | |
361 (let ((eoc (match-end 0))) ; end of command | |
362 (cond ((shell-front-match "\\s *\\(\;\\|$\\)" str eoc) | |
363 "") ; no arg | |
364 ((shell-front-match "\\s +\\([^ \t\;]+\\)\\s *\\(\;\\|$\\)" | |
365 str eoc) | |
366 (substring str (match-beginning 1) (match-end 1))) ; arg | |
367 (t nil))))) ; something else. | |
368 ;;; The first regexp is [optional whitespace, (";" or the end of string)]. | |
369 ;;; The second regexp is [whitespace, (an arg), optional whitespace, | |
370 ;;; (";" or end of string)]. | |
371 | |
372 | |
373 ;;; popd [+n] | |
374 (defun shell-process-popd (arg) | |
375 (let ((num (if (zerop (length arg)) 0 ; no arg means +0 | |
376 (shell-extract-num arg)))) | |
377 (if (and num (< num (length shell-dirstack))) | |
378 (if (= num 0) ; condition-case because the CD could lose. | |
379 (condition-case nil (progn (cd (car shell-dirstack)) | |
380 (setq shell-dirstack | |
381 (cdr shell-dirstack)) | |
382 (shell-dirstack-message)) | |
383 (error (message "Couldn't cd."))) | |
384 (let* ((ds (cons nil shell-dirstack)) | |
385 (cell (nthcdr (- num 1) ds))) | |
386 (rplacd cell (cdr (cdr cell))) | |
387 (setq shell-dirstack (cdr ds)) | |
388 (shell-dirstack-message))) | |
389 (message "Bad popd.")))) | |
390 | |
391 | |
392 ;;; cd [dir] | |
393 (defun shell-process-cd (arg) | |
394 (condition-case nil (progn (cd (if (zerop (length arg)) (getenv "HOME") | |
395 arg)) | |
396 (shell-dirstack-message)) | |
397 (error (message "Couldn't cd.")))) | |
398 | |
399 | |
400 ;;; pushd [+n | dir] | |
401 (defun shell-process-pushd (arg) | |
402 (if (zerop (length arg)) | |
403 ;; no arg -- swap pwd and car of shell stack | |
404 (condition-case nil (if shell-dirstack | |
405 (let ((old default-directory)) | |
406 (cd (car shell-dirstack)) | |
407 (setq shell-dirstack | |
408 (cons old (cdr shell-dirstack))) | |
409 (shell-dirstack-message)) | |
410 (message "Directory stack empty.")) | |
411 (message "Couldn't cd.")) | |
412 | |
413 (let ((num (shell-extract-num arg))) | |
414 (if num ; pushd +n | |
415 (if (> num (length shell-dirstack)) | |
416 (message "Directory stack not that deep.") | |
417 (let* ((ds (cons default-directory shell-dirstack)) | |
418 (dslen (length ds)) | |
419 (front (nthcdr num ds)) | |
420 (back (reverse (nthcdr (- dslen num) (reverse ds)))) | |
421 (new-ds (append front back))) | |
422 (condition-case nil | |
423 (progn (cd (car new-ds)) | |
424 (setq shell-dirstack (cdr new-ds)) | |
425 (shell-dirstack-message)) | |
426 (error (message "Couldn't cd."))))) | |
427 | |
428 ;; pushd <dir> | |
429 (let ((old-wd default-directory)) | |
430 (condition-case nil | |
431 (progn (cd arg) | |
432 (setq shell-dirstack | |
433 (cons old-wd shell-dirstack)) | |
434 (shell-dirstack-message)) | |
435 (error (message "Couldn't cd.")))))))) | |
436 | |
437 ;; If STR is of the form +n, for n>0, return n. Otherwise, nil. | |
438 (defun shell-extract-num (str) | |
439 (and (string-match "^\\+[1-9][0-9]*$" str) | |
440 (string-to-int str))) | |
441 | |
442 | |
443 (defun shell-dirtrack-toggle () | |
444 "Turn directory tracking on and off in a shell buffer." | |
445 (interactive) | |
446 (setq shell-dirtrackp (not shell-dirtrackp)) | |
447 (message "directory tracking %s." | |
448 (if shell-dirtrackp "ON" "OFF"))) | |
449 | |
450 ;;; For your typing convenience: | |
451 (fset 'dirtrack-toggle 'shell-dirtrack-toggle) | |
452 | |
453 | |
454 (defun shell-resync-dirs () | |
455 "Resync the buffer's idea of the current directory stack. | |
456 This command queries the shell with the command bound to | |
457 shell-dirstack-query (default \"dirs\"), reads the next | |
458 line output and parses it to form the new directory stack. | |
459 DON'T issue this command unless the buffer is at a shell prompt. | |
460 Also, note that if some other subprocess decides to do output | |
461 immediately after the query, its output will be taken as the | |
462 new directory stack -- you lose. If this happens, just do the | |
463 command again." | |
464 (interactive) | |
465 (let* ((proc (get-buffer-process (current-buffer))) | |
466 (pmark (process-mark proc))) | |
467 (goto-char pmark) | |
468 (insert shell-dirstack-query) (insert "\n") | |
469 (sit-for 0) ; force redisplay | |
470 (comint-send-string proc shell-dirstack-query) | |
471 (comint-send-string proc "\n") | |
472 (set-marker pmark (point)) | |
473 (let ((pt (point))) ; wait for 1 line | |
474 ;; This extra newline prevents the user's pending input from spoofing us. | |
475 (insert "\n") (backward-char 1) | |
476 (while (not (looking-at ".+\n")) | |
477 (accept-process-output proc) | |
478 (goto-char pt))) | |
479 (goto-char pmark) (delete-char 1) ; remove the extra newline | |
480 ;; That's the dirlist. grab it & parse it. | |
481 (let* ((dl (buffer-substring (match-beginning 0) (- (match-end 0) 1))) | |
482 (dl-len (length dl)) | |
483 (ds '()) ; new dir stack | |
484 (i 0)) | |
485 (while (< i dl-len) | |
486 ;; regexp = optional whitespace, (non-whitespace), optional whitespace | |
487 (string-match "\\s *\\(\\S +\\)\\s *" dl i) ; pick off next dir | |
488 (setq ds (cons (substring dl (match-beginning 1) (match-end 1)) | |
489 ds)) | |
490 (setq i (match-end 0))) | |
491 (let ((ds (reverse ds))) | |
492 (condition-case nil | |
493 (progn (cd (car ds)) | |
494 (setq shell-dirstack (cdr ds)) | |
495 (shell-dirstack-message)) | |
496 (error (message "Couldn't cd."))))))) | |
497 | |
498 ;;; For your typing convenience: | |
499 (fset 'dirs 'shell-resync-dirs) | |
500 | |
501 | |
502 ;;; Show the current dirstack on the message line. | |
503 ;;; Pretty up dirs a bit by changing "/usr/jqr/foo" to "~/foo". | |
504 ;;; (This isn't necessary if the dirlisting is generated with a simple "dirs".) | |
505 ;;; All the commands that mung the buffer's dirstack finish by calling | |
506 ;;; this guy. | |
507 (defun shell-dirstack-message () | |
508 (let ((msg "") | |
509 (ds (cons default-directory shell-dirstack))) | |
510 (while ds | |
511 (let ((dir (car ds))) | |
512 (if (string-match (format "^%s\\(/\\|$\\)" (getenv "HOME")) dir) | |
513 (setq dir (concat "~/" (substring dir (match-end 0))))) | |
514 (if (string-equal dir "~/") (setq dir "~")) | |
515 (setq msg (concat msg dir " ")) | |
516 (setq ds (cdr ds)))) | |
517 (message msg))) | |
252 | 518 |
519 | |
520 | |
521 ;;; Interfacing to client packages (and converting them) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
522 ;;; Notes from when this was called cmushell, and was not the standard emacs |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
523 ;;; shell package. Many of the conversions discussed here have been done. |
252 | 524 ;;;============================================================================ |
525 ;;; Several gnu packages (tex-mode, background, dbx, gdb, kermit, prolog, | |
526 ;;; telnet are some) use the shell package as clients. Most of them would | |
527 ;;; be better off using the comint package directly, but they predate it. | |
528 ;;; The catch is that most of these packages (dbx, gdb, prolog, telnet) | |
529 ;;; assume total knowledge of all the local variables that shell mode | |
530 ;;; functions depend on. So they (kill-all-local-variables), then create | |
531 ;;; the few local variables that shell.el functions depend on. Alas, | |
532 ;;; cmushell.el functions depend on a different set of vars (for example, | |
533 ;;; the input history ring is a local variable in cmushell.el's shell mode, | |
534 ;;; whereas there is no input history ring in shell.el's shell mode). | |
535 ;;; So we have a situation where the greater functionality of cmushell.el | |
536 ;;; is biting us -- you can't just replace shell will cmushell. | |
537 ;;; | |
538 ;;; Altering these packages to use comint mode directly should *greatly* | |
539 ;;; improve their functionality, and is actually pretty easy. It's | |
540 ;;; mostly a matter of renaming a few variable names. See comint.el for more. | |
541 ;;; -Olin | |
542 | |
543 | |
544 | |
545 ;;; Do the user's customisation... | |
546 ;;;=============================== | |
547 (defvar shell-load-hook nil | |
548 "This hook is run when shell is loaded in. | |
549 This is a good place to put keybindings.") | |
550 | |
551 (run-hooks 'shell-load-hook) | |
552 | |
553 ;;; Change Log | |
554 ;;; =========================================================================== | |
555 ;;; Olin 8/88 | |
556 ;;; Created. | |
557 ;;; | |
558 ;;; Olin 5/26/90 | |
559 ;;; - Split cmulisp and cmushell modes into separate files. | |
560 ;;; Not only is this a good idea, it's apparently the way it'll be rel 19. | |
561 ;;; - Souped up the directory tracking; it now can handle pushd, pushd +n, | |
562 ;;; and popd +n. | |
563 ;;; - Added cmushell-dirtrack-toggle command to toggle the directory | |
564 ;;; tracking that cmushell tries to do. This is useful, for example, | |
565 ;;; when you are running ftp -- it prevents the ftp "cd" command from | |
566 ;;; spoofing the tracking machinery. This command is also named | |
567 ;;; dirtrack-toggle, so you need only type M-x dirtrack to run it. | |
568 ;;; - Added cmushell-resync-dirs command. This queries the shell | |
569 ;;; for the current directory stack, and resets the buffer's stack | |
570 ;;; accordingly. This command is also named dirs, so you need only type | |
571 ;;; M-x dirs to run it. | |
572 ;;; - Bits of the new directory tracking code were adapted from source | |
573 ;;; contributed by Vince Broman, Jeff Peck, and Barry Warsaw. | |
574 ;;; - See also the improvements made to comint.el at the same time. | |
575 ;;; - Renamed several variables. Mostly this comprised changing "shell" | |
576 ;;; to "cmushell" in the names. The only variables that are not prefixed | |
577 ;;; with "cmushell-" are the ones that are common with shell.el: | |
578 ;;; explicit-shell-file-name shell-prompt-pattern explicit-csh-args | |
579 ;;; and shell-cd/popd/pushd-regexp | |
580 ;;; The variables and functions that were changed to have "cmushell-" | |
581 ;;; prefixes are: | |
582 ;;; shell-directory-stack (v), shell-directory-tracker (f) | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
787
diff
changeset
|
583 ;;; This should not affect users, only Emacs Lisp hackers. Hopefully |
252 | 584 ;;; one day shell.el will just go away, and we can drop all this |
585 ;;; "cmushell" bullshit. | |
586 ;;; - Upgraded process sends to use comint-send-string instead of | |
587 ;;; process-send-string. | |
588 ;;; | |
589 ;;; Olin 6/14/90 | |
590 ;;; - If your shell is named <shellname>, and a variable named | |
591 ;;; explicit-<shellname>-args exists, cmushell is supposed | |
592 ;;; to use its value as the arglist to the shell invocation. | |
593 ;;; E.g., if you define explicit-csh-args to be | |
594 ;;; ("-ifx"), then when cmushell cranks up a csh, it execs it | |
595 ;;; as "csh -ifx". This is what is documented. What has actually | |
596 ;;; been the case is that the variable checked is | |
597 ;;; explicit-<shellname>-arguments, not explicit-<shellname>-args. | |
598 ;;; The documentation has been changed to conform to the code (for | |
599 ;;; backwards compatibility with shell.el). This bug is inherited from | |
600 ;;; the same bug in shell.el. | |
601 ;;; This bug reported by Stephen Anderson. | |
602 ;;; | |
603 ;;; Olin 9/5/90 | |
604 ;;; - Arguments to cd, popd, and pushd now have their env vars expanded | |
605 ;;; out by the tracking machinery. So if you say "cd $SRCDIR/funs", the | |
606 ;;; $SRCDIR var will be replaced by its value *in emacs' process | |
607 ;;; environment*. If this is different from the shell's binding of the | |
608 ;;; variable, you lose. Several users needed this feature, fragile | |
609 ;;; though it may be. The fix was contributed by sk@thp.Uni-Koeln.DE. | |
610 ;;; | |
611 ;;; Olin 3/12/91 | |
612 ;;; - Moved comint-dynamic-complete (filename completion) from M-tab to tab. | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
613 ;;; |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
614 ;;; Jim Blandy 10/30/91 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
615 ;;; - Removed the "cmu" prefix from names, renamed file to shell.el, |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
616 ;;; to become the standard shell package. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
617 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
618 (provide 'shell) |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
619 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
252
diff
changeset
|
620 ;;; shell.el ends here |