Mercurial > emacs
annotate lisp/dirtrack.el @ 69553:2fc1b3ed4aec
Mention new behavior with unreachable $DISPLAY.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 18 Mar 2006 13:55:31 +0000 |
parents | 3bd95f4f2941 |
children | 743b3d313968 c5406394f567 |
rev | line source |
---|---|
16817 | 1 ;;; dirtrack.el --- Directory Tracking by watching the prompt |
2 | |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64762
diff
changeset
|
3 ;; Copyright (C) 1996, 2002, 2003, 2004, 2005, |
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64762
diff
changeset
|
4 ;; 2006 Free Software Foundation, Inc. |
16817 | 5 |
21183 | 6 ;; Author: Peter Breton <pbreton@cs.umb.edu> |
16817 | 7 ;; Created: Sun Nov 17 1996 |
8 ;; Keywords: processes | |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
16817 | 26 |
27 ;;; Commentary: | |
28 | |
29 ;; Shell directory tracking by watching the prompt. | |
30 ;; | |
31 ;; This is yet another attempt at a directory-tracking package for | |
32 ;; Emacs shell-mode. However, this package makes one strong assumption: | |
33 ;; that you can customize your shell's prompt to contain the | |
34 ;; current working directory. Most shells do support this, including | |
35 ;; almost every type of Bourne and C shell on Unix, the native shells on | |
36 ;; Windows95 (COMMAND.COM) and Windows NT (CMD.EXE), and most 3rd party | |
37 ;; Windows shells. If you cannot do this, or do not wish to, this package | |
38 ;; will be useless to you. | |
39 ;; | |
40 ;; Installation: | |
41 ;; | |
42 ;; 1) Set your shell's prompt to contain the current working directory. | |
43 ;; You may need to consult your shell's documentation to find out how to | |
44 ;; do this. | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
45 ;; |
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
46 ;; Note that directory tracking is done by matching regular expressions, |
16817 | 47 ;; therefore it is *VERY IMPORTANT* for your prompt to be easily |
48 ;; distinguishable from other output. If your prompt regexp is too general, | |
49 ;; you will see error messages from the dirtrack filter as it attempts to cd | |
50 ;; to non-existent directories. | |
51 ;; | |
21183 | 52 ;; 2) Set the variable `dirtrack-list' to an appropriate value. This |
16817 | 53 ;; should be a list of two elements: the first is a regular expression |
54 ;; which matches your prompt up to and including the pathname part. | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
55 ;; The second is a number which tells which regular expression group to |
16817 | 56 ;; match to extract only the pathname. If you use a multi-line prompt, |
57 ;; add 't' as a third element. Note that some of the functions in | |
58 ;; 'comint.el' assume a single-line prompt (eg, comint-bol). | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
59 ;; |
16817 | 60 ;; Determining this information may take some experimentation. Setting |
21183 | 61 ;; the variable `dirtrack-debug' may help; it causes the directory-tracking |
23390
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
62 ;; filter to log messages to the buffer `dirtrack-debug-buffer'. You can easily |
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
63 ;; toggle this setting with the `dirtrack-debug-toggle' function. |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
64 ;; |
17930 | 65 ;; 3) Add a hook to shell-mode to enable the directory tracking: |
16817 | 66 ;; |
67 ;; (add-hook 'shell-mode-hook | |
68 ;; (function (lambda () | |
24370
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
69 ;; (setq comint-preoutput-filter-functions |
16817 | 70 ;; (append (list 'dirtrack) |
24370
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
71 ;; comint-preoutput-filter-functions))))) |
16817 | 72 ;; |
73 ;; You may wish to turn ordinary shell tracking off by calling | |
21183 | 74 ;; `shell-dirtrack-toggle' or setting `shell-dirtrackp'. |
16817 | 75 ;; |
76 ;; Examples: | |
77 ;; | |
78 ;; 1) On Windows NT, my prompt is set to emacs$S$P$G. | |
79 ;; 'dirtrack-list' is set to (list "^emacs \\([a-zA-Z]:.*\\)>" 1) | |
80 ;; | |
81 ;; 2) On Solaris running bash, my prompt is set like this: | |
82 ;; PS1="\w\012emacs@\h(\!) [\t]% " | |
83 ;; 'dirtrack-list' is set to (list "^\\([/~].*\\)\nemacs@[^%]+% *" 1 t) | |
84 ;; | |
85 ;; I'd appreciate other examples from people who use this package. | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
86 ;; |
21183 | 87 ;; Here's one from Stephen Eglen: |
88 ;; | |
89 ;; Running under tcsh: | |
90 ;; (setq-default dirtrack-list '("^%E \\([^ ]+\\)" 1)) | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
91 ;; |
21183 | 92 ;; It might be worth mentioning in your file that emacs sources start up |
93 ;; files of the form: ~/.emacs_<SHELL> where <SHELL> is the name of the | |
94 ;; shell. So for example, I have the following in ~/.emacs_tcsh: | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
95 ;; |
21183 | 96 ;; set prompt = "%%E %~ %h% " |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
97 ;; |
21183 | 98 ;; This produces a prompt of the form: |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
99 ;; %E /var/spool 10% |
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
100 ;; |
21183 | 101 ;; This saves me from having to use the %E prefix in other non-emacs |
102 ;; shells. | |
23390
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
103 ;; |
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
104 ;; A final note: |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
105 ;; |
24370
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
106 ;; I run LOTS of shell buffers through Emacs, sometimes as different users |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
107 ;; (eg, when logged in as myself, I'll run a root shell in the same Emacs). |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
108 ;; If you do this, and the shell prompt contains a ~, Emacs will interpret |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
109 ;; this relative to the user which owns the Emacs process, not the user |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
110 ;; who owns the shell buffer. This may cause dirtrack to behave strangely |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
111 ;; (typically it reports that it is unable to cd to a directory |
23390
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
112 ;; with a ~ in it). |
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
113 ;; |
24370
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
114 ;; The same behavior can occur if you use dirtrack with remote filesystems |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
115 ;; (using telnet, rlogin, etc) as Emacs will be checking the local |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
116 ;; filesystem, not the remote one. This problem is not specific to dirtrack, |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
117 ;; but also affects file completion, etc. |
16817 | 118 |
119 ;;; Code: | |
120 | |
121 (eval-when-compile | |
122 (require 'comint) | |
123 (require 'shell)) | |
124 | |
21183 | 125 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
126 ;; Customization Variables | |
127 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
128 | |
129 (defgroup dirtrack nil | |
130 "Directory tracking by watching the prompt." | |
131 :prefix "dirtrack-" | |
132 :group 'shell) | |
133 | |
134 (defcustom dirtrack-list (list "^emacs \\([a-zA-Z]:.*\\)>" 1) | |
16817 | 135 "*List for directory tracking. |
136 First item is a regexp that describes where to find the path in a prompt. | |
64538
be20990b5d3d
(dirtrack-list): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
137 Second is a number, the regexp group to match. Optional third item is |
be20990b5d3d
(dirtrack-list): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
138 whether the prompt is multi-line. If nil or omitted, prompt is assumed to |
21183 | 139 be on a single line." |
140 :group 'dirtrack | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
141 :type '(sexp (regexp :tag "Prompt Expression") |
21183 | 142 (integer :tag "Regexp Group") |
143 (boolean :tag "Multiline Prompt") | |
144 ) | |
145 ) | |
16817 | 146 |
147 (make-variable-buffer-local 'dirtrack-list) | |
148 | |
21183 | 149 (defcustom dirtrack-debug nil |
150 "*If non-nil, the function `dirtrack' will report debugging info." | |
151 :group 'dirtrack | |
152 :type 'boolean | |
153 ) | |
16817 | 154 |
21183 | 155 (defcustom dirtrack-debug-buffer "*Directory Tracking Log*" |
156 "Buffer to write directory tracking debug information." | |
157 :group 'dirtrack | |
158 :type 'string | |
159 ) | |
16817 | 160 |
21183 | 161 (defcustom dirtrackp t |
162 "*If non-nil, directory tracking via `dirtrack' is enabled." | |
163 :group 'dirtrack | |
164 :type 'boolean | |
165 ) | |
16817 | 166 |
167 (make-variable-buffer-local 'dirtrackp) | |
168 | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
169 (defcustom dirtrack-directory-function |
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
170 (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) |
16817 | 171 'dirtrack-windows-directory-function |
172 'dirtrack-default-directory-function) | |
21183 | 173 "*Function to apply to the prompt directory for comparison purposes." |
174 :group 'dirtrack | |
175 :type 'function | |
176 ) | |
16817 | 177 |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
178 (defcustom dirtrack-canonicalize-function |
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
179 (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) |
16817 | 180 'downcase 'identity) |
21183 | 181 "*Function to apply to the default directory for comparison purposes." |
182 :group 'dirtrack | |
183 :type 'function | |
184 ) | |
185 | |
23851
6c6028a96f5a
(dirtrack-directory-change-hook): New hook.
Karl Heuer <kwzh@gnu.org>
parents:
23390
diff
changeset
|
186 (defcustom dirtrack-directory-change-hook nil |
6c6028a96f5a
(dirtrack-directory-change-hook): New hook.
Karl Heuer <kwzh@gnu.org>
parents:
23390
diff
changeset
|
187 "Hook that is called when a directory change is made." |
6c6028a96f5a
(dirtrack-directory-change-hook): New hook.
Karl Heuer <kwzh@gnu.org>
parents:
23390
diff
changeset
|
188 :group 'dirtrack |
35967
5f41effdffe6
(dirtrack-directory-change-hook): Fix :type.
Dave Love <fx@gnu.org>
parents:
32664
diff
changeset
|
189 :type 'hook |
23851
6c6028a96f5a
(dirtrack-directory-change-hook): New hook.
Karl Heuer <kwzh@gnu.org>
parents:
23390
diff
changeset
|
190 ) |
6c6028a96f5a
(dirtrack-directory-change-hook): New hook.
Karl Heuer <kwzh@gnu.org>
parents:
23390
diff
changeset
|
191 |
6c6028a96f5a
(dirtrack-directory-change-hook): New hook.
Karl Heuer <kwzh@gnu.org>
parents:
23390
diff
changeset
|
192 |
21183 | 193 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
194 ;; Functions | |
195 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
16817 | 196 |
197 (defun dirtrack-default-directory-function (dir) | |
198 "Return a canonical directory for comparison purposes. | |
199 Such a directory ends with a forward slash." | |
200 (let ((directory dir)) | |
201 (if (not (char-equal ?/ (string-to-char (substring directory -1)))) | |
202 (concat directory "/") | |
203 directory))) | |
204 | |
205 (defun dirtrack-windows-directory-function (dir) | |
206 "Return a canonical directory for comparison purposes. | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
207 Such a directory is all lowercase, has forward-slashes as delimiters, |
16817 | 208 and ends with a forward slash." |
209 (let ((directory dir)) | |
21183 | 210 (setq directory (downcase (dirtrack-replace-slash directory t))) |
16817 | 211 (if (not (char-equal ?/ (string-to-char (substring directory -1)))) |
212 (concat directory "/") | |
213 directory))) | |
214 | |
50264 | 215 (defun dirtrack-cygwin-directory-function (dir) |
216 "Return a canonical directory taken from a Cygwin path for comparison purposes." | |
217 (if (string-match "/cygdrive/\\([A-Z]\\)\\(.*\\)" dir) | |
218 (concat (match-string 1 dir) ":" (match-string 2 dir)) | |
219 dir)) | |
220 | |
21183 | 221 (defconst dirtrack-forward-slash (regexp-quote "/")) |
222 (defconst dirtrack-backward-slash (regexp-quote "\\")) | |
16817 | 223 |
21183 | 224 (defun dirtrack-replace-slash (string &optional opposite) |
16817 | 225 "Replace forward slashes with backwards ones. |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
226 If additional argument is non-nil, replace backwards slashes with |
16817 | 227 forward ones." |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
228 (let ((orig (if opposite |
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
229 dirtrack-backward-slash |
21183 | 230 dirtrack-forward-slash)) |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
231 (replace (if opposite |
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
232 dirtrack-forward-slash |
21183 | 233 dirtrack-backward-slash)) |
16817 | 234 (newstring string) |
235 ) | |
236 (while (string-match orig newstring) | |
237 (setq newstring (replace-match replace nil t newstring))) | |
238 newstring)) | |
239 | |
240 ;; Copied from shell.el | |
241 (defun dirtrack-toggle () | |
242 "Enable or disable Dirtrack directory tracking in a shell buffer." | |
243 (interactive) | |
244 (setq dirtrackp (not dirtrackp)) | |
245 (message "Directory tracking %s" (if dirtrackp "ON" "OFF"))) | |
246 | |
23390
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
247 (defun dirtrack-debug-toggle () |
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
248 "Enable or disable Dirtrack debugging." |
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
249 (interactive) |
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
250 (setq dirtrack-debug (not dirtrack-debug)) |
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
251 (message "Directory debugging %s" (if dirtrack-debug "ON" "OFF")) |
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
252 (and dirtrack-debug |
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
253 (display-buffer (get-buffer-create dirtrack-debug-buffer)))) |
ce9dd8548989
Mentioned dirtrack-debug-toggle in the docs.
Karl Heuer <kwzh@gnu.org>
parents:
21183
diff
changeset
|
254 |
16817 | 255 (defun dirtrack-debug-message (string) |
256 (let ((buf (current-buffer)) | |
257 (debug-buf (get-buffer-create dirtrack-debug-buffer)) | |
258 ) | |
259 (set-buffer debug-buf) | |
16960
8c56da3f7f7f
(dirtrack-debug-message): Put output at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16817
diff
changeset
|
260 (goto-char (point-max)) |
16817 | 261 (insert (concat string "\n")) |
262 (set-buffer buf) | |
263 )) | |
264 | |
265 ;;;###autoload | |
266 (defun dirtrack (input) | |
24370
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
267 "Determine the current directory by scanning the process output for a prompt. |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
268 The prompt to look for is the first item in `dirtrack-list'. |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
269 |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
270 You can toggle directory tracking by using the function `dirtrack-toggle'. |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
271 |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
272 If directory tracking does not seem to be working, you can use the |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
273 function `dirtrack-debug-toggle' to turn on debugging output. |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
274 |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
275 You can enable directory tracking by adding this function to |
24370
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
276 `comint-output-filter-functions'. |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
277 " |
16817 | 278 (if (null dirtrackp) |
279 nil | |
24355
f0b106582755
(dirtrack): Check for the prompt in the input string instead of the buffer.
Richard M. Stallman <rms@gnu.org>
parents:
23851
diff
changeset
|
280 (let (prompt-path |
f0b106582755
(dirtrack): Check for the prompt in the input string instead of the buffer.
Richard M. Stallman <rms@gnu.org>
parents:
23851
diff
changeset
|
281 matched |
16817 | 282 (current-dir default-directory) |
16960
8c56da3f7f7f
(dirtrack-debug-message): Put output at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16817
diff
changeset
|
283 (dirtrack-regexp (nth 0 dirtrack-list)) |
16817 | 284 (match-num (nth 1 dirtrack-list)) |
285 (multi-line (nth 2 dirtrack-list)) | |
286 ) | |
287 ;; No output? | |
288 (if (eq (point) (point-min)) | |
289 nil | |
290 (save-excursion | |
24355
f0b106582755
(dirtrack): Check for the prompt in the input string instead of the buffer.
Richard M. Stallman <rms@gnu.org>
parents:
23851
diff
changeset
|
291 (setq matched (string-match dirtrack-regexp input))) |
16817 | 292 ;; No match |
293 (if (null matched) | |
294 (and dirtrack-debug | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
295 (dirtrack-debug-message |
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
296 (format |
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
297 "Input `%s' failed to match regexp: %s" |
23851
6c6028a96f5a
(dirtrack-directory-change-hook): New hook.
Karl Heuer <kwzh@gnu.org>
parents:
23390
diff
changeset
|
298 input dirtrack-regexp))) |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
299 (setq prompt-path |
24355
f0b106582755
(dirtrack): Check for the prompt in the input string instead of the buffer.
Richard M. Stallman <rms@gnu.org>
parents:
23851
diff
changeset
|
300 (substring input |
16817 | 301 (match-beginning match-num) (match-end match-num))) |
302 ;; Empty string | |
303 (if (not (> (length prompt-path) 0)) | |
304 (and dirtrack-debug | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
305 (dirtrack-debug-message "Match is empty string")) |
16817 | 306 ;; Transform prompts into canonical forms |
307 (setq prompt-path (funcall dirtrack-directory-function | |
308 prompt-path)) | |
309 (setq current-dir (funcall dirtrack-canonicalize-function | |
310 current-dir)) | |
311 (and dirtrack-debug | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
312 (dirtrack-debug-message |
16817 | 313 (format |
314 "Prompt is %s\nCurrent directory is %s" | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
315 prompt-path current-dir))) |
16817 | 316 ;; Compare them |
317 (if (or (string= current-dir prompt-path) | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
318 (string= current-dir |
16817 | 319 (abbreviate-file-name prompt-path))) |
320 (and dirtrack-debug | |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
321 (dirtrack-debug-message |
16817 | 322 (format "Not changing directory"))) |
16960
8c56da3f7f7f
(dirtrack-debug-message): Put output at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16817
diff
changeset
|
323 ;; It's possible that Emacs will think the directory |
8c56da3f7f7f
(dirtrack-debug-message): Put output at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16817
diff
changeset
|
324 ;; won't exist (eg, rlogin buffers) |
8c56da3f7f7f
(dirtrack-debug-message): Put output at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16817
diff
changeset
|
325 (if (file-accessible-directory-p prompt-path) |
8c56da3f7f7f
(dirtrack-debug-message): Put output at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16817
diff
changeset
|
326 ;; Change directory |
8c56da3f7f7f
(dirtrack-debug-message): Put output at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16817
diff
changeset
|
327 (and (shell-process-cd prompt-path) |
32664
f2f529ddfb31
(dirtrack): Fix call to run-hooks.
Gerd Moellmann <gerd@gnu.org>
parents:
24370
diff
changeset
|
328 (run-hooks 'dirtrack-directory-change-hook) |
16960
8c56da3f7f7f
(dirtrack-debug-message): Put output at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16817
diff
changeset
|
329 dirtrack-debug |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
35967
diff
changeset
|
330 (dirtrack-debug-message |
16960
8c56da3f7f7f
(dirtrack-debug-message): Put output at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16817
diff
changeset
|
331 (format "Changing directory to %s" prompt-path))) |
8c56da3f7f7f
(dirtrack-debug-message): Put output at end of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16817
diff
changeset
|
332 (error "Directory %s does not exist" prompt-path))) |
24370
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
333 ))))) |
fa97a69b1d3c
(dirtrack): Added docstring. Now returns input.
Richard M. Stallman <rms@gnu.org>
parents:
24355
diff
changeset
|
334 input) |
16817 | 335 |
336 (provide 'dirtrack) | |
337 | |
52401 | 338 ;;; arch-tag: 168de071-be88-4937-aff6-2aba9f328d5a |
16817 | 339 ;;; dirtrack.el ends here |