]> code.delx.au - gnu-emacs/blob - lisp/ffap.el
Comment change.
[gnu-emacs] / lisp / ffap.el
1 ;;; ffap.el --- find file (or url) at point
2 ;;
3 ;; Copyright (C) 1995, 96, 97, 2000 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Michelangelo Grigni <mic@mathcs.emory.edu>
6 ;; Created: 29 Mar 1993
7 ;; Keywords: files, hypermedia, matching, mouse, convenience
8 ;; X-URL: ftp://ftp.mathcs.emory.edu/pub/mic/emacs/
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
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 \f
28 ;;; Commentary:
29 ;;
30 ;; Command find-file-at-point replaces find-file. With a prefix, it
31 ;; behaves exactly like find-file. Without a prefix, it first tries
32 ;; to guess a default file or URL from the text around the point
33 ;; (`ffap-require-prefix' swaps these behaviors). This is useful for
34 ;; following references in situations such as mail or news buffers,
35 ;; README's, MANIFEST's, and so on. Submit bugs or suggestions with
36 ;; M-x ffap-bug.
37 ;;
38 ;; For the default installation, add this line to your .emacs file:
39 ;;
40 ;; (ffap-bindings) ; do default key bindings
41 ;;
42 ;; ffap-bindings makes the following global key bindings:
43 ;;
44 ;; C-x C-f find-file-at-point (abbreviated as ffap)
45 ;; C-x d dired-at-point
46 ;; C-x 4 f ffap-other-window
47 ;; C-x 5 f ffap-other-frame
48 ;; S-mouse-3 ffap-at-mouse
49 ;; C-S-mouse-3 ffap-menu
50 ;;
51 ;; ffap-bindings also adds hooks to make the following local bindings
52 ;; in vm, gnus, and rmail:
53 ;;
54 ;; M-l ffap-next, or ffap-gnus-next in gnus (l == "link")
55 ;; M-m ffap-menu, or ffap-gnus-menu in gnus (m == "menu")
56 ;;
57 ;; If you do not like these bindings, modify the variable
58 ;; `ffap-bindings', or write your own.
59 ;;
60 ;; If you use ange-ftp, browse-url, complete, efs, or w3, it is best
61 ;; to load or autoload them before ffap. If you use ff-paths, load it
62 ;; afterwards. Try apropos {C-h a ffap RET} to get a list of the many
63 ;; option variables. In particular, if ffap is slow, try these:
64 ;;
65 ;; (setq ffap-alist nil) ; faster, dumber prompting
66 ;; (setq ffap-machine-p-known 'accept) ; no pinging
67 ;; (setq ffap-url-regexp nil) ; disable URL features in ffap
68 ;;
69 ;; ffap uses `browse-url' (if found, else `w3-fetch') to fetch URL's.
70 ;; For a hairier `ffap-url-fetcher', try ffap-url.el (same ftp site).
71 ;; Also, you can add `ffap-menu-rescan' to various hooks to fontify
72 ;; the file and URL references within a buffer.
73
74 \f
75 ;;; Change Log:
76 ;;
77 ;; The History and Contributors moved to ffap.LOG (same ftp site),
78 ;; which also has some old examples and commentary from ffap 1.5.
79
80 \f
81 ;;; Todo list:
82 ;; * use kpsewhich
83 ;; * let "/path/file#key" jump to key (tag or regexp) in /path/file
84 ;; * find file of symbol if TAGS is loaded (like above)
85 ;; * break long menus into multiple panes (like imenu?)
86 ;; * notice node in "(dired)Virtual Dired" (quotes, parentheses, whitespace)
87 ;; * notice "machine.dom blah blah blah path/file" (how?)
88 ;; * as w3 becomes standard, rewrite to rely more on its functions
89 ;; * regexp options for ffap-string-at-point, like font-lock (MCOOK)
90 ;; * v19: could replace `ffap-locate-file' with a quieter `locate-library'
91 ;; * handle "$(VAR)" in Makefiles
92 ;; * use the font-lock machinery
93
94 \f
95 ;;; Code:
96
97 (provide 'ffap)
98
99 ;; Please do not delete this variable, it is checked in bug reports.
100 (defconst ffap-version "1.9-fsf <97/06/25 13:21:41 mic>"
101 "The version of ffap: \"Major.Minor-Build <Timestamp>\"")
102
103
104 (defgroup ffap nil
105 "Find file or URL at point."
106 :link '(url-link :tag "URL" "ftp://ftp.mathcs.emory.edu/pub/mic/emacs/")
107 :group 'matching
108 :group 'convenience)
109
110 ;; The code is organized in pages, separated by formfeed characters.
111 ;; See the next two pages for standard customization ideas.
112
113 \f
114 ;;; User Variables:
115
116 (defun ffap-soft-value (name &optional default)
117 "Return value of symbol with NAME, if it is interned.
118 Otherwise return nil (or the optional DEFAULT value)."
119 ;; Bug: (ffap-soft-value "nil" 5) --> 5
120 (let ((sym (intern-soft name)))
121 (if (and sym (boundp sym)) (symbol-value sym) default)))
122
123 (defcustom ffap-ftp-regexp
124 ;; This used to test for ange-ftp or efs being present, but it should be
125 ;; harmless (and simpler) to give it this value unconditionally.
126 "\\`/[^/:]+:"
127 "*Paths matching this regexp are treated as remote ftp paths by ffap.
128 If nil, ffap neither recognizes nor generates such paths."
129 :type '(choice (const :tag "Disable" nil)
130 (const :tag "Standard" "\\`/[^/:]+:")
131 regexp)
132 :group 'ffap)
133
134 (defcustom ffap-url-unwrap-local t
135 "*If non-nil, convert `file:' url to local path before prompting."
136 :type 'boolean
137 :group 'ffap)
138
139 (defcustom ffap-url-unwrap-remote t
140 "*If non-nil, convert `ftp:' url to remote path before prompting.
141 This is ignored if `ffap-ftp-regexp' is nil."
142 :type 'boolean
143 :group 'ffap)
144
145 (defcustom ffap-ftp-default-user "anonymous"
146 "*User name in ftp paths generated by `ffap-host-to-path'.
147 Note this name may be omitted if it equals the default
148 \(either `efs-default-user' or `ange-ftp-default-user'\)."
149 :type 'string
150 :group 'ffap)
151
152 (defcustom ffap-rfs-regexp
153 ;; Remote file access built into file system? HP rfa or Andrew afs:
154 "\\`/\\(afs\\|net\\)/."
155 ;; afs only: (and (file-exists-p "/afs") "\\`/afs/.")
156 "*Matching paths are treated as remote. nil to disable."
157 :type 'regexp
158 :group 'ffap)
159
160 (defvar ffap-url-regexp
161 ;; Could just use `url-nonrelative-link' of w3, if loaded.
162 ;; This regexp is not exhaustive, it just matches common cases.
163 (concat
164 "\\`\\("
165 "news\\(post\\)?:\\|mailto:\\|file:" ; no host ok
166 "\\|"
167 "\\(ftp\\|https?\\|telnet\\|gopher\\|www\\|wais\\)://" ; needs host
168 "\\)." ; require one more character
169 )
170 "Regexp matching URL's. nil to disable URL features in ffap.")
171
172 (defcustom ffap-foo-at-bar-prefix "mailto"
173 "*Presumed URL prefix type of strings like \"<foo.9z@bar>\".
174 Sensible values are nil, \"news\", or \"mailto\"."
175 :type '(choice (const "mailto")
176 (const "news")
177 (const :tag "Disable" nil)
178 ;; string -- possible, but not really useful
179 )
180 :group 'ffap)
181
182 \f
183 ;;; Peanut Gallery (More User Variables):
184 ;;
185 ;; Users of ffap occasionally suggest new features. If I consider
186 ;; those features interesting but not clear winners (a matter of
187 ;; personal taste) I try to leave options to enable them. Read
188 ;; through this section for features that you like, put an appropriate
189 ;; enabler in your .emacs file.
190
191 (defcustom ffap-dired-wildcards nil
192 ;; Suggestion from RHOGEE, 07 Jul 1994. Disabled, dired is still
193 ;; available by "C-x C-d <pattern>", and valid filenames may
194 ;; sometimes contain wildcard characters.
195 "*A regexp matching filename wildcard characters, or nil.
196 If `find-file-at-point' gets a filename matching this pattern,
197 it passes it on to `dired' instead of `find-file'."
198 :type '(choice (const :tag "Disable" nil)
199 (const :tag "Enable" "[*?][^/]*\\'")
200 ;; regexp -- probably not useful
201 )
202 :group 'ffap)
203
204 (defcustom ffap-newfile-prompt nil
205 ;; Suggestion from RHOGEE, 11 Jul 1994. Disabled, I think this is
206 ;; better handled by `find-file-not-found-hooks'.
207 "*Whether `find-file-at-point' prompts about a nonexistent file."
208 :type 'boolean
209 :group 'ffap)
210
211 (defcustom ffap-require-prefix nil
212 ;; Suggestion from RHOGEE, 20 Oct 1994.
213 "*If set, reverses the prefix argument to `find-file-at-point'.
214 This is nil so neophytes notice ffap. Experts may prefer to disable
215 ffap most of the time."
216 :type 'boolean
217 :group 'ffap)
218
219 (defcustom ffap-file-finder 'find-file
220 "*The command called by `find-file-at-point' to find a file."
221 :type 'function
222 :group 'ffap)
223 (put 'ffap-file-finder 'risky-local-variable t)
224
225 (defcustom ffap-url-fetcher
226 (if (fboundp 'browse-url)
227 'browse-url ; rely on browse-url-browser-function
228 'w3-fetch)
229 ;; Remote control references:
230 ;; http://www.ncsa.uiuc.edu/SDG/Software/XMosaic/remote-control.html
231 ;; http://home.netscape.com/newsref/std/x-remote.html
232 "*A function of one argument, called by ffap to fetch an URL.
233 Reasonable choices are `w3-fetch' or a `browse-url-*' function.
234 For a fancy alternative, get `ffap-url.el'."
235 :type '(choice (const w3-fetch)
236 (const browse-url) ; in recent versions of browse-url
237 (const browse-url-netscape)
238 (const browse-url-mosaic)
239 function)
240 :group 'ffap)
241 (put 'ffap-url-fetcher 'risky-local-variable t)
242
243 \f
244 ;;; Compatibility:
245 ;;
246 ;; This version of ffap supports Emacs 20 only, see the ftp site
247 ;; for a more general version. The following functions are necessary
248 ;; "leftovers" from the more general version.
249
250 (defun ffap-mouse-event nil ; current mouse event, or nil
251 (and (listp last-nonmenu-event) last-nonmenu-event))
252 (defun ffap-event-buffer (event)
253 (window-buffer (car (event-start event))))
254
255 \f
256 ;;; Find Next Thing in buffer (`ffap-next'):
257 ;;
258 ;; Original ffap-next-url (URL's only) from RPECK 30 Mar 1995. Since
259 ;; then, broke it up into ffap-next-guess (noninteractive) and
260 ;; ffap-next (a command). It now work on files as well as url's.
261
262 (defcustom ffap-next-regexp
263 ;; If you want ffap-next to find URL's only, try this:
264 ;; (and ffap-url-regexp (string-match "\\\\`" ffap-url-regexp)
265 ;; (concat "\\<" (substring ffap-url-regexp 2))))
266 ;;
267 ;; It pays to put a big fancy regexp here, since ffap-guesser is
268 ;; much more time-consuming than regexp searching:
269 "[/:.~a-zA-Z]/\\|@[a-zA-Z][-a-zA-Z0-9]*\\."
270 "*Regular expression governing movements of `ffap-next'."
271 :type 'regexp
272 :group 'ffap)
273
274 (defvar ffap-next-guess nil
275 "Last value returned by `ffap-next-guess'.")
276
277 (defvar ffap-string-at-point-region '(1 1)
278 "List (BEG END), last region returned by `ffap-string-at-point'.")
279
280 (defun ffap-next-guess (&optional back lim)
281 "Move point to next file or URL, and return it as a string.
282 If nothing is found, leave point at limit and return nil.
283 Optional BACK argument makes search backwards.
284 Optional LIM argument limits the search.
285 Only considers strings that match `ffap-next-regexp'."
286 (or lim (setq lim (if back (point-min) (point-max))))
287 (let (guess)
288 (while (not (or guess (eq (point) lim)))
289 (funcall (if back 're-search-backward 're-search-forward)
290 ffap-next-regexp lim 'move)
291 (setq guess (ffap-guesser)))
292 ;; Go to end, so we do not get same guess twice:
293 (goto-char (nth (if back 0 1) ffap-string-at-point-region))
294 (setq ffap-next-guess guess)))
295
296 ;;;###autoload
297 (defun ffap-next (&optional back wrap)
298 "Search buffer for next file or URL, and run ffap.
299 Optional argument BACK says to search backwards.
300 Optional argument WRAP says to try wrapping around if necessary.
301 Interactively: use a single prefix to search backwards,
302 double prefix to wrap forward, triple to wrap backwards.
303 Actual search is done by `ffap-next-guess'."
304 (interactive
305 (cdr (assq (prefix-numeric-value current-prefix-arg)
306 '((1) (4 t) (16 nil t) (64 t t)))))
307 (let ((pt (point))
308 (guess (ffap-next-guess back)))
309 ;; Try wraparound if necessary:
310 (and (not guess) wrap
311 (goto-char (if back (point-max) (point-min)))
312 (setq guess (ffap-next-guess back pt)))
313 (if guess
314 (progn
315 (sit-for 0) ; display point movement
316 (find-file-at-point (ffap-prompter guess)))
317 (goto-char pt) ; restore point
318 (message "No %sfiles or URL's found"
319 (if wrap "" "more ")))))
320
321 (defun ffap-next-url (&optional back wrap)
322 "Like `ffap-next', but search with `ffap-url-regexp'."
323 (interactive)
324 (let ((ffap-next-regexp ffap-url-regexp))
325 (if (interactive-p)
326 (call-interactively 'ffap-next)
327 (ffap-next back wrap))))
328
329 \f
330 ;;; Machines (`ffap-machine-p'):
331
332 ;; I cannot decide a "best" strategy here, so these are variables. In
333 ;; particular, if `Pinging...' is broken or takes too long on your
334 ;; machine, try setting these all to accept or reject.
335 (defcustom ffap-machine-p-local 'reject ; this happens often
336 "*What `ffap-machine-p' does with hostnames that have no domain.
337 Value should be a symbol, one of `ping', `accept', and `reject'."
338 :type '(choice (const ping)
339 (const accept)
340 (const reject))
341 :group 'ffap)
342 (defcustom ffap-machine-p-known 'ping ; `accept' for higher speed
343 "*What `ffap-machine-p' does with hostnames that have a known domain.
344 Value should be a symbol, one of `ping', `accept', and `reject'.
345 See `mail-extr.el' for the known domains."
346 :type '(choice (const ping)
347 (const accept)
348 (const reject))
349 :group 'ffap)
350 (defcustom ffap-machine-p-unknown 'reject
351 "*What `ffap-machine-p' does with hostnames that have an unknown domain.
352 Value should be a symbol, one of `ping', `accept', and `reject'.
353 See `mail-extr.el' for the known domains."
354 :type '(choice (const ping)
355 (const accept)
356 (const reject))
357 :group 'ffap)
358
359 (defun ffap-what-domain (domain)
360 ;; Like what-domain in mail-extr.el, returns string or nil.
361 (require 'mail-extr)
362 (let ((ob (or (ffap-soft-value "mail-extr-all-top-level-domains")
363 (ffap-soft-value "all-top-level-domains")))) ; XEmacs
364 (and ob (get (intern-soft (downcase domain) ob) 'domain-name))))
365
366 (defun ffap-machine-p (host &optional service quiet strategy)
367 "Decide whether HOST is the name of a real, reachable machine.
368 Depending on the domain (none, known, or unknown), follow the strategy
369 named by the variable `ffap-machine-p-local', `ffap-machine-p-known',
370 or `ffap-machine-p-unknown'. Pinging uses `open-network-stream'.
371 Optional SERVICE specifies the port used \(default \"discard\"\).
372 Optional QUIET flag suppresses the \"Pinging...\" message.
373 Optional STRATEGY overrides the three variables above.
374 Returned values:
375 t means that HOST answered.
376 'accept means the relevant variable told us to accept.
377 \"mesg\" means HOST exists, but does not respond for some reason."
378 ;; Try some (Emory local):
379 ;; (ffap-machine-p "ftp" nil nil 'ping)
380 ;; (ffap-machine-p "nonesuch" nil nil 'ping)
381 ;; (ffap-machine-p "ftp.mathcs.emory.edu" nil nil 'ping)
382 ;; (ffap-machine-p "mathcs" 5678 nil 'ping)
383 ;; (ffap-machine-p "foo.bonk" nil nil 'ping)
384 ;; (ffap-machine-p "foo.bonk.com" nil nil 'ping)
385 (if (or (string-match "[^-a-zA-Z0-9.]" host) ; Illegal chars (?)
386 (not (string-match "[^0-9]" host))) ; 1: a number? 2: quick reject
387 nil
388 (let* ((domain
389 (and (string-match "\\.[^.]*$" host)
390 (downcase (substring host (1+ (match-beginning 0))))))
391 (what-domain (if domain (ffap-what-domain domain) "Local")))
392 (or strategy
393 (setq strategy
394 (cond ((not domain) ffap-machine-p-local)
395 ((not what-domain) ffap-machine-p-unknown)
396 (t ffap-machine-p-known))))
397 (cond
398 ((eq strategy 'accept) 'accept)
399 ((eq strategy 'reject) nil)
400 ((not (fboundp 'open-network-stream)) nil)
401 ;; assume (eq strategy 'ping)
402 (t
403 (or quiet
404 (if (stringp what-domain)
405 (message "Pinging %s (%s)..." host what-domain)
406 (message "Pinging %s ..." host)))
407 (condition-case error
408 (progn
409 (delete-process
410 (open-network-stream
411 "ffap-machine-p" nil host (or service "discard")))
412 t)
413 (error
414 (let ((mesg (car (cdr error))))
415 (cond
416 ;; v18:
417 ((string-match "^Unknown host" mesg) nil)
418 ((string-match "not responding$" mesg) mesg)
419 ;; v19:
420 ;; (file-error "connection failed" "permission denied"
421 ;; "nonesuch" "ffap-machine-p")
422 ;; (file-error "connection failed" "host is unreachable"
423 ;; "gopher.house.gov" "ffap-machine-p")
424 ;; (file-error "connection failed" "address already in use"
425 ;; "ftp.uu.net" "ffap-machine-p")
426 ((equal mesg "connection failed")
427 (if (equal (nth 2 error) "permission denied")
428 nil ; host does not exist
429 ;; Other errors mean the host exists:
430 (nth 2 error)))
431 ;; Could be "Unknown service":
432 (t (signal (car error) (cdr error))))))))))))
433
434 \f
435 ;;; Possibly Remote Resources:
436
437 (defun ffap-replace-path-component (fullname name)
438 "In remote FULLNAME, replace path with NAME. May return nil."
439 ;; Use ange-ftp or efs if loaded, but do not load them otherwise.
440 (let (found)
441 (mapcar
442 (function (lambda (sym) (and (fboundp sym) (setq found sym))))
443 '(
444 efs-replace-path-component
445 ange-ftp-replace-path-component
446 ange-ftp-replace-name-component
447 ))
448 (and found
449 (fset 'ffap-replace-path-component found)
450 (funcall found fullname name))))
451 ;; (ffap-replace-path-component "/who@foo.com:/whatever" "/new")
452
453 (defun ffap-file-suffix (file)
454 "Return trailing `.foo' suffix of FILE, or nil if none."
455 (let ((pos (string-match "\\.[^./]*\\'" file)))
456 (and pos (substring file pos nil))))
457
458 (defvar ffap-compression-suffixes '(".gz" ".Z") ; .z is mostly dead
459 "List of suffixes tried by `ffap-file-exists-string'.")
460
461 (defun ffap-file-exists-string (file &optional nomodify)
462 ;; Early jka-compr versions modified file-exists-p to return the
463 ;; filename, maybe modified by adding a suffix like ".gz". That
464 ;; broke the interface of file-exists-p, so it was later dropped.
465 ;; Here we document and simulate the old behavior.
466 "Return FILE (maybe modified) if the file exists, else nil.
467 When using jka-compr (a.k.a. `auto-compression-mode'), the returned
468 name may have a suffix added from `ffap-compression-suffixes'.
469 The optional NOMODIFY argument suppresses the extra search."
470 (cond
471 ((not file) nil) ; quietly reject nil
472 ((file-exists-p file) file) ; try unmodified first
473 ;; three reasons to suppress search:
474 (nomodify nil)
475 ((not (rassq 'jka-compr-handler file-name-handler-alist)) nil)
476 ((member (ffap-file-suffix file) ffap-compression-suffixes) nil)
477 (t ; ok, do the search
478 (let ((list ffap-compression-suffixes) try ret)
479 (while list
480 (if (file-exists-p (setq try (concat file (car list))))
481 (setq ret try list nil)
482 (setq list (cdr list))))
483 ret))))
484
485 (defun ffap-file-remote-p (filename)
486 "If FILENAME looks remote, return it (maybe slightly improved)."
487 ;; (ffap-file-remote-p "/user@foo.bar.com:/pub")
488 ;; (ffap-file-remote-p "/cssun.mathcs.emory.edu://path")
489 ;; (ffap-file-remote-p "/ffap.el:80")
490 (or (and ffap-ftp-regexp
491 (string-match ffap-ftp-regexp filename)
492 ;; Convert "/host.com://path" to "/host:/path", to handle a dieing
493 ;; practice of advertising ftp paths as "host.dom://path".
494 (if (string-match "//" filename)
495 ;; (replace-match "/" nil nil filename)
496 (concat (substring filename 0 (1+ (match-beginning 0)))
497 (substring filename (match-end 0)))
498 filename))
499 (and ffap-rfs-regexp
500 (string-match ffap-rfs-regexp filename)
501 filename)))
502
503 (defun ffap-machine-at-point nil
504 "Return machine name at point if it exists, or nil."
505 (let ((mach (ffap-string-at-point 'machine)))
506 (and (ffap-machine-p mach) mach)))
507
508 (defsubst ffap-host-to-path (host)
509 "Convert HOST to something like \"/USER@HOST:\" or \"/HOST:\".
510 Looks at `ffap-ftp-default-user', returns \"\" for \"localhost\"."
511 (if (equal host "localhost")
512 ""
513 (let ((user ffap-ftp-default-user))
514 ;; Avoid including the user if it is same as default:
515 (if (or (equal user (ffap-soft-value "ange-ftp-default-user"))
516 (equal user (ffap-soft-value "efs-default-user")))
517 (setq user nil))
518 (concat "/" user (and user "@") host ":"))))
519
520 (defun ffap-fixup-machine (mach)
521 ;; Convert a hostname into an url, an ftp path, or nil.
522 (cond
523 ((not (and ffap-url-regexp (stringp mach))) nil)
524 ;; gopher.well.com
525 ((string-match "\\`gopher[-.]" mach) ; or "info"?
526 (concat "gopher://" mach "/"))
527 ;; www.ncsa.uiuc.edu
528 ((and (string-match "\\`w\\(ww\\|eb\\)[-.]" mach))
529 (concat "http://" mach "/"))
530 ;; More cases? Maybe "telnet:" for archie?
531 (ffap-ftp-regexp (ffap-host-to-path mach))
532 ))
533
534 (defvar ffap-newsgroup-regexp "^[a-z]+\\.[-+a-z_0-9.]+$"
535 "Strings not matching this fail `ffap-newsgroup-p'.")
536 (defvar ffap-newsgroup-heads ; entirely inadequate
537 '("alt" "comp" "gnu" "misc" "news" "sci" "soc" "talk")
538 "Used by `ffap-newsgroup-p' if gnus is not running.")
539
540 (defun ffap-newsgroup-p (string)
541 "Return STRING if it looks like a newsgroup name, else nil."
542 (and
543 (string-match ffap-newsgroup-regexp string)
544 (let ((htbs '(gnus-active-hashtb gnus-newsrc-hashtb gnus-killed-hashtb))
545 (heads ffap-newsgroup-heads)
546 htb ret)
547 (while htbs
548 (setq htb (car htbs) htbs (cdr htbs))
549 (condition-case nil
550 (progn
551 ;; errs: htb symbol may be unbound, or not a hash-table.
552 ;; gnus-gethash is just a macro for intern-soft.
553 (and (symbol-value htb)
554 (intern-soft string (symbol-value htb))
555 (setq ret string htbs nil))
556 ;; If we made it this far, gnus is running, so ignore "heads":
557 (setq heads nil))
558 (error nil)))
559 (or ret (not heads)
560 (let ((head (string-match "\\`\\([a-z]+\\)\\." string)))
561 (and head (setq head (substring string 0 (match-end 1)))
562 (member head heads)
563 (setq ret string))))
564 ;; Is there ever a need to modify string as a newsgroup name?
565 ret)))
566
567 (defsubst ffap-url-p (string)
568 "If STRING looks like an url, return it (maybe improved), else nil."
569 (let ((case-fold-search t))
570 (and ffap-url-regexp (string-match ffap-url-regexp string)
571 ;; I lied, no improvement:
572 string)))
573
574 ;; Broke these out of ffap-fixup-url, for use of ffap-url package.
575 (defsubst ffap-url-unwrap-local (url)
576 "Return URL as a local file, or nil. Ignores `ffap-url-regexp'."
577 (and (string-match "\\`\\(file\\|ftp\\):/?\\([^/]\\|\\'\\)" url)
578 (substring url (1+ (match-end 1)))))
579 (defsubst ffap-url-unwrap-remote (url)
580 "Return URL as a remote file, or nil. Ignores `ffap-url-regexp'."
581 (and (string-match "\\`\\(ftp\\|file\\)://\\([^:/]+\\):?\\(/.*\\)" url)
582 (concat
583 (ffap-host-to-path (substring url (match-beginning 2) (match-end 2)))
584 (substring url (match-beginning 3) (match-end 3)))))
585 ;; Test: (ffap-url-unwrap-remote "ftp://foo.com/bar.boz")
586
587 (defun ffap-fixup-url (url)
588 "Clean up URL and return it, maybe as a file name."
589 (cond
590 ((not (stringp url)) nil)
591 ((and ffap-url-unwrap-local (ffap-url-unwrap-local url)))
592 ((and ffap-url-unwrap-remote ffap-ftp-regexp
593 (ffap-url-unwrap-remote url)))
594 ((fboundp 'url-normalize-url) ; may autoload url (part of w3)
595 (url-normalize-url url))
596 (url)))
597
598 \f
599 ;;; Path Handling:
600 ;;
601 ;; The upcoming ffap-alist actions need various utilities to prepare
602 ;; and search paths of directories. Too many features here.
603
604 ;; (defun ffap-last (l) (while (cdr l) (setq l (cdr l))) l)
605 ;; (defun ffap-splice (func inlist)
606 ;; "Equivalent to (apply 'nconc (mapcar FUNC INLIST)), but less consing."
607 ;; (let* ((head (cons 17 nil)) (last head))
608 ;; (while inlist
609 ;; (setcdr last (funcall func (car inlist)))
610 ;; (setq last (ffap-last last) inlist (cdr inlist)))
611 ;; (cdr head)))
612
613 (defun ffap-list-env (env &optional empty)
614 "Return a list of strings parsed from environment variable ENV.
615 Optional EMPTY is the default list if \(getenv ENV\) is undefined, and
616 also is substituted for the first empty-string component, if there is one.
617 Uses `path-separator' to separate the path into substrings."
618 ;; We cannot use parse-colon-path (files.el), since it kills
619 ;; "//" entries using file-name-as-directory.
620 ;; Similar: dired-split, TeX-split-string, and RHOGEE's psg-list-env
621 ;; in ff-paths and bib-cite. The EMPTY arg may help mimic kpathsea.
622 (if (or empty (getenv env)) ; should return something
623 (let ((start 0) match dir ret)
624 (setq env (concat (getenv env) path-separator))
625 (while (setq match (string-match path-separator env start))
626 (setq dir (substring env start match) start (1+ match))
627 ;;(and (file-directory-p dir) (not (member dir ret)) ...)
628 (setq ret (cons dir ret)))
629 (setq ret (nreverse ret))
630 (and empty (setq match (member "" ret))
631 (progn ; allow string or list here
632 (setcdr match (append (cdr-safe empty) (cdr match)))
633 (setcar match (or (car-safe empty) empty))))
634 ret)))
635
636 (defun ffap-reduce-path (path)
637 "Remove duplicates and non-directories from PATH list."
638 (let (ret tem)
639 (while path
640 (setq tem path path (cdr path))
641 (if (equal (car tem) ".") (setcar tem ""))
642 (or (member (car tem) ret)
643 (not (file-directory-p (car tem)))
644 (progn (setcdr tem ret) (setq ret tem))))
645 (nreverse ret)))
646
647 (defun ffap-all-subdirs (dir &optional depth)
648 "Return list all subdirectories under DIR, starting with itself.
649 Directories beginning with \".\" are ignored, and directory symlinks
650 are listed but never searched (to avoid loops).
651 Optional DEPTH limits search depth."
652 (and (file-exists-p dir)
653 (ffap-all-subdirs-loop (expand-file-name dir) (or depth -1))))
654
655 (defun ffap-all-subdirs-loop (dir depth) ; internal
656 (setq depth (1- depth))
657 (cons dir
658 (and (not (eq depth -1))
659 (apply 'nconc
660 (mapcar
661 (function
662 (lambda (d)
663 (cond
664 ((not (file-directory-p d)) nil)
665 ((file-symlink-p d) (list d))
666 (t (ffap-all-subdirs-loop d depth)))))
667 (directory-files dir t "\\`[^.]")
668 )))))
669
670 (defvar ffap-kpathsea-depth 1
671 "Bound on depth of subdirectory search in `ffap-kpathsea-expand-path'.
672 Set to 0 to avoid all searching, or nil for no limit.")
673
674 (defun ffap-kpathsea-expand-path (path)
675 "Replace each \"//\"-suffixed dir in PATH by a list of its subdirs.
676 The subdirs begin with the original directory, and the depth of the
677 search is bounded by `ffap-kpathsea-depth'. This is intended to mimic
678 kpathsea, a library used by some versions of TeX."
679 (apply 'nconc
680 (mapcar
681 (function
682 (lambda (dir)
683 (if (string-match "[^/]//\\'" dir)
684 (ffap-all-subdirs (substring dir 0 -2) ffap-kpathsea-depth)
685 (list dir))))
686 path)))
687
688 (defun ffap-locate-file (file &optional nosuffix path dir-ok)
689 ;; The Emacs 20 version of locate-library could almost replace this,
690 ;; except it does not let us overrride the suffix list. The
691 ;; compression-suffixes search moved to ffap-file-exists-string.
692 "A generic path-searching function, mimics `load' by default.
693 Returns path to file that \(load FILE\) would load, or nil.
694 Optional NOSUFFIX, if nil or t, is like the fourth argument
695 for load: whether to try the suffixes (\".elc\" \".el\" \"\").
696 If a nonempty list, it is a list of suffixes to try instead.
697 Optional PATH is a list of directories instead of `load-path'.
698 Optional DIR-OK means that returning a directory is allowed,
699 DIR-OK is already implicit if FILE looks like a directory.
700
701 This uses ffap-file-exists-string, which may try adding suffixes from
702 `ffap-compression-suffixes'."
703 (or path (setq path load-path))
704 (or dir-ok (setq dir-ok (equal "" (file-name-nondirectory file))))
705 (if (file-name-absolute-p file)
706 (setq path (list (file-name-directory file))
707 file (file-name-nondirectory file)))
708 (let ((suffixes-to-try
709 (cond
710 ((consp nosuffix) nosuffix)
711 (nosuffix '(""))
712 (t '(".elc" ".el" ""))))
713 suffixes try found)
714 (while path
715 (setq suffixes suffixes-to-try)
716 (while suffixes
717 (setq try (ffap-file-exists-string
718 (expand-file-name
719 (concat file (car suffixes)) (car path))))
720 (if (and try (or dir-ok (not (file-directory-p try))))
721 (setq found try suffixes nil path nil)
722 (setq suffixes (cdr suffixes))))
723 (setq path (cdr path)))
724 found))
725
726 \f
727 ;;; Action List (`ffap-alist'):
728 ;;
729 ;; These search actions depend on the major-mode or regexps matching
730 ;; the current name. The little functions and their variables are
731 ;; deferred to the next section, at some loss of "code locality". A
732 ;; good example of featuritis. Trim this list for speed.
733
734 (defvar ffap-alist
735 '(
736 ("" . ffap-completable) ; completion, slow on some systems
737 ("\\.info\\'" . ffap-info) ; gzip.info
738 ("\\`info/" . ffap-info-2) ; info/emacs
739 ("\\`[-a-z]+\\'" . ffap-info-3) ; (emacs)Top [only in the parentheses]
740 ("\\.elc?\\'" . ffap-el) ; simple.el, simple.elc
741 (emacs-lisp-mode . ffap-el-mode) ; rmail, gnus, simple, custom
742 ;; (lisp-interaction-mode . ffap-el-mode) ; maybe
743 (finder-mode . ffap-el-mode) ; type {C-h p} and try it
744 (help-mode . ffap-el-mode) ; maybe useful
745 (c++-mode . ffap-c-mode) ; search ffap-c-path
746 (cc-mode . ffap-c-mode) ; same
747 ("\\.\\([chCH]\\|cc\\|hh\\)\\'" . ffap-c-mode) ; stdio.h
748 (fortran-mode . ffap-fortran-mode) ; FORTRAN requested by MDB
749 ("\\.[fF]\\'" . ffap-fortran-mode)
750 (tex-mode . ffap-tex-mode) ; search ffap-tex-path
751 (latex-mode . ffap-latex-mode) ; similar
752 ("\\.\\(tex\\|sty\\|doc\\|cls\\)\\'" . ffap-tex)
753 ("\\.bib\\'" . ffap-bib) ; search ffap-bib-path
754 ("\\`\\." . ffap-home) ; .emacs, .bashrc, .profile
755 ("\\`~/" . ffap-lcd) ; |~/misc/ffap.el.Z|
756 ("^[Rr][Ff][Cc][- #]?\\([0-9]+\\)" ; no $
757 . ffap-rfc) ; "100% RFC2100 compliant"
758 (dired-mode . ffap-dired) ; maybe in a subdirectory
759 )
760 "Alist of \(KEY . FUNCTION\) pairs parsed by `ffap-file-at-point'.
761 If string NAME at point (maybe \"\") is not a file or url, these pairs
762 specify actions to try creating such a string. A pair matches if either
763 KEY is a symbol, and it equals `major-mode', or
764 KEY is a string, it should matches NAME as a regexp.
765 On a match, \(FUNCTION NAME\) is called and should return a file, an
766 url, or nil. If nil, search the alist for further matches.")
767
768 (put 'ffap-alist 'risky-local-variable t)
769
770 ;; Example `ffap-alist' modifications:
771 ;;
772 ;; (setq ffap-alist ; remove a feature in `ffap-alist'
773 ;; (delete (assoc 'c-mode ffap-alist) ffap-alist))
774 ;;
775 ;; (setq ffap-alist ; add something to `ffap-alist'
776 ;; (cons
777 ;; (cons "^YSN[0-9]+$"
778 ;; (defun ffap-ysn (name)
779 ;; (concat
780 ;; "http://www.physics.uiuc.edu/"
781 ;; "ysn/httpd/htdocs/ysnarchive/issuefiles/"
782 ;; (substring name 3) ".html")))
783 ;; ffap-alist))
784
785 \f
786 ;;; Action Definitions:
787 ;;
788 ;; Define various default members of `ffap-alist'.
789
790 (defun ffap-completable (name)
791 (let* ((dir (or (file-name-directory name) default-directory))
792 (cmp (file-name-completion (file-name-nondirectory name) dir)))
793 (and cmp (concat dir cmp))))
794
795 (defun ffap-home (name) (ffap-locate-file name t '("~")))
796
797 (defun ffap-info (name)
798 (ffap-locate-file
799 name '("" ".info")
800 (or (ffap-soft-value "Info-directory-list")
801 (ffap-soft-value "Info-default-directory-list")
802 )))
803
804 (defun ffap-info-2 (name) (ffap-info (substring name 5)))
805
806 (defun ffap-info-3 (name)
807 ;; This ignores the node! "(emacs)Top" same as "(emacs)Intro"
808 (and (equal (ffap-string-around) "()") (ffap-info name)))
809
810 (defun ffap-el (name) (ffap-locate-file name t))
811
812 (defun ffap-el-mode (name)
813 ;; If name == "foo.el" we will skip it, since ffap-el already
814 ;; searched for it once. (This assumes the default ffap-alist.)
815 (and (not (string-match "\\.el\\'" name))
816 (ffap-locate-file name '(".el"))))
817
818 (defvar ffap-c-path
819 ;; Need smarter defaults here! Suggestions welcome.
820 '("/usr/include" "/usr/local/include"))
821 (defun ffap-c-mode (name)
822 (ffap-locate-file name t ffap-c-path))
823
824 (defvar ffap-fortran-path '("../include" "/usr/include"))
825
826 (defun ffap-fortran-mode (name)
827 (ffap-locate-file name t ffap-fortran-path))
828
829 (defvar ffap-tex-path
830 t ; delayed initialization
831 "Path where `ffap-tex-mode' looks for tex files.
832 If t, `ffap-tex-init' will initialize this when needed.")
833
834 (defun ffap-tex-init nil
835 ;; Compute ffap-tex-path if it is now t.
836 (and (eq t ffap-tex-path)
837 ;; this may be slow, so say something
838 (message "Initializing ffap-tex-path ...")
839 (setq ffap-tex-path
840 (ffap-reduce-path
841 (cons
842 "."
843 (ffap-kpathsea-expand-path
844 (append
845 (ffap-list-env "TEXINPUTS")
846 ;; (ffap-list-env "BIBINPUTS")
847 (ffap-soft-value
848 "TeX-macro-global" ; AUCTeX
849 '("/usr/local/lib/tex/macros"
850 "/usr/local/lib/tex/inputs")))))))))
851
852 (defun ffap-tex-mode (name)
853 (ffap-tex-init)
854 (ffap-locate-file name '(".tex" "") ffap-tex-path))
855
856 (defun ffap-latex-mode (name)
857 (ffap-tex-init)
858 ;; only rare need for ""
859 (ffap-locate-file name '(".cls" ".sty" ".tex" "") ffap-tex-path))
860
861 (defun ffap-tex (name)
862 (ffap-tex-init)
863 (ffap-locate-file name t ffap-tex-path))
864
865 (defvar ffap-bib-path
866 (ffap-list-env "BIBINPUTS"
867 (ffap-reduce-path
868 '(
869 ;; a few wild guesses, need better
870 "/usr/local/lib/tex/macros/bib" ; Solaris?
871 "/usr/lib/texmf/bibtex/bib" ; Linux?
872 ))))
873
874 (defun ffap-bib (name)
875 (ffap-locate-file name t ffap-bib-path))
876
877 (defun ffap-dired (name)
878 (let ((pt (point)) dir try)
879 (save-excursion
880 (and (progn
881 (beginning-of-line)
882 (looking-at " *[-d]r[-w][-x][-r][-w][-x][-r][-w][-x] "))
883 (re-search-backward "^ *$" nil t)
884 (re-search-forward "^ *\\([^ \t\n:]*\\):\n *total " pt t)
885 (file-exists-p
886 (setq try
887 (expand-file-name
888 name
889 (buffer-substring
890 (match-beginning 1) (match-end 1)))))
891 try))))
892
893 ;; Maybe a "Lisp Code Directory" reference:
894 (defun ffap-lcd (name)
895 (and
896 (or
897 ;; lisp-dir-apropos output buffer:
898 (string-match "Lisp Code Dir" (buffer-name))
899 ;; Inside an LCD entry like |~/misc/ffap.el.Z|,
900 ;; or maybe the holy LCD-Datafile itself:
901 (member (ffap-string-around) '("||" "|\n")))
902 (concat
903 ;; lispdir.el may not be loaded yet:
904 (ffap-host-to-path
905 (ffap-soft-value "elisp-archive-host"
906 "archive.cis.ohio-state.edu"))
907 (file-name-as-directory
908 (ffap-soft-value "elisp-archive-directory"
909 "/pub/gnu/emacs/elisp-archive/"))
910 (substring name 2))))
911
912 (defvar ffap-rfc-path
913 (concat (ffap-host-to-path "ds.internic.net") "/rfc/rfc%s.txt"))
914
915 (defun ffap-rfc (name)
916 (format ffap-rfc-path
917 (substring name (match-beginning 1) (match-end 1))))
918
919 \f
920 ;;; At-Point Functions:
921
922 (defvar ffap-string-at-point-mode-alist
923 '(
924 ;; The default, used when the `major-mode' is not found.
925 ;; Slightly controversial decisions:
926 ;; * strip trailing "@" and ":"
927 ;; * no commas (good for latex)
928 (file "--:$+<>@-Z_a-z~" "<@" "@>;.,!?:")
929 ;; An url, or maybe a email/news message-id:
930 (url "--:=&?$+@-Z_a-z~#,%" "^A-Za-z0-9" ":;.,!?")
931 ;; Find a string that does *not* contain a colon:
932 (nocolon "--9$+<>@-Z_a-z~" "<@" "@>;.,!?")
933 ;; A machine:
934 (machine "-a-zA-Z0-9." "" ".")
935 ;; Mathematica paths: allow backquotes
936 (math-mode ",-:$+<>@-Z_a-z~`" "<" "@>;.,!?`:")
937 )
938 "Alist of \(MODE CHARS BEG END\), where MODE is a symbol,
939 possibly a major-mode name, or one of the symbol
940 `file', `url', `machine', and `nocolon'.
941 `ffap-string-at-point' uses the data fields as follows:
942 1. find a maximal string of CHARS around point,
943 2. strip BEG chars before point from the beginning,
944 3. Strip END chars after point from the end.")
945
946 (defvar ffap-string-at-point nil
947 ;; Added at suggestion of RHOGEE (for ff-paths), 7/24/95.
948 "Last string returned by `ffap-string-at-point'.")
949
950 (defun ffap-string-at-point (&optional mode)
951 "Return a string of characters from around point.
952 MODE (defaults to value of `major-mode') is a symbol used to look up string
953 syntax parameters in `ffap-string-at-point-mode-alist'.
954 If MODE is not found, we use `file' instead of MODE.
955 Sets `ffap-string-at-point' and `ffap-string-at-point-region'."
956 (let* ((args
957 (cdr
958 (or (assq (or mode major-mode) ffap-string-at-point-mode-alist)
959 (assq 'file ffap-string-at-point-mode-alist))))
960 (pt (point))
961 (str
962 (buffer-substring
963 (save-excursion
964 (skip-chars-backward (car args))
965 (skip-chars-forward (nth 1 args) pt)
966 (setcar ffap-string-at-point-region (point)))
967 (save-excursion
968 (skip-chars-forward (car args))
969 (skip-chars-backward (nth 2 args) pt)
970 (setcar (cdr ffap-string-at-point-region) (point))))))
971 (set-text-properties 0 (length str) nil str)
972 (setq ffap-string-at-point str)))
973
974 (defun ffap-string-around nil
975 ;; Sometimes useful to decide how to treat a string.
976 "Return string of two chars around last `ffap-string-at-point'.
977 Assumes the buffer has not changed."
978 (save-excursion
979 (format "%c%c"
980 (progn
981 (goto-char (car ffap-string-at-point-region))
982 (preceding-char)) ; maybe 0
983 (progn
984 (goto-char (nth 1 ffap-string-at-point-region))
985 (following-char)) ; maybe 0
986 )))
987
988 (defun ffap-copy-string-as-kill (&optional mode)
989 ;; Requested by MCOOK. Useful?
990 "Call `ffap-string-at-point', and copy result to `kill-ring'."
991 (interactive)
992 (let ((str (ffap-string-at-point mode)))
993 (if (equal "" str)
994 (message "No string found around point.")
995 (kill-new str)
996 ;; Older: (apply 'copy-region-as-kill ffap-string-at-point-region)
997 (message "Copied to kill ring: %s" str))))
998
999 (defun ffap-url-at-point nil
1000 "Return url from around point if it exists, or nil."
1001 ;; Could use w3's url-get-url-at-point instead. Both handle "URL:",
1002 ;; ignore non-relative links, trim punctuation. The other will
1003 ;; actually look back if point is in whitespace, but I would rather
1004 ;; ffap be less aggressive in such situations.
1005 (and
1006 ffap-url-regexp
1007 (or
1008 ;; In a w3 buffer button?
1009 (and (eq major-mode 'w3-mode)
1010 ;; interface recommended by wmperry:
1011 (w3-view-this-url t))
1012 ;; Is there a reason not to strip trailing colon?
1013 (let ((name (ffap-string-at-point 'url)))
1014 (cond
1015 ((string-match "^url:" name) (setq name (substring name 4)))
1016 ((and (string-match "\\`[^:</>@]+@[^:</>@]+[a-zA-Z0-9]\\'" name)
1017 ;; "foo@bar": could be "mailto" or "news" (a Message-ID).
1018 ;; Without "<>" it must be "mailto". Otherwise could be
1019 ;; either, so consult `ffap-foo-at-bar-prefix'.
1020 (let ((prefix (if (and (equal (ffap-string-around) "<>")
1021 ;; Expect some odd characters:
1022 (string-match "[$.0-9].*[$.0-9].*@" name))
1023 ;; Could be news:
1024 ffap-foo-at-bar-prefix
1025 "mailto")))
1026 (and prefix (setq name (concat prefix ":" name))))))
1027 ((ffap-newsgroup-p name) (setq name (concat "news:" name)))
1028 ((and (string-match "\\`[a-z0-9]+\\'" name) ; <mic> <root> <nobody>
1029 (equal (ffap-string-around) "<>")
1030 ;; (ffap-user-p name):
1031 (not (string-match "~" (expand-file-name (concat "~" name))))
1032 )
1033 (setq name (concat "mailto:" name)))
1034 )
1035 (and (ffap-url-p name) name)
1036 ))))
1037
1038 (defvar ffap-gopher-regexp
1039 "^.*\\<\\(Type\\|Name\\|Path\\|Host\\|Port\\) *= *\\(.*\\) *$"
1040 "Regexp Matching a line in a gopher bookmark (maybe indented).
1041 The two subexpressions are the KEY and VALUE.")
1042
1043 (defun ffap-gopher-at-point nil
1044 "If point is inside a gopher bookmark block, return its url."
1045 ;; `gopher-parse-bookmark' from gopher.el is not so robust
1046 (save-excursion
1047 (beginning-of-line)
1048 (if (looking-at ffap-gopher-regexp)
1049 (progn
1050 (while (and (looking-at ffap-gopher-regexp) (not (bobp)))
1051 (forward-line -1))
1052 (or (looking-at ffap-gopher-regexp) (forward-line 1))
1053 (let ((type "1") name path host (port "70"))
1054 (while (looking-at ffap-gopher-regexp)
1055 (let ((var (intern
1056 (downcase
1057 (buffer-substring (match-beginning 1)
1058 (match-end 1)))))
1059 (val (buffer-substring (match-beginning 2)
1060 (match-end 2))))
1061 (set var val)
1062 (forward-line 1)))
1063 (if (and path (string-match "^ftp:.*@" path))
1064 (concat "ftp://"
1065 (substring path 4 (1- (match-end 0)))
1066 (substring path (match-end 0)))
1067 (and (= (length type) 1)
1068 host;; (ffap-machine-p host)
1069 (concat "gopher://" host
1070 (if (equal port "70") "" (concat ":" port))
1071 "/" type path))))))))
1072
1073 (defvar ffap-ftp-sans-slash-regexp
1074 (and
1075 ffap-ftp-regexp
1076 ;; Note: by now, we know it is not an url.
1077 ;; Icky regexp avoids: default: 123: foo::bar cs:pub
1078 ;; It does match on: mic@cs: cs:/pub mathcs.emory.edu: (point at end)
1079 "\\`\\([^:@]+@[^:@]+:\\|[^@.:]+\\.[^@:]+:\\|[^:]+:[~/]\\)\\([^:]\\|\\'\\)")
1080 "Strings matching this are coerced to ftp paths by ffap.
1081 That is, ffap just prepends \"/\". Set to nil to disable.")
1082
1083 (defun ffap-file-at-point nil
1084 "Return filename from around point if it exists, or nil.
1085 Existence test is skipped for names that look remote.
1086 If the filename is not obvious, it also tries `ffap-alist',
1087 which may actually result in an url rather than a filename."
1088 ;; Note: this function does not need to look for url's, just
1089 ;; filenames. On the other hand, it is responsible for converting
1090 ;; a pseudo-url "site.com://path" to an ftp path
1091 (let* ((case-fold-search t) ; url prefixes are case-insensitive
1092 (data (match-data))
1093 (string (ffap-string-at-point)) ; uses mode alist
1094 (name
1095 (or (condition-case nil
1096 (and (not (string-match "//" string)) ; foo.com://bar
1097 (substitute-in-file-name string))
1098 (error nil))
1099 string))
1100 (abs (file-name-absolute-p name))
1101 (default-directory default-directory))
1102 (unwind-protect
1103 (cond
1104 ;; Immediate rejects (/ and // are too common in C++):
1105 ((member name '("" "/" "//" ".")) nil)
1106 ;; Immediately test local filenames. If default-directory is
1107 ;; remote, you probably already have a connection.
1108 ((and (not abs) (ffap-file-exists-string name)))
1109 ;; Try stripping off line numbers; good for compilation/grep output.
1110 ((and (not abs) (string-match ":[0-9]" name)
1111 (ffap-file-exists-string (substring name 0 (match-beginning 0)))))
1112 ;; Immediately test local filenames. If default-directory is
1113 ;; remote, you probably already have a connection.
1114 ((and (not abs) (ffap-file-exists-string name)))
1115 ;; Accept remote names without actual checking (too slow):
1116 ((if abs
1117 (ffap-file-remote-p name)
1118 ;; Try adding a leading "/" (common omission in ftp paths):
1119 (and
1120 ffap-ftp-sans-slash-regexp
1121 (string-match ffap-ftp-sans-slash-regexp name)
1122 (ffap-file-remote-p (concat "/" name)))))
1123 ;; Ok, not remote, try the existence test even if it is absolute:
1124 ((and abs (ffap-file-exists-string name)))
1125 ;; If it contains a colon, get rid of it (and return if exists)
1126 ((and (string-match path-separator name)
1127 (setq name (ffap-string-at-point 'nocolon))
1128 (ffap-file-exists-string name)))
1129 ;; File does not exist, try the alist:
1130 ((let ((alist ffap-alist) tem try case-fold-search)
1131 (while (and alist (not try))
1132 (setq tem (car alist) alist (cdr alist))
1133 (if (or (eq major-mode (car tem))
1134 (and (stringp (car tem))
1135 (string-match (car tem) name)))
1136 (and (setq try
1137 (condition-case nil
1138 (funcall (cdr tem) name)
1139 (error nil)))
1140 (setq try (or
1141 (ffap-url-p try) ; not a file!
1142 (ffap-file-remote-p try)
1143 (ffap-file-exists-string try))))))
1144 try))
1145 ;; Alist failed? Try to guess an active remote connection
1146 ;; from buffer variables, and try once more, both as an
1147 ;; absolute and relative path on that remote host.
1148 ((let* (ffap-rfs-regexp ; suppress
1149 (remote-dir
1150 (cond
1151 ((ffap-file-remote-p default-directory))
1152 ((and (eq major-mode 'internal-ange-ftp-mode)
1153 (string-match "^\\*ftp \\(.*\\)@\\(.*\\)\\*$"
1154 (buffer-name)))
1155 (concat "/" (substring (buffer-name) 5 -1) ":"))
1156 ;; This is too often a bad idea:
1157 ;;((and (eq major-mode 'w3-mode)
1158 ;; (stringp url-current-server))
1159 ;; (host-to-ange-path url-current-server))
1160 )))
1161 (and remote-dir
1162 (or
1163 (and (string-match "\\`\\(/?~?ftp\\)/" name)
1164 (ffap-file-exists-string
1165 (ffap-replace-path-component
1166 remote-dir (substring name (match-end 1)))))
1167 (ffap-file-exists-string
1168 (ffap-replace-path-component remote-dir name))))))
1169 )
1170 (set-match-data data))))
1171 \f
1172 ;;; Prompting (`ffap-read-file-or-url'):
1173 ;;
1174 ;; We want to complete filenames as in read-file-name, but also url's
1175 ;; which read-file-name-internal would truncate at the "//" string.
1176 ;; The solution here is to replace read-file-name-internal with
1177 ;; `ffap-read-file-or-url-internal', which checks the minibuffer
1178 ;; contents before attempting to complete filenames.
1179
1180 (defun ffap-read-file-or-url (prompt guess)
1181 "Read file or url from minibuffer, with PROMPT and initial GUESS."
1182 (or guess (setq guess default-directory))
1183 (let (dir)
1184 ;; Tricky: guess may have or be a local directory, like "w3/w3.elc"
1185 ;; or "w3/" or "../el/ffap.el" or "../../../"
1186 (or (ffap-url-p guess)
1187 (progn
1188 (or (ffap-file-remote-p guess)
1189 (setq guess
1190 (abbreviate-file-name (expand-file-name guess))
1191 ))
1192 (setq dir (file-name-directory guess))))
1193 (let ((minibuffer-completing-file-name t))
1194 (setq guess
1195 (completing-read
1196 prompt
1197 'ffap-read-file-or-url-internal
1198 dir
1199 nil
1200 (if dir (cons guess (length dir)) guess)
1201 (list 'file-name-history))))
1202 ;; Do file substitution like (interactive "F"), suggested by MCOOK.
1203 (or (ffap-url-p guess) (setq guess (substitute-in-file-name guess)))
1204 ;; Should not do it on url's, where $ is a common (VMS?) character.
1205 ;; Note: upcoming url.el package ought to handle this automatically.
1206 guess))
1207
1208 (defun ffap-read-url-internal (string dir action)
1209 "Complete url's from history, treating given string as valid."
1210 (let ((hist (ffap-soft-value "url-global-history-hash-table")))
1211 (cond
1212 ((not action)
1213 (or (try-completion string hist) string))
1214 ((eq action t)
1215 (or (all-completions string hist) (list string)))
1216 ;; action == lambda, documented where? Tests whether string is a
1217 ;; valid "match". Let us always say yes.
1218 (t t))))
1219
1220 (defun ffap-read-file-or-url-internal (string dir action)
1221 (unless dir
1222 (setq dir default-directory))
1223 (unless string
1224 (setq string default-directory))
1225 (if (ffap-url-p string)
1226 (ffap-read-url-internal string dir action)
1227 (read-file-name-internal string dir action)))
1228
1229 ;; The rest of this page is just to work with package complete.el.
1230 ;; This code assumes that you load ffap.el after complete.el.
1231 ;;
1232 ;; We must inform complete about whether our completion function
1233 ;; will do filename style completion. For earlier versions of
1234 ;; complete.el, this requires a defadvice. For recent versions
1235 ;; there may be a special variable for this purpose.
1236
1237 (defun ffap-complete-as-file-p nil
1238 ;; Will `minibuffer-completion-table' complete the minibuffer
1239 ;; contents as a filename? Assumes the minibuffer is current.
1240 ;; Note: t and non-nil mean somewhat different reasons.
1241 (if (eq minibuffer-completion-table 'ffap-read-file-or-url-internal)
1242 (not (ffap-url-p (buffer-string))) ; t
1243 (memq minibuffer-completion-table
1244 '(read-file-name-internal read-directory-name-internal)) ; list
1245 ))
1246
1247 (and
1248 (featurep 'complete)
1249 (if (boundp 'PC-completion-as-file-name-predicate)
1250 ;; modern version of complete.el, just set the variable:
1251 (setq PC-completion-as-file-name-predicate 'ffap-complete-as-file-p)
1252 (require 'advice)
1253 (defadvice PC-do-completion (around ffap-fix act)
1254 "Work with ffap."
1255 (let ((minibuffer-completion-table
1256 (if (eq t (ffap-complete-as-file-p))
1257 'read-file-name-internal
1258 minibuffer-completion-table)))
1259 ad-do-it))))
1260
1261 \f
1262 ;;; Highlighting (`ffap-highlight'):
1263 ;;
1264 ;; Based on overlay highlighting in Emacs 19.28 isearch.el.
1265
1266 (defvar ffap-highlight t
1267 "If non-nil, ffap highlights the current buffer substring.")
1268
1269 (defvar ffap-highlight-overlay nil
1270 "Overlay used by `ffap-highlight'.")
1271
1272 (defun ffap-highlight (&optional remove)
1273 "If `ffap-highlight' is set, highlight the guess in this buffer.
1274 That is, the last buffer substring found by `ffap-string-at-point'.
1275 Optional argument REMOVE means to remove any such highlighting.
1276 Uses the face `ffap' if it is defined, or else `highlight'."
1277 (cond
1278 (remove
1279 (and ffap-highlight-overlay
1280 (delete-overlay ffap-highlight-overlay))
1281 )
1282 ((not ffap-highlight) nil)
1283 (ffap-highlight-overlay
1284 (move-overlay
1285 ffap-highlight-overlay
1286 (car ffap-string-at-point-region)
1287 (nth 1 ffap-string-at-point-region)
1288 (current-buffer)))
1289 (t
1290 (setq ffap-highlight-overlay
1291 (apply 'make-overlay ffap-string-at-point-region))
1292 (overlay-put ffap-highlight-overlay 'face
1293 (if (facep 'ffap) 'ffap 'highlight)))))
1294
1295 \f
1296 ;;; Main Entrance (`find-file-at-point' == `ffap'):
1297
1298 (defun ffap-guesser nil
1299 "Return file or URL or nil, guessed from text around point."
1300 (or (and ffap-url-regexp
1301 (ffap-fixup-url (or (ffap-url-at-point)
1302 (ffap-gopher-at-point))))
1303 (ffap-file-at-point) ; may yield url!
1304 (ffap-fixup-machine (ffap-machine-at-point))))
1305
1306 (defun ffap-prompter (&optional guess)
1307 ;; Does guess and prompt step for find-file-at-point.
1308 ;; Extra complication for the temporary highlighting.
1309 (unwind-protect
1310 ;; This catch will let ffap-alist entries do their own prompting
1311 ;; and then maybe skip over this prompt (ff-paths, for example).
1312 (catch 'ffap-prompter
1313 (ffap-read-file-or-url
1314 (if ffap-url-regexp "Find file or URL: " "Find file: ")
1315 (prog1
1316 (setq guess (or guess (ffap-guesser))) ; using ffap-alist here
1317 (and guess (ffap-highlight))
1318 )))
1319 (ffap-highlight t)))
1320
1321 ;;;###autoload
1322 (defun find-file-at-point (&optional filename)
1323 "Find FILENAME, guessing a default from text around point.
1324 If `ffap-url-regexp' is not nil, the FILENAME may also be an URL.
1325 With a prefix, this command behaves exactly like `ffap-file-finder'.
1326 If `ffap-require-prefix' is set, the prefix meaning is reversed.
1327 See also the variables `ffap-dired-wildcards', `ffap-newfile-prompt',
1328 and the functions `ffap-file-at-point' and `ffap-url-at-point'.
1329
1330 See <ftp://ftp.mathcs.emory.edu/pub/mic/emacs/> for latest version."
1331 (interactive)
1332 (if (and (interactive-p)
1333 (if ffap-require-prefix (not current-prefix-arg)
1334 current-prefix-arg))
1335 ;; Do exactly the ffap-file-finder command, even the prompting:
1336 (let (current-prefix-arg) ; we already interpreted it
1337 (call-interactively ffap-file-finder))
1338 (or filename (setq filename (ffap-prompter)))
1339 (cond
1340 ((ffap-url-p filename)
1341 (let (current-prefix-arg) ; w3 2.3.25 bug, reported by KPC
1342 (funcall ffap-url-fetcher filename)))
1343 ;; This junk more properly belongs in a modified ffap-file-finder:
1344 ((and ffap-dired-wildcards
1345 (string-match ffap-dired-wildcards filename))
1346 (dired filename))
1347 ((or (not ffap-newfile-prompt)
1348 (file-exists-p filename)
1349 (y-or-n-p "File does not exist, create buffer? "))
1350 (funcall ffap-file-finder
1351 ;; expand-file-name fixes "~/~/.emacs" bug sent by CHUCKR.
1352 (expand-file-name filename)))
1353 ;; User does not want to find a non-existent file:
1354 ((signal 'file-error (list "Opening file buffer"
1355 "no such file or directory"
1356 filename))))))
1357
1358 ;; Shortcut: allow {M-x ffap} rather than {M-x find-file-at-point}.
1359 ;;;###autoload
1360 (defalias 'ffap 'find-file-at-point)
1361
1362 \f
1363 ;;; Menu support (`ffap-menu'):
1364
1365 (defvar ffap-menu-regexp nil
1366 "*If non-nil, overrides `ffap-next-regexp' during `ffap-menu'.
1367 Make this more restrictive for faster menu building.
1368 For example, try \":/\" for URL (and some ftp) references.")
1369
1370 (defvar ffap-menu-alist nil
1371 "Buffer local cache of menu presented by `ffap-menu'.")
1372 (make-variable-buffer-local 'ffap-menu-alist)
1373
1374 (defvar ffap-menu-text-plist
1375 (cond
1376 ((display-mouse-p) '(face bold mouse-face highlight)) ; keymap <mousy-map>
1377 (t nil))
1378 "Text properties applied to strings found by `ffap-menu-rescan'.
1379 These properties may be used to fontify the menu references.")
1380
1381 ;;;###autoload
1382 (defun ffap-menu (&optional rescan)
1383 "Put up a menu of files and urls mentioned in this buffer.
1384 Then set mark, jump to choice, and try to fetch it. The menu is
1385 cached in `ffap-menu-alist', and rebuilt by `ffap-menu-rescan'.
1386 The optional RESCAN argument \(a prefix, interactively\) forces
1387 a rebuild. Searches with `ffap-menu-regexp'."
1388 (interactive "P")
1389 ;; (require 'imenu) -- no longer used, but roughly emulated
1390 (if (or (not ffap-menu-alist) rescan
1391 ;; or if the first entry is wrong:
1392 (and ffap-menu-alist
1393 (let ((first (car ffap-menu-alist)))
1394 (save-excursion
1395 (goto-char (cdr first))
1396 (not (equal (car first) (ffap-guesser)))))))
1397 (ffap-menu-rescan))
1398 ;; Tail recursive:
1399 (ffap-menu-ask
1400 (if ffap-url-regexp "Find file or URL" "Find file")
1401 (cons (cons "*Rescan Buffer*" -1) ffap-menu-alist)
1402 'ffap-menu-cont))
1403
1404 (defun ffap-menu-cont (choice) ; continuation of ffap-menu
1405 (if (< (cdr choice) 0)
1406 (ffap-menu t) ; *Rescan*
1407 (push-mark)
1408 (goto-char (cdr choice))
1409 ;; Momentary highlight:
1410 (unwind-protect
1411 (progn
1412 (and ffap-highlight (ffap-guesser) (ffap-highlight))
1413 (sit-for 0) ; display
1414 (find-file-at-point (car choice)))
1415 (ffap-highlight t))))
1416
1417 (defun ffap-menu-ask (title alist cont)
1418 "Prompt from a menu of choices, and then apply some action.
1419 Arguments are TITLE, ALIST, and CONT \(a continuation function\).
1420 This uses either a menu or the minibuffer depending on invocation.
1421 The TITLE string is used as either the prompt or menu title.
1422 Each ALIST entry looks like (STRING . DATA) and defines one choice.
1423 Function CONT is applied to the entry chosen by the user."
1424 ;; Note: this function is used with a different continuation
1425 ;; by the ffap-url add-on package.
1426 ;; Could try rewriting to use easymenu.el or lmenu.el.
1427 (let (choice)
1428 (cond
1429 ;; Emacs mouse:
1430 ((and (fboundp 'x-popup-menu) (ffap-mouse-event))
1431 (setq choice
1432 (x-popup-menu
1433 t
1434 (list "" (cons title
1435 (mapcar (function (lambda (i) (cons (car i) i)))
1436 alist))))))
1437 ;; minibuffer with completion buffer:
1438 (t
1439 (let ((minibuffer-setup-hook 'minibuffer-completion-help))
1440 ;; Bug: prompting may assume unique strings, no "".
1441 (setq choice
1442 (completing-read
1443 (format "%s (default %s): " title (car (car alist)))
1444 alist nil t
1445 ;; (cons (car (car alist)) 0)
1446 nil)))
1447 (sit-for 0) ; redraw original screen
1448 ;; Convert string to its entry, or else the default:
1449 (setq choice (or (assoc choice alist) (car alist))))
1450 )
1451 (if choice
1452 (funcall cont choice)
1453 (message "No choice made!") ; possible with menus
1454 nil)))
1455
1456 (defun ffap-menu-rescan nil
1457 "Search buffer for `ffap-menu-regexp' to build `ffap-menu-alist'.
1458 Applies `ffap-menu-text-plist' text properties at all matches."
1459 (interactive)
1460 (let ((ffap-next-regexp (or ffap-menu-regexp ffap-next-regexp))
1461 (range (- (point-max) (point-min)))
1462 (mod (buffer-modified-p)) ; was buffer modified?
1463 buffer-read-only ; to set text-properties
1464 item
1465 ;; Avoid repeated searches of the *mode-alist:
1466 (major-mode (if (assq major-mode ffap-string-at-point-mode-alist)
1467 major-mode
1468 'file)))
1469 (setq ffap-menu-alist nil)
1470 (unwind-protect
1471 (save-excursion
1472 (goto-char (point-min))
1473 (while (setq item (ffap-next-guess))
1474 (setq ffap-menu-alist (cons (cons item (point)) ffap-menu-alist))
1475 (add-text-properties (car ffap-string-at-point-region) (point)
1476 ffap-menu-text-plist)
1477 (message "Scanning...%2d%% <%s>"
1478 (/ (* 100 (- (point) (point-min))) range) item)))
1479 (or mod (set-buffer-modified-p nil))))
1480 (message "Scanning...done")
1481 ;; Remove duplicates.
1482 (setq ffap-menu-alist ; sort by item
1483 (sort ffap-menu-alist
1484 (function
1485 (lambda (a b) (string-lessp (car a) (car b))))))
1486 (let ((ptr ffap-menu-alist)) ; remove duplicates
1487 (while (cdr ptr)
1488 (if (equal (car (car ptr)) (car (car (cdr ptr))))
1489 (setcdr ptr (cdr (cdr ptr)))
1490 (setq ptr (cdr ptr)))))
1491 (setq ffap-menu-alist ; sort by position
1492 (sort ffap-menu-alist
1493 (function
1494 (lambda (a b) (< (cdr a) (cdr b)))))))
1495
1496 \f
1497 ;;; Mouse Support (`ffap-at-mouse'):
1498 ;;
1499 ;; See the suggested binding in ffap-bindings (near eof).
1500
1501 (defvar ffap-at-mouse-fallback nil ; ffap-menu? too time-consuming
1502 "Command invoked by `ffap-at-mouse' if nothing found at click, or nil.
1503 Ignored when `ffap-at-mouse' is called programmatically.")
1504 (put 'ffap-at-mouse-fallback 'risky-local-variable t)
1505
1506 ;;;###autoload
1507 (defun ffap-at-mouse (e)
1508 "Find file or url guessed from text around mouse click.
1509 Interactively, calls `ffap-at-mouse-fallback' if no guess is found.
1510 Return value:
1511 * if a guess string is found, return it (after finding it)
1512 * if the fallback is called, return whatever it returns
1513 * otherwise, nil"
1514 (interactive "e")
1515 (let ((guess
1516 ;; Maybe less surprising without the save-excursion?
1517 (save-excursion
1518 (mouse-set-point e)
1519 ;; Would prefer to do nothing unless click was *on* text. How
1520 ;; to tell that the click was beyond the end of current line?
1521 (ffap-guesser))))
1522 (cond
1523 (guess
1524 (set-buffer (ffap-event-buffer e))
1525 (ffap-highlight)
1526 (unwind-protect
1527 (progn
1528 (sit-for 0) ; display
1529 (message "Finding `%s'" guess)
1530 (find-file-at-point guess)
1531 guess) ; success: return non-nil
1532 (ffap-highlight t)))
1533 ((interactive-p)
1534 (if ffap-at-mouse-fallback
1535 (call-interactively ffap-at-mouse-fallback)
1536 (message "No file or url found at mouse click.")
1537 nil)) ; no fallback, return nil
1538 ;; failure: return nil
1539 )))
1540
1541 \f
1542 ;;; ffap-other-* commands:
1543 ;;
1544 ;; Requested by KPC.
1545
1546 ;; There could be a real `ffap-noselect' function, but we would need
1547 ;; at least two new user variables, and there is no w3-fetch-noselect.
1548 ;; So instead, we just fake it with a slow save-window-excursion.
1549
1550 (defun ffap-other-window nil
1551 "Like `ffap', but put buffer in another window.
1552 Only intended for interactive use."
1553 (interactive)
1554 (switch-to-buffer-other-window
1555 (save-window-excursion (call-interactively 'ffap) (current-buffer))))
1556
1557 (defun ffap-other-frame nil
1558 "Like `ffap', but put buffer in another frame.
1559 Only intended for interactive use."
1560 (interactive)
1561 ;; Extra code works around dedicated windows (noted by JENS, 7/96):
1562 (let* ((win (selected-window)) (wdp (window-dedicated-p win)))
1563 (unwind-protect
1564 (progn
1565 (set-window-dedicated-p win nil)
1566 (switch-to-buffer-other-frame
1567 (save-window-excursion
1568 (call-interactively 'ffap)
1569 (current-buffer))))
1570 (set-window-dedicated-p win wdp))))
1571
1572 \f
1573 ;;; Bug Reporter:
1574
1575 (defun ffap-bug nil
1576 "Submit a bug report for the ffap package."
1577 ;; Important: keep the version string here in synch with that at top
1578 ;; of file! Could use lisp-mnt from Emacs 19, but that would depend
1579 ;; on being able to find the ffap.el source file.
1580 (interactive)
1581 (require 'reporter)
1582 (let ((reporter-prompt-for-summary-p t))
1583 (reporter-submit-bug-report
1584 "Michelangelo Grigni <mic@mathcs.emory.edu>"
1585 "ffap"
1586 (mapcar 'intern (all-completions "ffap-" obarray 'boundp)))))
1587
1588 (fset 'ffap-submit-bug 'ffap-bug) ; another likely name
1589
1590 \f
1591 ;;; Hooks for Gnus, VM, Rmail:
1592 ;;
1593 ;; If you do not like these bindings, write versions with whatever
1594 ;; bindings you would prefer.
1595
1596 (defun ffap-ro-mode-hook nil
1597 "Bind `ffap-next' and `ffap-menu' to M-l and M-m, resp."
1598 (local-set-key "\M-l" 'ffap-next)
1599 (local-set-key "\M-m" 'ffap-menu)
1600 )
1601
1602 (defun ffap-gnus-hook nil
1603 "Bind `ffap-gnus-next' and `ffap-gnus-menu' to M-l and M-m, resp."
1604 (set (make-local-variable 'ffap-foo-at-bar-prefix) "news") ; message-id's
1605 ;; Note "l", "L", "m", "M" are taken:
1606 (local-set-key "\M-l" 'ffap-gnus-next)
1607 (local-set-key "\M-m" 'ffap-gnus-menu))
1608
1609 (defun ffap-gnus-wrapper (form) ; used by both commands below
1610 (and (eq (current-buffer) (get-buffer gnus-summary-buffer))
1611 (gnus-summary-select-article)) ; get article of current line
1612 ;; Preserve selected buffer, but do not do save-window-excursion,
1613 ;; since we want to see any window created by the form. Temporarily
1614 ;; select the article buffer, so we can see any point movement.
1615 (let ((sb (window-buffer (selected-window))))
1616 (gnus-configure-windows 'article)
1617 (pop-to-buffer gnus-article-buffer)
1618 (widen)
1619 ;; Skip headers for ffap-gnus-next (which will wrap around)
1620 (if (eq (point) (point-min)) (search-forward "\n\n" nil t))
1621 (unwind-protect
1622 (eval form)
1623 (pop-to-buffer sb))))
1624
1625 (defun ffap-gnus-next nil
1626 "Run `ffap-next' in the gnus article buffer."
1627 (interactive) (ffap-gnus-wrapper '(ffap-next nil t)))
1628
1629 (defun ffap-gnus-menu nil
1630 "Run `ffap-menu' in the gnus article buffer."
1631 (interactive) (ffap-gnus-wrapper '(ffap-menu)))
1632
1633 \f
1634 (defcustom dired-at-point-require-prefix nil
1635 "*If set, reverses the prefix argument to `dired-at-point'.
1636 This is nil so neophytes notice ffap. Experts may prefer to disable
1637 ffap most of the time."
1638 :type 'boolean
1639 :group 'ffap
1640 :version "20.3")
1641
1642 ;;;###autoload
1643 (defun dired-at-point (&optional filename)
1644 "Start Dired, defaulting to file at point. See `ffap'."
1645 (interactive)
1646 (if (and (interactive-p)
1647 (if dired-at-point-require-prefix
1648 (not current-prefix-arg)
1649 current-prefix-arg))
1650 (let (current-prefix-arg) ; already interpreted
1651 (call-interactively 'dired))
1652 (or filename (setq filename (dired-at-point-prompter)))
1653 (cond
1654 ((ffap-url-p filename)
1655 (funcall ffap-url-fetcher filename))
1656 ((and ffap-dired-wildcards
1657 (string-match ffap-dired-wildcards filename))
1658 (dired filename))
1659 ((file-exists-p filename)
1660 (if (file-directory-p filename)
1661 (dired (expand-file-name filename))
1662 (dired (concat (expand-file-name filename) "*"))))
1663 ((y-or-n-p "Directory does not exist, create it? ")
1664 (make-directory filename)
1665 (dired filename))
1666 ((error "No such file or directory `%s'" filename)))))
1667
1668 (defun dired-at-point-prompter (&optional guess)
1669 ;; Does guess and prompt step for find-file-at-point.
1670 ;; Extra complication for the temporary highlighting.
1671 (unwind-protect
1672 (ffap-read-file-or-url
1673 (if ffap-url-regexp "Dired file or URL: " "Dired file: ")
1674 (prog1
1675 (setq guess (or guess (ffap-guesser)))
1676 (and guess (ffap-highlight))
1677 ))
1678 (ffap-highlight t)))
1679 \f
1680 ;;; Offer default global bindings (`ffap-bindings'):
1681
1682 (defvar ffap-bindings
1683 '(
1684 (global-set-key [S-mouse-3] 'ffap-at-mouse)
1685 (global-set-key [C-S-mouse-3] 'ffap-menu)
1686 (global-set-key "\C-x\C-f" 'find-file-at-point)
1687 (global-set-key "\C-x4f" 'ffap-other-window)
1688 (global-set-key "\C-x5f" 'ffap-other-frame)
1689 (global-set-key "\C-xd" 'dired-at-point)
1690 (add-hook 'gnus-summary-mode-hook 'ffap-gnus-hook)
1691 (add-hook 'gnus-article-mode-hook 'ffap-gnus-hook)
1692 (add-hook 'vm-mode-hook 'ffap-ro-mode-hook)
1693 (add-hook 'rmail-mode-hook 'ffap-ro-mode-hook)
1694 ;; (setq dired-x-hands-off-my-keys t) ; the default
1695 )
1696 "List of binding forms evaluated by function `ffap-bindings'.
1697 A reasonable ffap installation needs just this one line:
1698 (ffap-bindings)
1699 Of course if you do not like these bindings, just roll your own!")
1700
1701 ;;;###autoload
1702 (defun ffap-bindings nil
1703 "Evaluate the forms in variable `ffap-bindings'."
1704 (interactive)
1705 (eval (cons 'progn ffap-bindings)))
1706
1707 \f
1708 ;;; ffap.el ends here