2004-02-28 05:00:19 +00:00
|
|
|
|
;;; ffap.el --- find file (or url) at point
|
|
|
|
|
|
2019-01-01 00:59:58 +00:00
|
|
|
|
;; Copyright (C) 1995-1997, 2000-2019 Free Software Foundation, Inc.
|
2004-02-28 05:00:19 +00:00
|
|
|
|
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; Author: Michelangelo Grigni <mic@mathcs.emory.edu>
|
2019-05-25 20:43:06 +00:00
|
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Created: 29 Mar 1993
|
1998-05-26 09:23:23 +00:00
|
|
|
|
;; Keywords: files, hypermedia, matching, mouse, convenience
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;;; Commentary:
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Command find-file-at-point replaces find-file. With a prefix, it
|
|
|
|
|
;; behaves exactly like find-file. Without a prefix, it first tries
|
1997-05-03 19:58:10 +00:00
|
|
|
|
;; to guess a default file or URL from the text around the point
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; (`ffap-require-prefix' swaps these behaviors). This is useful for
|
|
|
|
|
;; following references in situations such as mail or news buffers,
|
|
|
|
|
;; README's, MANIFEST's, and so on. Submit bugs or suggestions with
|
2016-12-24 15:35:30 +00:00
|
|
|
|
;; M-x report-emacs-bug.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
2012-09-17 05:41:04 +00:00
|
|
|
|
;; For the default installation, add this line to your init file:
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; (ffap-bindings) ; do default key bindings
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; ffap-bindings makes the following global key bindings:
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
2004-12-13 05:16:25 +00:00
|
|
|
|
;; C-x C-f find-file-at-point (abbreviated as ffap)
|
|
|
|
|
;; C-x C-r ffap-read-only
|
|
|
|
|
;; C-x C-v ffap-alternate-file
|
|
|
|
|
;;
|
|
|
|
|
;; C-x d dired-at-point
|
|
|
|
|
;; C-x C-d ffap-list-directory
|
|
|
|
|
;;
|
|
|
|
|
;; C-x 4 f ffap-other-window
|
|
|
|
|
;; C-x 4 r ffap-read-only-other-window
|
|
|
|
|
;; C-x 4 d ffap-dired-other-window
|
|
|
|
|
;;
|
|
|
|
|
;; C-x 5 f ffap-other-frame
|
|
|
|
|
;; C-x 5 r ffap-read-only-other-frame
|
|
|
|
|
;; C-x 5 d ffap-dired-other-frame
|
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; S-mouse-3 ffap-at-mouse
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; C-S-mouse-3 ffap-menu
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; ffap-bindings also adds hooks to make the following local bindings
|
|
|
|
|
;; in vm, gnus, and rmail:
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; M-l ffap-next, or ffap-gnus-next in gnus (l == "link")
|
|
|
|
|
;; M-m ffap-menu, or ffap-gnus-menu in gnus (m == "menu")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; If you do not like these bindings, modify the variable
|
|
|
|
|
;; `ffap-bindings', or write your own.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; If you use ange-ftp, browse-url, complete, efs, or w3, it is best
|
|
|
|
|
;; to load or autoload them before ffap. If you use ff-paths, load it
|
|
|
|
|
;; afterwards. Try apropos {C-h a ffap RET} to get a list of the many
|
|
|
|
|
;; option variables. In particular, if ffap is slow, try these:
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; (setq ffap-alist nil) ; faster, dumber prompting
|
|
|
|
|
;; (setq ffap-machine-p-known 'accept) ; no pinging
|
1997-05-03 19:58:10 +00:00
|
|
|
|
;; (setq ffap-url-regexp nil) ; disable URL features in ffap
|
2003-09-29 18:05:31 +00:00
|
|
|
|
;; (setq ffap-shell-prompt-regexp nil) ; disable shell prompt stripping
|
2017-01-08 23:19:32 +00:00
|
|
|
|
;; (setq ffap-gopher-regexp nil) ; disable gopher bookmark matching
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1997-06-28 21:27:18 +00:00
|
|
|
|
;; ffap uses `browse-url' (if found, else `w3-fetch') to fetch URL's.
|
|
|
|
|
;; For a hairier `ffap-url-fetcher', try ffap-url.el (same ftp site).
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Also, you can add `ffap-menu-rescan' to various hooks to fontify
|
2003-02-04 11:26:42 +00:00
|
|
|
|
;; the file and URL references within a buffer.
|
1996-03-24 14:20:05 +00:00
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
|
|
|
|
|
;;; Change Log:
|
|
|
|
|
;;
|
|
|
|
|
;; The History and Contributors moved to ffap.LOG (same ftp site),
|
|
|
|
|
;; which also has some old examples and commentary from ffap 1.5.
|
|
|
|
|
|
|
|
|
|
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;;; Todo list:
|
2003-02-15 19:26:25 +00:00
|
|
|
|
;; * let "/dir/file#key" jump to key (tag or regexp) in /dir/file
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; * find file of symbol if TAGS is loaded (like above)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; * break long menus into multiple panes (like imenu?)
|
|
|
|
|
;; * notice node in "(dired)Virtual Dired" (quotes, parentheses, whitespace)
|
2003-02-15 19:26:25 +00:00
|
|
|
|
;; * notice "machine.dom blah blah blah dir/file" (how?)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; * as w3 becomes standard, rewrite to rely more on its functions
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; * regexp options for ffap-string-at-point, like font-lock (MCOOK)
|
|
|
|
|
;; * v19: could replace `ffap-locate-file' with a quieter `locate-library'
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; * handle "$(VAR)" in Makefiles
|
|
|
|
|
;; * use the font-lock machinery
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
Explicitly require cl-lib where needed
Rather than relying on the byte-compiler happening to use it.
* lisp/completion.el, lisp/ffap.el, lisp/loadhist.el:
* lisp/userlock.el, lisp/emacs-lisp/debug.el, lisp/emacs-lisp/rx.el:
* lisp/emacs-lisp/testcover.el, lisp/mail/rfc2231.el:
* lisp/net/newst-treeview.el, lisp/net/puny.el:
* lisp/net/tramp-archive.el, lisp/net/tramp-gvfs.el:
* lisp/net/tramp-sh.el, lisp/net/tramp-smb.el, lisp/org/org-ctags.el:
* lisp/org/org-macs.el, lisp/progmodes/grep.el:
* lisp/progmodes/perl-mode.el, lisp/progmodes/ruby-mode.el:
* lisp/textmodes/dns-mode.el, lisp/textmodes/mhtml-mode.el:
* lisp/vc/pcvs-parse.el: Explicitly require cl-lib as needed.
2018-03-17 00:41:17 +00:00
|
|
|
|
(eval-when-compile (require 'cl-lib))
|
2012-05-10 06:27:12 +00:00
|
|
|
|
(require 'url-parse)
|
2013-02-04 12:02:25 +00:00
|
|
|
|
(require 'thingatpt)
|
2012-05-10 06:27:12 +00:00
|
|
|
|
|
2009-07-06 00:49:25 +00:00
|
|
|
|
(define-obsolete-variable-alias 'ffap-version 'emacs-version "23.2")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
1997-05-03 19:58:10 +00:00
|
|
|
|
(defgroup ffap nil
|
|
|
|
|
"Find file or URL at point."
|
2009-07-06 00:50:51 +00:00
|
|
|
|
;; Dead 2009/07/05.
|
|
|
|
|
;; :link '(url-link :tag "URL" "ftp://ftp.mathcs.emory.edu/pub/mic/emacs/")
|
1998-05-26 09:23:23 +00:00
|
|
|
|
:group 'matching
|
|
|
|
|
:group 'convenience)
|
1997-05-03 19:58:10 +00:00
|
|
|
|
|
1997-06-28 21:27:18 +00:00
|
|
|
|
;; The code is organized in pages, separated by formfeed characters.
|
|
|
|
|
;; See the next two pages for standard customization ideas.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; User Variables:
|
1997-05-03 19:58:10 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-symbol-value (sym &optional default)
|
|
|
|
|
"Return value of symbol SYM, if bound, or DEFAULT otherwise."
|
|
|
|
|
(if (boundp sym) (symbol-value sym) default))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2003-09-29 18:05:31 +00:00
|
|
|
|
(defcustom ffap-shell-prompt-regexp
|
|
|
|
|
;; This used to test for some shell prompts that don't have a space
|
|
|
|
|
;; after them. The common root shell prompt (#) is not listed since it
|
|
|
|
|
;; also doubles up as a valid URL character.
|
|
|
|
|
"[$%><]*"
|
2010-01-11 15:22:23 +00:00
|
|
|
|
"Paths matching this regexp are stripped off the shell prompt.
|
2003-09-29 18:05:31 +00:00
|
|
|
|
If nil, ffap doesn't do shell prompt stripping."
|
|
|
|
|
:type '(choice (const :tag "Disable" nil)
|
|
|
|
|
(const :tag "Standard" "[$%><]*")
|
|
|
|
|
regexp)
|
|
|
|
|
:group 'ffap)
|
|
|
|
|
|
2012-05-10 06:27:12 +00:00
|
|
|
|
(defcustom ffap-ftp-regexp "\\`/[^/:]+:"
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"File names matching this regexp are treated as remote ffap.
|
2003-02-15 19:26:25 +00:00
|
|
|
|
If nil, ffap neither recognizes nor generates such names."
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:type '(choice (const :tag "Disable" nil)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(const :tag "Standard" "\\`/[^/:]+:")
|
1997-05-03 19:58:10 +00:00
|
|
|
|
regexp)
|
|
|
|
|
:group 'ffap)
|
|
|
|
|
|
|
|
|
|
(defcustom ffap-url-unwrap-local t
|
2012-05-10 06:27:12 +00:00
|
|
|
|
"If non-nil, convert some URLs to local file names before prompting.
|
|
|
|
|
Only \"file:\" and \"ftp:\" URLs are converted, and only if they
|
|
|
|
|
do not specify a host, or the host is either \"localhost\" or
|
|
|
|
|
equal to `system-name'."
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'ffap)
|
|
|
|
|
|
2012-05-10 06:27:12 +00:00
|
|
|
|
(defcustom ffap-url-unwrap-remote '("ftp")
|
|
|
|
|
"If non-nil, convert URLs to remote file names before prompting.
|
|
|
|
|
If the value is a list of strings, that specifies a list of URL
|
|
|
|
|
schemes (e.g. \"ftp\"); in that case, only convert those URLs."
|
|
|
|
|
:type '(choice (repeat string) boolean)
|
|
|
|
|
:group 'ffap
|
2012-08-15 16:29:11 +00:00
|
|
|
|
:version "24.3")
|
1997-05-03 19:58:10 +00:00
|
|
|
|
|
2016-12-24 18:12:06 +00:00
|
|
|
|
(defcustom ffap-lax-url t
|
|
|
|
|
"If non-nil, allow lax URL matching.
|
|
|
|
|
The default non-nil value might produce false URLs in C++ code
|
|
|
|
|
with symbols like \"std::find\". On the other hand, setting
|
|
|
|
|
this to nil will disable recognition of URLs that are not
|
|
|
|
|
well-formed, such as \"user@host\" or \"<user@host>\"."
|
2014-06-12 02:29:50 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'ffap
|
2017-01-04 18:32:18 +00:00
|
|
|
|
:version "25.2") ; nil -> t
|
2014-06-12 02:29:50 +00:00
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(defcustom ffap-ftp-default-user "anonymous"
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
"User name in FTP file names generated by `ffap-host-to-path'.
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
Note this name may be omitted if it equals the default
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
\(either `efs-default-user' or `ange-ftp-default-user')."
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
:type 'string
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:group 'ffap)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
1997-05-03 19:58:10 +00:00
|
|
|
|
(defcustom ffap-rfs-regexp
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; Remote file access built into file system? HP rfa or Andrew afs:
|
|
|
|
|
"\\`/\\(afs\\|net\\)/."
|
|
|
|
|
;; afs only: (and (file-exists-p "/afs") "\\`/afs/.")
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Matching file names are treated as remote. Use nil to disable."
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:type 'regexp
|
|
|
|
|
:group 'ffap)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
(defvar ffap-url-regexp
|
|
|
|
|
(concat
|
2012-12-05 07:29:02 +00:00
|
|
|
|
"\\("
|
1995-11-12 23:58:04 +00:00
|
|
|
|
"news\\(post\\)?:\\|mailto:\\|file:" ; no host ok
|
|
|
|
|
"\\|"
|
2000-05-23 15:27:21 +00:00
|
|
|
|
"\\(ftp\\|https?\\|telnet\\|gopher\\|www\\|wais\\)://" ; needs host
|
2013-02-04 12:02:25 +00:00
|
|
|
|
"\\)")
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
"Regexp matching the beginning of a URI, for ffap.
|
2013-02-04 12:02:25 +00:00
|
|
|
|
If the value is nil, disable URL-matching features in ffap.")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
1997-05-03 19:58:10 +00:00
|
|
|
|
(defcustom ffap-foo-at-bar-prefix "mailto"
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Presumed URL prefix type of strings like \"<foo.9z@bar>\".
|
1997-05-03 19:58:10 +00:00
|
|
|
|
Sensible values are nil, \"news\", or \"mailto\"."
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
:type '(choice (const "mailto")
|
|
|
|
|
(const "news")
|
|
|
|
|
(const :tag "Disable" nil)
|
|
|
|
|
;; string -- possible, but not really useful
|
|
|
|
|
)
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:group 'ffap)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2016-12-30 06:31:01 +00:00
|
|
|
|
(defvar ffap-max-region-length 1024
|
|
|
|
|
"Maximum active region length.
|
|
|
|
|
When the region is active and larger than this value,
|
|
|
|
|
`ffap-string-at-point' returns an empty string.")
|
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;;; Peanut Gallery (More User Variables):
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;;
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; Users of ffap occasionally suggest new features. If I consider
|
|
|
|
|
;; those features interesting but not clear winners (a matter of
|
|
|
|
|
;; personal taste) I try to leave options to enable them. Read
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; through this section for features that you like, put an appropriate
|
2012-09-17 05:41:04 +00:00
|
|
|
|
;; enabler in your init file.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2004-12-13 05:16:25 +00:00
|
|
|
|
(defcustom ffap-dired-wildcards "[*?][^/]*\\'"
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"A regexp matching filename wildcard characters, or nil.
|
2004-12-13 05:16:25 +00:00
|
|
|
|
|
1996-03-24 14:20:05 +00:00
|
|
|
|
If `find-file-at-point' gets a filename matching this pattern,
|
2005-04-07 15:44:30 +00:00
|
|
|
|
and `ffap-pass-wildcards-to-dired' is nil, it passes it on to
|
|
|
|
|
`find-file' with non-nil WILDCARDS argument, which expands
|
|
|
|
|
wildcards and visits multiple files. To visit a file whose name
|
|
|
|
|
contains wildcard characters you can suppress wildcard expansion
|
|
|
|
|
by setting `find-file-wildcards'. If `find-file-at-point' gets a
|
|
|
|
|
filename matching this pattern and `ffap-pass-wildcards-to-dired'
|
|
|
|
|
is non-nil, it passes it on to `dired'.
|
2004-12-13 05:16:25 +00:00
|
|
|
|
|
|
|
|
|
If `dired-at-point' gets a filename matching this pattern,
|
|
|
|
|
it passes it on to `dired'."
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
:type '(choice (const :tag "Disable" nil)
|
|
|
|
|
(const :tag "Enable" "[*?][^/]*\\'")
|
|
|
|
|
;; regexp -- probably not useful
|
|
|
|
|
)
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:group 'ffap)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2005-04-07 15:44:30 +00:00
|
|
|
|
(defcustom ffap-pass-wildcards-to-dired nil
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
"If non-nil, pass filenames matching `ffap-dired-wildcards' to Dired."
|
2005-04-07 15:44:30 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'ffap)
|
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(defcustom ffap-newfile-prompt nil
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Suggestion from RHOGEE, 11 Jul 1994. Disabled, I think this is
|
2018-03-07 20:41:29 +00:00
|
|
|
|
;; better handled by `find-file-not-found-functions'.
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"Whether `find-file-at-point' prompts about a nonexistent file."
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'ffap)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
1997-05-03 19:58:10 +00:00
|
|
|
|
(defcustom ffap-require-prefix nil
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Suggestion from RHOGEE, 20 Oct 1994.
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"If set, reverses the prefix argument to `find-file-at-point'.
|
1996-03-24 14:20:05 +00:00
|
|
|
|
This is nil so neophytes notice ffap. Experts may prefer to disable
|
1997-05-03 19:58:10 +00:00
|
|
|
|
ffap most of the time."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'ffap)
|
|
|
|
|
|
|
|
|
|
(defcustom ffap-file-finder 'find-file
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"The command called by `find-file-at-point' to find a file."
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:type 'function
|
2012-05-10 06:27:12 +00:00
|
|
|
|
:group 'ffap
|
|
|
|
|
:risky t)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2004-12-13 05:16:25 +00:00
|
|
|
|
(defcustom ffap-directory-finder 'dired
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"The command called by `dired-at-point' to find a directory."
|
2004-12-13 05:16:25 +00:00
|
|
|
|
:type 'function
|
2012-05-10 06:27:12 +00:00
|
|
|
|
:group 'ffap
|
|
|
|
|
:risky t)
|
2004-12-13 05:16:25 +00:00
|
|
|
|
|
browse-url: mark some of the more obsolete stuff as such
* lisp/net/browse-url.el (browse-url-browser-function)
(browse-url-default-browser):
Remove obsolete items from the explicit listing.
(browse-url-new-window-flag, browse-url-of-file-hook): Doc fixes.
(browse-url-netscape-program, browse-url-netscape-arguments)
(browse-url-netscape-startup-arguments)
(browse-url-galeon-program, browse-url-galeon-arguments)
(browse-url-galeon-startup-arguments)
(browse-url-gnome-moz-program, browse-url-gnome-moz-arguments)
(browse-url-galeon-new-window-is-tab)
(browse-url-netscape-new-window-is-tab)
(browse-url-mosaic-program, browse-url-mosaic-arguments)
(browse-url-mosaic-pidfile, browse-url-CCI-port)
(browse-url-CCI-host, browse-url-netscape-version)
(browse-url-netscape, browse-url-netscape-sentinel)
(browse-url-netscape-reload, browse-url-netscape-send)
(browse-url-galeon, browse-url-galeon-sentinel)
(browse-url-gnome-moz, browse-url-mosaic, browse-url-cci)
(browse-url-w3-gnudoit): Make obsolete.
* etc/NEWS: Mention this.
* doc/misc/idlwave.texi (HTML Help Browser Tips): Remove obsolete info.
* lisp/ffap.el (ffap-url-fetcher): Simplify default and doc.
* lisp/x-dnd.el: Comment update.
2015-03-25 06:26:48 +00:00
|
|
|
|
(defcustom ffap-url-fetcher 'browse-url
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"A function of one argument, called by ffap to fetch an URL.
|
1998-09-30 19:06:27 +00:00
|
|
|
|
For a fancy alternative, get `ffap-url.el'."
|
browse-url: mark some of the more obsolete stuff as such
* lisp/net/browse-url.el (browse-url-browser-function)
(browse-url-default-browser):
Remove obsolete items from the explicit listing.
(browse-url-new-window-flag, browse-url-of-file-hook): Doc fixes.
(browse-url-netscape-program, browse-url-netscape-arguments)
(browse-url-netscape-startup-arguments)
(browse-url-galeon-program, browse-url-galeon-arguments)
(browse-url-galeon-startup-arguments)
(browse-url-gnome-moz-program, browse-url-gnome-moz-arguments)
(browse-url-galeon-new-window-is-tab)
(browse-url-netscape-new-window-is-tab)
(browse-url-mosaic-program, browse-url-mosaic-arguments)
(browse-url-mosaic-pidfile, browse-url-CCI-port)
(browse-url-CCI-host, browse-url-netscape-version)
(browse-url-netscape, browse-url-netscape-sentinel)
(browse-url-netscape-reload, browse-url-netscape-send)
(browse-url-galeon, browse-url-galeon-sentinel)
(browse-url-gnome-moz, browse-url-mosaic, browse-url-cci)
(browse-url-w3-gnudoit): Make obsolete.
* etc/NEWS: Mention this.
* doc/misc/idlwave.texi (HTML Help Browser Tips): Remove obsolete info.
* lisp/ffap.el (ffap-url-fetcher): Simplify default and doc.
* lisp/x-dnd.el: Comment update.
2015-03-25 06:26:48 +00:00
|
|
|
|
:type '(choice (const browse-url)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
function)
|
2012-05-10 06:27:12 +00:00
|
|
|
|
:group 'ffap
|
|
|
|
|
:risky t)
|
|
|
|
|
|
|
|
|
|
(defcustom ffap-next-regexp
|
|
|
|
|
;; If you want ffap-next to find URL's only, try this:
|
|
|
|
|
;; (and ffap-url-regexp (string-match "\\\\`" ffap-url-regexp)
|
|
|
|
|
;; (concat "\\<" (substring ffap-url-regexp 2))))
|
|
|
|
|
;;
|
|
|
|
|
;; It pays to put a big fancy regexp here, since ffap-guesser is
|
|
|
|
|
;; much more time-consuming than regexp searching:
|
|
|
|
|
"[/:.~[:alpha:]]/\\|@[[:alpha:]][-[:alnum:]]*\\."
|
|
|
|
|
"Regular expression governing movements of `ffap-next'."
|
|
|
|
|
:type 'regexp
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:group 'ffap)
|
2012-05-10 06:27:12 +00:00
|
|
|
|
|
|
|
|
|
(defcustom dired-at-point-require-prefix nil
|
|
|
|
|
"If non-nil, reverse the prefix argument to `dired-at-point'.
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
This is nil so neophytes notice ffap. Experts may prefer to
|
|
|
|
|
disable ffap most of the time."
|
2012-05-10 06:27:12 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'ffap
|
|
|
|
|
:version "20.3")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
|
1997-06-28 21:27:18 +00:00
|
|
|
|
;;; Compatibility:
|
|
|
|
|
;;
|
2006-02-12 20:30:49 +00:00
|
|
|
|
;; This version of ffap supports only the Emacs it is distributed in.
|
|
|
|
|
;; See the ftp site for a more general version. The following
|
|
|
|
|
;; functions are necessary "leftovers" from the more general version.
|
1997-06-28 21:27:18 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-mouse-event () ; current mouse event, or nil
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(and (listp last-nonmenu-event) last-nonmenu-event))
|
|
|
|
|
(defun ffap-event-buffer (event)
|
|
|
|
|
(window-buffer (car (event-start event))))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Find Next Thing in buffer (`ffap-next'):
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Original ffap-next-url (URL's only) from RPECK 30 Mar 1995. Since
|
|
|
|
|
;; then, broke it up into ffap-next-guess (noninteractive) and
|
|
|
|
|
;; ffap-next (a command). It now work on files as well as url's.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
1997-05-05 23:40:22 +00:00
|
|
|
|
(defvar ffap-next-guess nil
|
|
|
|
|
"Last value returned by `ffap-next-guess'.")
|
|
|
|
|
|
|
|
|
|
(defvar ffap-string-at-point-region '(1 1)
|
Disambiguate function and variable references in docstrings.
* lisp/comint.el (comint-history-isearch-message): Fix ambiguous doc
string cross-reference(s).
* lisp/ffap.el (ffap-string-at-point-region, ffap-next)
(ffap-string-at-point, ffap-string-around)
(ffap-copy-string-as-kill, ffap-highlight-overlay)
(ffap-literally): Fix ambiguous doc string cross-reference(s).
* lisp/font-lock.el (font-lock-keywords-alist)
(font-lock-removed-keywords-alist): Fix ambiguous doc string
cross-reference(s).
* lisp/help-mode.el (help-xref-symbol-regexp): Add "call" as a hint for
a cross-reference to a function.
* lisp/info.el (Info-find-emacs-command-nodes): Fix ambiguous doc
string cross-reference(s).
* lisp/isearch.el (isearch-message-function, isearch-fail-pos): Fix
ambiguous doc string cross-reference(s).
* lisp/misearch.el (multi-isearch-next-buffer-function): Fix ambiguous
doc string cross-reference(s).
* lisp/newcomment.el (comment-box): Fix ambiguous doc string
cross-reference(s).
* lisp/printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
(pr-setting-database): Fix ambiguous doc string
cross-reference(s).
* lisp/ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
(ps-n-up-filling-database): Fix ambiguous doc string
cross-reference(s).
* lisp/server.el (server-buffer, server-log): Fix ambiguous doc string
cross-reference(s).
* lisp/simple.el (newline, delete-backward-char, delete-forward-char)
(minibuffer-history-isearch-message, kill-line, track-eol)
(temporary-goal-column): Fix ambiguous doc string
cross-reference(s).
* lisp/whitespace.el (whitespace-point)
(whitespace-font-lock-refontify, whitespace-bob-marker)
(whitespace-eob-marker): Fix ambiguous doc string
cross-reference(s).
* lisp/calc/calc.el (calc-highlight-selections-with-faces)
(calc-dispatch): Fix ambiguous doc string cross-reference(s).
* lisp/emacs-lisp/edebug.el (edebug-read, edebug-eval-defun): Fix
ambiguous doc string cross-reference(s).
* lisp/gnus/gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
cross-reference(s).
* lisp/gnus/gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
cross-reference(s).
* lisp/international/mule.el (add-to-coding-system-list): Fix ambiguous
doc string cross-reference(s).
* lisp/progmodes/cc-fonts.el (c-font-lock-keywords-3)
(c++-font-lock-keywords-3, objc-font-lock-keywords-3)
(java-font-lock-keywords-3, idl-font-lock-keywords-3)
(pike-font-lock-keywords-3): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/compile.el (compile): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/etags.el (tags-table-files)
(tags-table-files-function, tags-included-tables-function): Fix
ambiguous doc string cross-reference(s).
* lisp/progmodes/gdb-mi.el (gdb, gdb-setup-windows)
(gdb-restore-windows): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/flyspell.el (flyspell-mark-duplications-flag)
(flyspell-default-deplacement-commands): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/ispell.el (ispell-accept-output): Fix ambiguous doc
string cross-reference(s).
* lisp/textmodes/sgml-mode.el (html-tag-help): Fix ambiguous doc string
cross-reference(s).
* lisp/vc/compare-w.el (compare-ignore-whitespace)
(compare-ignore-case, compare-windows-dehighlight): Fix ambiguous
doc string cross-reference(s).
* lisp/vc/diff.el (diff): Fix ambiguous doc string cross-reference(s).
* src/insdel.c (Fcombine_after_change_execute, syms_of_insdel): Fix
ambiguous doc string cross-reference(s).
* src/keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
doc string cross-reference(s).
* src/window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
string cross-reference(s).
Fixes: debbugs:12686
2013-01-11 23:08:55 +00:00
|
|
|
|
"List (BEG END), last region returned by the function `ffap-string-at-point'.")
|
1997-05-05 23:40:22 +00:00
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(defun ffap-next-guess (&optional back lim)
|
1997-05-03 19:58:10 +00:00
|
|
|
|
"Move point to next file or URL, and return it as a string.
|
1996-03-24 14:20:05 +00:00
|
|
|
|
If nothing is found, leave point at limit and return nil.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
Optional BACK argument makes search backwards.
|
|
|
|
|
Optional LIM argument limits the search.
|
|
|
|
|
Only considers strings that match `ffap-next-regexp'."
|
|
|
|
|
(or lim (setq lim (if back (point-min) (point-max))))
|
|
|
|
|
(let (guess)
|
|
|
|
|
(while (not (or guess (eq (point) lim)))
|
|
|
|
|
(funcall (if back 're-search-backward 're-search-forward)
|
|
|
|
|
ffap-next-regexp lim 'move)
|
|
|
|
|
(setq guess (ffap-guesser)))
|
|
|
|
|
;; Go to end, so we do not get same guess twice:
|
|
|
|
|
(goto-char (nth (if back 0 1) ffap-string-at-point-region))
|
|
|
|
|
(setq ffap-next-guess guess)))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ffap-next (&optional back wrap)
|
1997-05-03 19:58:10 +00:00
|
|
|
|
"Search buffer for next file or URL, and run ffap.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
Optional argument BACK says to search backwards.
|
|
|
|
|
Optional argument WRAP says to try wrapping around if necessary.
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
Interactively: use a single prefix \\[universal-argument] to search backwards,
|
1995-11-12 23:58:04 +00:00
|
|
|
|
double prefix to wrap forward, triple to wrap backwards.
|
Disambiguate function and variable references in docstrings.
* lisp/comint.el (comint-history-isearch-message): Fix ambiguous doc
string cross-reference(s).
* lisp/ffap.el (ffap-string-at-point-region, ffap-next)
(ffap-string-at-point, ffap-string-around)
(ffap-copy-string-as-kill, ffap-highlight-overlay)
(ffap-literally): Fix ambiguous doc string cross-reference(s).
* lisp/font-lock.el (font-lock-keywords-alist)
(font-lock-removed-keywords-alist): Fix ambiguous doc string
cross-reference(s).
* lisp/help-mode.el (help-xref-symbol-regexp): Add "call" as a hint for
a cross-reference to a function.
* lisp/info.el (Info-find-emacs-command-nodes): Fix ambiguous doc
string cross-reference(s).
* lisp/isearch.el (isearch-message-function, isearch-fail-pos): Fix
ambiguous doc string cross-reference(s).
* lisp/misearch.el (multi-isearch-next-buffer-function): Fix ambiguous
doc string cross-reference(s).
* lisp/newcomment.el (comment-box): Fix ambiguous doc string
cross-reference(s).
* lisp/printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
(pr-setting-database): Fix ambiguous doc string
cross-reference(s).
* lisp/ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
(ps-n-up-filling-database): Fix ambiguous doc string
cross-reference(s).
* lisp/server.el (server-buffer, server-log): Fix ambiguous doc string
cross-reference(s).
* lisp/simple.el (newline, delete-backward-char, delete-forward-char)
(minibuffer-history-isearch-message, kill-line, track-eol)
(temporary-goal-column): Fix ambiguous doc string
cross-reference(s).
* lisp/whitespace.el (whitespace-point)
(whitespace-font-lock-refontify, whitespace-bob-marker)
(whitespace-eob-marker): Fix ambiguous doc string
cross-reference(s).
* lisp/calc/calc.el (calc-highlight-selections-with-faces)
(calc-dispatch): Fix ambiguous doc string cross-reference(s).
* lisp/emacs-lisp/edebug.el (edebug-read, edebug-eval-defun): Fix
ambiguous doc string cross-reference(s).
* lisp/gnus/gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
cross-reference(s).
* lisp/gnus/gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
cross-reference(s).
* lisp/international/mule.el (add-to-coding-system-list): Fix ambiguous
doc string cross-reference(s).
* lisp/progmodes/cc-fonts.el (c-font-lock-keywords-3)
(c++-font-lock-keywords-3, objc-font-lock-keywords-3)
(java-font-lock-keywords-3, idl-font-lock-keywords-3)
(pike-font-lock-keywords-3): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/compile.el (compile): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/etags.el (tags-table-files)
(tags-table-files-function, tags-included-tables-function): Fix
ambiguous doc string cross-reference(s).
* lisp/progmodes/gdb-mi.el (gdb, gdb-setup-windows)
(gdb-restore-windows): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/flyspell.el (flyspell-mark-duplications-flag)
(flyspell-default-deplacement-commands): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/ispell.el (ispell-accept-output): Fix ambiguous doc
string cross-reference(s).
* lisp/textmodes/sgml-mode.el (html-tag-help): Fix ambiguous doc string
cross-reference(s).
* lisp/vc/compare-w.el (compare-ignore-whitespace)
(compare-ignore-case, compare-windows-dehighlight): Fix ambiguous
doc string cross-reference(s).
* lisp/vc/diff.el (diff): Fix ambiguous doc string cross-reference(s).
* src/insdel.c (Fcombine_after_change_execute, syms_of_insdel): Fix
ambiguous doc string cross-reference(s).
* src/keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
doc string cross-reference(s).
* src/window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
string cross-reference(s).
Fixes: debbugs:12686
2013-01-11 23:08:55 +00:00
|
|
|
|
Actual search is done by the function `ffap-next-guess'."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(cdr (assq (prefix-numeric-value current-prefix-arg)
|
|
|
|
|
'((1) (4 t) (16 nil t) (64 t t)))))
|
|
|
|
|
(let ((pt (point))
|
|
|
|
|
(guess (ffap-next-guess back)))
|
|
|
|
|
;; Try wraparound if necessary:
|
|
|
|
|
(and (not guess) wrap
|
|
|
|
|
(goto-char (if back (point-max) (point-min)))
|
|
|
|
|
(setq guess (ffap-next-guess back pt)))
|
|
|
|
|
(if guess
|
|
|
|
|
(progn
|
|
|
|
|
(sit-for 0) ; display point movement
|
|
|
|
|
(find-file-at-point (ffap-prompter guess)))
|
|
|
|
|
(goto-char pt) ; restore point
|
1997-05-03 19:58:10 +00:00
|
|
|
|
(message "No %sfiles or URL's found"
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(if wrap "" "more ")))))
|
|
|
|
|
|
|
|
|
|
(defun ffap-next-url (&optional back wrap)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Like `ffap-next', but search with `ffap-url-regexp'."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let ((ffap-next-regexp ffap-url-regexp))
|
2009-10-02 03:48:36 +00:00
|
|
|
|
(if (called-interactively-p 'interactive)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(call-interactively 'ffap-next)
|
|
|
|
|
(ffap-next back wrap))))
|
|
|
|
|
|
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;;; Machines (`ffap-machine-p'):
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
;; I cannot decide a "best" strategy here, so these are variables. In
|
|
|
|
|
;; particular, if `Pinging...' is broken or takes too long on your
|
|
|
|
|
;; machine, try setting these all to accept or reject.
|
1997-05-03 19:58:10 +00:00
|
|
|
|
(defcustom ffap-machine-p-local 'reject ; this happens often
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"What `ffap-machine-p' does with hostnames that have no domain.
|
1998-10-13 15:31:30 +00:00
|
|
|
|
Value should be a symbol, one of `ping', `accept', and `reject'."
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:type '(choice (const ping)
|
|
|
|
|
(const accept)
|
|
|
|
|
(const reject))
|
|
|
|
|
:group 'ffap)
|
1998-09-30 19:06:27 +00:00
|
|
|
|
(defcustom ffap-machine-p-known 'ping ; `accept' for higher speed
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"What `ffap-machine-p' does with hostnames that have a known domain.
|
1998-09-30 19:06:27 +00:00
|
|
|
|
Value should be a symbol, one of `ping', `accept', and `reject'.
|
|
|
|
|
See `mail-extr.el' for the known domains."
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:type '(choice (const ping)
|
|
|
|
|
(const accept)
|
|
|
|
|
(const reject))
|
|
|
|
|
:group 'ffap)
|
|
|
|
|
(defcustom ffap-machine-p-unknown 'reject
|
2008-12-03 05:48:14 +00:00
|
|
|
|
"What `ffap-machine-p' does with hostnames that have an unknown domain.
|
1998-09-30 19:06:27 +00:00
|
|
|
|
Value should be a symbol, one of `ping', `accept', and `reject'.
|
|
|
|
|
See `mail-extr.el' for the known domains."
|
1997-05-03 19:58:10 +00:00
|
|
|
|
:type '(choice (const ping)
|
|
|
|
|
(const accept)
|
|
|
|
|
(const reject))
|
|
|
|
|
:group 'ffap)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-what-domain (domain)
|
|
|
|
|
;; Like what-domain in mail-extr.el, returns string or nil.
|
|
|
|
|
(require 'mail-extr)
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(let ((ob (or (ffap-symbol-value 'mail-extr-all-top-level-domains)
|
|
|
|
|
(ffap-symbol-value 'all-top-level-domains)))) ; XEmacs
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(and ob (get (intern-soft (downcase domain) ob) 'domain-name))))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-machine-p (host &optional service quiet strategy)
|
|
|
|
|
"Decide whether HOST is the name of a real, reachable machine.
|
|
|
|
|
Depending on the domain (none, known, or unknown), follow the strategy
|
|
|
|
|
named by the variable `ffap-machine-p-local', `ffap-machine-p-known',
|
|
|
|
|
or `ffap-machine-p-unknown'. Pinging uses `open-network-stream'.
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
Optional SERVICE specifies the port used (default \"discard\").
|
1995-11-12 23:58:04 +00:00
|
|
|
|
Optional QUIET flag suppresses the \"Pinging...\" message.
|
1996-03-24 14:20:05 +00:00
|
|
|
|
Optional STRATEGY overrides the three variables above.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
Returned values:
|
2015-09-03 22:31:12 +00:00
|
|
|
|
t means that HOST answered.
|
|
|
|
|
`accept' means the relevant variable told us to accept.
|
|
|
|
|
\"mesg\" means HOST exists, but does not respond for some reason."
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Try some (Emory local):
|
|
|
|
|
;; (ffap-machine-p "ftp" nil nil 'ping)
|
|
|
|
|
;; (ffap-machine-p "nonesuch" nil nil 'ping)
|
|
|
|
|
;; (ffap-machine-p "ftp.mathcs.emory.edu" nil nil 'ping)
|
|
|
|
|
;; (ffap-machine-p "mathcs" 5678 nil 'ping)
|
|
|
|
|
;; (ffap-machine-p "foo.bonk" nil nil 'ping)
|
|
|
|
|
;; (ffap-machine-p "foo.bonk.com" nil nil 'ping)
|
2008-02-05 11:51:30 +00:00
|
|
|
|
(if (or (string-match "[^-[:alnum:].]" host) ; Invalid chars (?)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(not (string-match "[^0-9]" host))) ; 1: a number? 2: quick reject
|
1995-11-12 23:58:04 +00:00
|
|
|
|
nil
|
|
|
|
|
(let* ((domain
|
|
|
|
|
(and (string-match "\\.[^.]*$" host)
|
|
|
|
|
(downcase (substring host (1+ (match-beginning 0))))))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(what-domain (if domain (ffap-what-domain domain) "Local")))
|
|
|
|
|
(or strategy
|
|
|
|
|
(setq strategy
|
|
|
|
|
(cond ((not domain) ffap-machine-p-local)
|
|
|
|
|
((not what-domain) ffap-machine-p-unknown)
|
|
|
|
|
(t ffap-machine-p-known))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(cond
|
|
|
|
|
((eq strategy 'accept) 'accept)
|
|
|
|
|
((eq strategy 'reject) nil)
|
2001-06-17 10:44:45 +00:00
|
|
|
|
((not (fboundp 'open-network-stream)) nil)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; assume (eq strategy 'ping)
|
|
|
|
|
(t
|
|
|
|
|
(or quiet
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(if (stringp what-domain)
|
|
|
|
|
(message "Pinging %s (%s)..." host what-domain)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(message "Pinging %s ..." host)))
|
|
|
|
|
(condition-case error
|
|
|
|
|
(progn
|
|
|
|
|
(delete-process
|
|
|
|
|
(open-network-stream
|
|
|
|
|
"ffap-machine-p" nil host (or service "discard")))
|
|
|
|
|
t)
|
|
|
|
|
(error
|
|
|
|
|
(let ((mesg (car (cdr error))))
|
|
|
|
|
(cond
|
|
|
|
|
;; v18:
|
2013-07-24 15:56:24 +00:00
|
|
|
|
((string-match "\\(^Unknown host\\|Name or service not known$\\)"
|
|
|
|
|
mesg) nil)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
((string-match "not responding$" mesg) mesg)
|
|
|
|
|
;; v19:
|
|
|
|
|
;; (file-error "connection failed" "permission denied"
|
|
|
|
|
;; "nonesuch" "ffap-machine-p")
|
|
|
|
|
;; (file-error "connection failed" "host is unreachable"
|
|
|
|
|
;; "gopher.house.gov" "ffap-machine-p")
|
|
|
|
|
;; (file-error "connection failed" "address already in use"
|
|
|
|
|
;; "ftp.uu.net" "ffap-machine-p")
|
|
|
|
|
((equal mesg "connection failed")
|
2015-01-22 04:21:45 +00:00
|
|
|
|
(if (string= (downcase (nth 2 error)) "permission denied")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
nil ; host does not exist
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Other errors mean the host exists:
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(nth 2 error)))
|
|
|
|
|
;; Could be "Unknown service":
|
|
|
|
|
(t (signal (car error) (cdr error))))))))))))
|
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
|
|
|
|
|
;;; Possibly Remote Resources:
|
|
|
|
|
|
2003-02-15 19:26:25 +00:00
|
|
|
|
(defun ffap-replace-file-component (fullname name)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
"In remote FULLNAME, replace path with NAME. May return nil."
|
2012-10-08 13:59:18 +00:00
|
|
|
|
;; Use efs if loaded, but do not load it otherwise.
|
|
|
|
|
(if (fboundp 'efs-replace-path-component)
|
2012-12-05 07:29:02 +00:00
|
|
|
|
(funcall 'efs-replace-path-component fullname name)
|
2012-10-08 13:59:18 +00:00
|
|
|
|
(and (stringp fullname)
|
|
|
|
|
(stringp name)
|
|
|
|
|
(concat (file-remote-p fullname) name))))
|
2003-02-15 19:26:25 +00:00
|
|
|
|
;; (ffap-replace-file-component "/who@foo.com:/whatever" "/new")
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(defun ffap-file-suffix (file)
|
1998-09-30 19:06:27 +00:00
|
|
|
|
"Return trailing `.foo' suffix of FILE, or nil if none."
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(let ((pos (string-match "\\.[^./]*\\'" file)))
|
|
|
|
|
(and pos (substring file pos nil))))
|
|
|
|
|
|
|
|
|
|
(defvar ffap-compression-suffixes '(".gz" ".Z") ; .z is mostly dead
|
|
|
|
|
"List of suffixes tried by `ffap-file-exists-string'.")
|
|
|
|
|
|
|
|
|
|
(defun ffap-file-exists-string (file &optional nomodify)
|
|
|
|
|
;; Early jka-compr versions modified file-exists-p to return the
|
|
|
|
|
;; filename, maybe modified by adding a suffix like ".gz". That
|
|
|
|
|
;; broke the interface of file-exists-p, so it was later dropped.
|
|
|
|
|
;; Here we document and simulate the old behavior.
|
1998-09-30 19:06:27 +00:00
|
|
|
|
"Return FILE (maybe modified) if the file exists, else nil.
|
1997-06-28 21:27:18 +00:00
|
|
|
|
When using jka-compr (a.k.a. `auto-compression-mode'), the returned
|
|
|
|
|
name may have a suffix added from `ffap-compression-suffixes'.
|
|
|
|
|
The optional NOMODIFY argument suppresses the extra search."
|
|
|
|
|
(cond
|
2019-05-17 01:34:47 +00:00
|
|
|
|
((or (not file) ; quietly reject nil
|
|
|
|
|
(zerop (length file))) ; and also ""
|
|
|
|
|
nil)
|
1997-06-28 21:27:18 +00:00
|
|
|
|
((file-exists-p file) file) ; try unmodified first
|
|
|
|
|
;; three reasons to suppress search:
|
|
|
|
|
(nomodify nil)
|
|
|
|
|
((not (rassq 'jka-compr-handler file-name-handler-alist)) nil)
|
|
|
|
|
((member (ffap-file-suffix file) ffap-compression-suffixes) nil)
|
|
|
|
|
(t ; ok, do the search
|
|
|
|
|
(let ((list ffap-compression-suffixes) try ret)
|
|
|
|
|
(while list
|
|
|
|
|
(if (file-exists-p (setq try (concat file (car list))))
|
|
|
|
|
(setq ret try list nil)
|
|
|
|
|
(setq list (cdr list))))
|
|
|
|
|
ret))))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(defun ffap-file-remote-p (filename)
|
1998-09-30 19:06:27 +00:00
|
|
|
|
"If FILENAME looks remote, return it (maybe slightly improved)."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; (ffap-file-remote-p "/user@foo.bar.com:/pub")
|
2003-02-15 19:26:25 +00:00
|
|
|
|
;; (ffap-file-remote-p "/cssun.mathcs.emory.edu://dir")
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; (ffap-file-remote-p "/ffap.el:80")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(or (and ffap-ftp-regexp
|
|
|
|
|
(string-match ffap-ftp-regexp filename)
|
2011-11-17 09:09:20 +00:00
|
|
|
|
;; Convert "/host.com://dir" to "/host:/dir", to handle a dying
|
2003-02-15 19:26:25 +00:00
|
|
|
|
;; practice of advertising ftp files as "host.dom://filename".
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(if (string-match "//" filename)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; (replace-match "/" nil nil filename)
|
|
|
|
|
(concat (substring filename 0 (1+ (match-beginning 0)))
|
|
|
|
|
(substring filename (match-end 0)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
filename))
|
|
|
|
|
(and ffap-rfs-regexp
|
|
|
|
|
(string-match ffap-rfs-regexp filename)
|
|
|
|
|
filename)))
|
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-machine-at-point ()
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Return machine name at point if it exists, or nil."
|
|
|
|
|
(let ((mach (ffap-string-at-point 'machine)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(and (ffap-machine-p mach) mach)))
|
|
|
|
|
|
2003-02-15 19:26:25 +00:00
|
|
|
|
(defsubst ffap-host-to-filename (host)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
"Convert HOST to something like \"/USER@HOST:\" or \"/HOST:\".
|
1996-03-24 14:20:05 +00:00
|
|
|
|
Looks at `ffap-ftp-default-user', returns \"\" for \"localhost\"."
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(if (equal host "localhost")
|
|
|
|
|
""
|
|
|
|
|
(let ((user ffap-ftp-default-user))
|
|
|
|
|
;; Avoid including the user if it is same as default:
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(if (or (equal user (ffap-symbol-value 'ange-ftp-default-user))
|
|
|
|
|
(equal user (ffap-symbol-value 'efs-default-user)))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(setq user nil))
|
|
|
|
|
(concat "/" user (and user "@") host ":"))))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(defun ffap-fixup-machine (mach)
|
2003-02-15 19:26:25 +00:00
|
|
|
|
;; Convert a hostname into an url, an ftp file name, or nil.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(cond
|
|
|
|
|
((not (and ffap-url-regexp (stringp mach))) nil)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; gopher.well.com
|
1995-11-12 23:58:04 +00:00
|
|
|
|
((string-match "\\`gopher[-.]" mach) ; or "info"?
|
|
|
|
|
(concat "gopher://" mach "/"))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; www.ncsa.uiuc.edu
|
1995-11-12 23:58:04 +00:00
|
|
|
|
((and (string-match "\\`w\\(ww\\|eb\\)[-.]" mach))
|
|
|
|
|
(concat "http://" mach "/"))
|
|
|
|
|
;; More cases? Maybe "telnet:" for archie?
|
2003-02-15 19:26:25 +00:00
|
|
|
|
(ffap-ftp-regexp (ffap-host-to-filename mach))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
))
|
|
|
|
|
|
2013-02-04 12:02:25 +00:00
|
|
|
|
(defvaralias 'ffap-newsgroup-regexp 'thing-at-point-newsgroup-regexp)
|
|
|
|
|
(defvaralias 'ffap-newsgroup-heads 'thing-at-point-newsgroup-heads)
|
|
|
|
|
(defalias 'ffap-newsgroup-p 'thing-at-point-newsgroup-p)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2015-12-25 19:43:36 +00:00
|
|
|
|
(defun ffap-url-p (string)
|
2010-01-11 15:22:23 +00:00
|
|
|
|
"If STRING looks like an URL, return it (maybe improved), else nil."
|
2012-12-05 07:29:02 +00:00
|
|
|
|
(when (and (stringp string) ffap-url-regexp)
|
|
|
|
|
(let* ((case-fold-search t)
|
|
|
|
|
(match (string-match ffap-url-regexp string)))
|
|
|
|
|
(cond ((eq match 0) string)
|
|
|
|
|
(match (substring string match))))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Broke these out of ffap-fixup-url, for use of ffap-url package.
|
2012-05-10 06:27:12 +00:00
|
|
|
|
(defun ffap-url-unwrap-local (url)
|
|
|
|
|
"Return URL as a local file name, or nil."
|
|
|
|
|
(let* ((obj (url-generic-parse-url url))
|
|
|
|
|
(host (url-host obj))
|
|
|
|
|
(filename (car (url-path-and-query obj))))
|
|
|
|
|
(when (and (member (url-type obj) '("ftp" "file"))
|
|
|
|
|
(member host `("" "localhost" ,(system-name))))
|
|
|
|
|
;; On Windows, "file:///C:/foo" should unwrap to "C:/foo"
|
|
|
|
|
(if (and (memq system-type '(ms-dos windows-nt cygwin))
|
|
|
|
|
(string-match "\\`/[a-zA-Z]:" filename))
|
|
|
|
|
(substring filename 1)
|
|
|
|
|
filename))))
|
|
|
|
|
|
|
|
|
|
(defun ffap-url-unwrap-remote (url)
|
|
|
|
|
"Return URL as a remote file name, or nil."
|
|
|
|
|
(let* ((obj (url-generic-parse-url url))
|
|
|
|
|
(scheme (url-type obj))
|
|
|
|
|
(valid-schemes (if (listp ffap-url-unwrap-remote)
|
|
|
|
|
ffap-url-unwrap-remote
|
|
|
|
|
'("ftp")))
|
|
|
|
|
(host (url-host obj))
|
|
|
|
|
(port (url-port-if-non-default obj))
|
|
|
|
|
(user (url-user obj))
|
|
|
|
|
(filename (car (url-path-and-query obj))))
|
|
|
|
|
(when (and (member scheme valid-schemes)
|
|
|
|
|
(string-match "\\`[a-zA-Z][-a-zA-Z0-9+.]*\\'" scheme)
|
|
|
|
|
(not (equal host "")))
|
|
|
|
|
(concat "/" scheme ":"
|
|
|
|
|
(if user (concat user "@"))
|
|
|
|
|
host
|
|
|
|
|
(if port (concat "#" (number-to-string port)))
|
|
|
|
|
":" filename))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-fixup-url (url)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Clean up URL and return it, maybe as a file name."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(cond
|
|
|
|
|
((not (stringp url)) nil)
|
2012-05-10 06:27:12 +00:00
|
|
|
|
((and ffap-url-unwrap-local (ffap-url-unwrap-local url)))
|
|
|
|
|
((and ffap-url-unwrap-remote (ffap-url-unwrap-remote url)))
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(url)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
|
2003-02-15 19:26:25 +00:00
|
|
|
|
;;; File Name Handling:
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; The upcoming ffap-alist actions need various utilities to prepare
|
2003-02-15 19:26:25 +00:00
|
|
|
|
;; and search directories. Too many features here.
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
|
|
|
|
|
;; (defun ffap-last (l) (while (cdr l) (setq l (cdr l))) l)
|
|
|
|
|
;; (defun ffap-splice (func inlist)
|
|
|
|
|
;; "Equivalent to (apply 'nconc (mapcar FUNC INLIST)), but less consing."
|
|
|
|
|
;; (let* ((head (cons 17 nil)) (last head))
|
|
|
|
|
;; (while inlist
|
|
|
|
|
;; (setcdr last (funcall func (car inlist)))
|
|
|
|
|
;; (setq last (ffap-last last) inlist (cdr inlist)))
|
|
|
|
|
;; (cdr head)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-list-env (env &optional empty)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
"Return a list of strings parsed from environment variable ENV.
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
Optional EMPTY is the default list if (getenv ENV) is undefined, and
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
also is substituted for the first empty-string component, if there is one.
|
|
|
|
|
Uses `path-separator' to separate the path into substrings."
|
|
|
|
|
;; We cannot use parse-colon-path (files.el), since it kills
|
|
|
|
|
;; "//" entries using file-name-as-directory.
|
|
|
|
|
;; Similar: dired-split, TeX-split-string, and RHOGEE's psg-list-env
|
|
|
|
|
;; in ff-paths and bib-cite. The EMPTY arg may help mimic kpathsea.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(if (or empty (getenv env)) ; should return something
|
|
|
|
|
(let ((start 0) match dir ret)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(setq env (concat (getenv env) path-separator))
|
1996-01-01 23:33:55 +00:00
|
|
|
|
(while (setq match (string-match path-separator env start))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(setq dir (substring env start match) start (1+ match))
|
|
|
|
|
;;(and (file-directory-p dir) (not (member dir ret)) ...)
|
|
|
|
|
(setq ret (cons dir ret)))
|
|
|
|
|
(setq ret (nreverse ret))
|
|
|
|
|
(and empty (setq match (member "" ret))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(progn ; allow string or list here
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(setcdr match (append (cdr-safe empty) (cdr match)))
|
|
|
|
|
(setcar match (or (car-safe empty) empty))))
|
|
|
|
|
ret)))
|
|
|
|
|
|
|
|
|
|
(defun ffap-reduce-path (path)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Remove duplicates and non-directories from PATH list."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(let (ret tem)
|
|
|
|
|
(while path
|
|
|
|
|
(setq tem path path (cdr path))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(if (equal (car tem) ".") (setcar tem ""))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(or (member (car tem) ret)
|
|
|
|
|
(not (file-directory-p (car tem)))
|
|
|
|
|
(progn (setcdr tem ret) (setq ret tem))))
|
|
|
|
|
(nreverse ret)))
|
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(defun ffap-all-subdirs (dir &optional depth)
|
2010-01-11 15:22:23 +00:00
|
|
|
|
"Return list of all subdirectories under DIR, starting with itself.
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
Directories beginning with \".\" are ignored, and directory symlinks
|
|
|
|
|
are listed but never searched (to avoid loops).
|
|
|
|
|
Optional DEPTH limits search depth."
|
|
|
|
|
(and (file-exists-p dir)
|
|
|
|
|
(ffap-all-subdirs-loop (expand-file-name dir) (or depth -1))))
|
|
|
|
|
|
|
|
|
|
(defun ffap-all-subdirs-loop (dir depth) ; internal
|
|
|
|
|
(setq depth (1- depth))
|
|
|
|
|
(cons dir
|
|
|
|
|
(and (not (eq depth -1))
|
|
|
|
|
(apply 'nconc
|
|
|
|
|
(mapcar
|
|
|
|
|
(function
|
|
|
|
|
(lambda (d)
|
|
|
|
|
(cond
|
|
|
|
|
((not (file-directory-p d)) nil)
|
|
|
|
|
((file-symlink-p d) (list d))
|
|
|
|
|
(t (ffap-all-subdirs-loop d depth)))))
|
|
|
|
|
(directory-files dir t "\\`[^.]")
|
|
|
|
|
)))))
|
|
|
|
|
|
|
|
|
|
(defvar ffap-kpathsea-depth 1
|
|
|
|
|
"Bound on depth of subdirectory search in `ffap-kpathsea-expand-path'.
|
|
|
|
|
Set to 0 to avoid all searching, or nil for no limit.")
|
|
|
|
|
|
|
|
|
|
(defun ffap-kpathsea-expand-path (path)
|
|
|
|
|
"Replace each \"//\"-suffixed dir in PATH by a list of its subdirs.
|
|
|
|
|
The subdirs begin with the original directory, and the depth of the
|
|
|
|
|
search is bounded by `ffap-kpathsea-depth'. This is intended to mimic
|
|
|
|
|
kpathsea, a library used by some versions of TeX."
|
|
|
|
|
(apply 'nconc
|
|
|
|
|
(mapcar
|
|
|
|
|
(function
|
|
|
|
|
(lambda (dir)
|
|
|
|
|
(if (string-match "[^/]//\\'" dir)
|
|
|
|
|
(ffap-all-subdirs (substring dir 0 -2) ffap-kpathsea-depth)
|
|
|
|
|
(list dir))))
|
|
|
|
|
path)))
|
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-locate-file (file nosuffix path)
|
2006-02-12 20:30:49 +00:00
|
|
|
|
;; The current version of locate-library could almost replace this,
|
2004-02-28 05:00:19 +00:00
|
|
|
|
;; except it does not let us override the suffix list. The
|
1997-06-28 21:27:18 +00:00
|
|
|
|
;; compression-suffixes search moved to ffap-file-exists-string.
|
2009-12-09 02:11:29 +00:00
|
|
|
|
"A generic path-searching function.
|
|
|
|
|
Returns the name of file in PATH, or nil.
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
Optional NOSUFFIX, if nil or t, is like the fourth argument
|
2009-12-09 02:11:29 +00:00
|
|
|
|
for `load': whether to try the suffixes (\".elc\" \".el\" \"\").
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
If a nonempty list, it is a list of suffixes to try instead.
|
2009-12-09 02:11:29 +00:00
|
|
|
|
PATH is a list of directories.
|
1997-06-28 21:27:18 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
This uses `ffap-file-exists-string', which may try adding suffixes from
|
1997-06-28 21:27:18 +00:00
|
|
|
|
`ffap-compression-suffixes'."
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(if (file-name-absolute-p file)
|
|
|
|
|
(setq path (list (file-name-directory file))
|
|
|
|
|
file (file-name-nondirectory file)))
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(let ((dir-ok (equal "" (file-name-nondirectory file)))
|
|
|
|
|
(suffixes-to-try
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(cond
|
|
|
|
|
((consp nosuffix) nosuffix)
|
|
|
|
|
(nosuffix '(""))
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(t '(".elc" ".el" ""))))
|
|
|
|
|
suffixes try found)
|
|
|
|
|
(while path
|
|
|
|
|
(setq suffixes suffixes-to-try)
|
|
|
|
|
(while suffixes
|
|
|
|
|
(setq try (ffap-file-exists-string
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(concat file (car suffixes)) (car path))))
|
|
|
|
|
(if (and try (or dir-ok (not (file-directory-p try))))
|
|
|
|
|
(setq found try suffixes nil path nil)
|
|
|
|
|
(setq suffixes (cdr suffixes))))
|
|
|
|
|
(setq path (cdr path)))
|
|
|
|
|
found))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Action List (`ffap-alist'):
|
|
|
|
|
;;
|
|
|
|
|
;; These search actions depend on the major-mode or regexps matching
|
|
|
|
|
;; the current name. The little functions and their variables are
|
|
|
|
|
;; deferred to the next section, at some loss of "code locality". A
|
|
|
|
|
;; good example of featuritis. Trim this list for speed.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
(defvar ffap-alist
|
1997-05-05 23:40:22 +00:00
|
|
|
|
'(
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
("" . ffap-completable) ; completion, slow on some systems
|
|
|
|
|
("\\.info\\'" . ffap-info) ; gzip.info
|
|
|
|
|
("\\`info/" . ffap-info-2) ; info/emacs
|
2007-01-10 23:48:04 +00:00
|
|
|
|
("\\`[-[:lower:]]+\\'" . ffap-info-3) ; (emacs)Top [only in the parentheses]
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
("\\.elc?\\'" . ffap-el) ; simple.el, simple.elc
|
|
|
|
|
(emacs-lisp-mode . ffap-el-mode) ; rmail, gnus, simple, custom
|
1997-06-28 21:27:18 +00:00
|
|
|
|
;; (lisp-interaction-mode . ffap-el-mode) ; maybe
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(finder-mode . ffap-el-mode) ; type {C-h p} and try it
|
|
|
|
|
(help-mode . ffap-el-mode) ; maybe useful
|
2013-10-19 02:35:20 +00:00
|
|
|
|
(c++-mode . ffap-c++-mode) ; search ffap-c++-path
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(cc-mode . ffap-c-mode) ; same
|
|
|
|
|
("\\.\\([chCH]\\|cc\\|hh\\)\\'" . ffap-c-mode) ; stdio.h
|
|
|
|
|
(fortran-mode . ffap-fortran-mode) ; FORTRAN requested by MDB
|
|
|
|
|
("\\.[fF]\\'" . ffap-fortran-mode)
|
|
|
|
|
(tex-mode . ffap-tex-mode) ; search ffap-tex-path
|
|
|
|
|
(latex-mode . ffap-latex-mode) ; similar
|
1997-05-05 23:40:22 +00:00
|
|
|
|
("\\.\\(tex\\|sty\\|doc\\|cls\\)\\'" . ffap-tex)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
("\\.bib\\'" . ffap-bib) ; search ffap-bib-path
|
|
|
|
|
("\\`\\." . ffap-home) ; .emacs, .bashrc, .profile
|
|
|
|
|
("\\`~/" . ffap-lcd) ; |~/misc/ffap.el.Z|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
;; This used to have a blank, but ffap-string-at-point doesn't
|
2008-01-18 05:43:35 +00:00
|
|
|
|
;; handle blanks.
|
2017-11-26 06:45:41 +00:00
|
|
|
|
;; https://lists.gnu.org/r/emacs-devel/2008-01/msg01058.html
|
2009-12-09 02:11:29 +00:00
|
|
|
|
("\\`[Rr][Ff][Cc][-#]?\\([0-9]+\\)" ; no $
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
. ffap-rfc) ; "100% RFC2100 compliant"
|
|
|
|
|
(dired-mode . ffap-dired) ; maybe in a subdirectory
|
|
|
|
|
)
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
"Alist of (KEY . FUNCTION) pairs parsed by `ffap-file-at-point'.
|
2010-01-11 15:22:23 +00:00
|
|
|
|
If string NAME at point (maybe \"\") is not a file or URL, these pairs
|
1996-03-24 14:20:05 +00:00
|
|
|
|
specify actions to try creating such a string. A pair matches if either
|
|
|
|
|
KEY is a symbol, and it equals `major-mode', or
|
2010-01-11 15:22:23 +00:00
|
|
|
|
KEY is a string, it should match NAME as a regexp.
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
On a match, (FUNCTION NAME) is called and should return a file, an
|
2017-01-03 16:24:23 +00:00
|
|
|
|
URL, or nil. If nil, search the alist for further matches.
|
|
|
|
|
While calling FUNCTION, the match data is set according to KEY if KEY
|
|
|
|
|
is a string, so that FUNCTION can use `match-string' and friends
|
|
|
|
|
to extract substrings.")
|
1996-03-24 14:20:05 +00:00
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(put 'ffap-alist 'risky-local-variable t)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
|
1997-06-28 21:27:18 +00:00
|
|
|
|
;; Example `ffap-alist' modifications:
|
|
|
|
|
;;
|
|
|
|
|
;; (setq ffap-alist ; remove a feature in `ffap-alist'
|
|
|
|
|
;; (delete (assoc 'c-mode ffap-alist) ffap-alist))
|
|
|
|
|
;;
|
|
|
|
|
;; (setq ffap-alist ; add something to `ffap-alist'
|
|
|
|
|
;; (cons
|
|
|
|
|
;; (cons "^YSN[0-9]+$"
|
|
|
|
|
;; (defun ffap-ysn (name)
|
|
|
|
|
;; (concat
|
|
|
|
|
;; "http://www.physics.uiuc.edu/"
|
|
|
|
|
;; "ysn/httpd/htdocs/ysnarchive/issuefiles/"
|
|
|
|
|
;; (substring name 3) ".html")))
|
|
|
|
|
;; ffap-alist))
|
|
|
|
|
|
1997-05-05 23:40:22 +00:00
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;;; Action Definitions:
|
|
|
|
|
;;
|
|
|
|
|
;; Define various default members of `ffap-alist'.
|
|
|
|
|
|
|
|
|
|
(defun ffap-completable (name)
|
|
|
|
|
(let* ((dir (or (file-name-directory name) default-directory))
|
|
|
|
|
(cmp (file-name-completion (file-name-nondirectory name) dir)))
|
|
|
|
|
(and cmp (concat dir cmp))))
|
|
|
|
|
|
|
|
|
|
(defun ffap-home (name) (ffap-locate-file name t '("~")))
|
1997-05-05 23:40:22 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-info (name)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(ffap-locate-file
|
1997-05-05 23:40:22 +00:00
|
|
|
|
name '("" ".info")
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(or (ffap-symbol-value 'Info-directory-list)
|
|
|
|
|
(ffap-symbol-value 'Info-default-directory-list)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
)))
|
1997-05-05 23:40:22 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-info-2 (name) (ffap-info (substring name 5)))
|
|
|
|
|
|
|
|
|
|
(defun ffap-info-3 (name)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; This ignores the node! "(emacs)Top" same as "(emacs)Intro"
|
1997-05-05 23:40:22 +00:00
|
|
|
|
(and (equal (ffap-string-around) "()") (ffap-info name)))
|
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-el (name) (ffap-locate-file name t load-path))
|
1997-05-05 23:40:22 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-el-mode (name)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; If name == "foo.el" we will skip it, since ffap-el already
|
|
|
|
|
;; searched for it once. (This assumes the default ffap-alist.)
|
1997-05-05 23:40:22 +00:00
|
|
|
|
(and (not (string-match "\\.el\\'" name))
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(ffap-locate-file name '(".el") load-path)))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
|
2012-02-22 08:34:02 +00:00
|
|
|
|
;; FIXME this duplicates the logic of Man-header-file-path.
|
|
|
|
|
;; There should be a single central variable or function for this.
|
|
|
|
|
;; See also (bug#10702):
|
|
|
|
|
;; cc-search-directories, semantic-c-dependency-system-include-path,
|
|
|
|
|
;; semantic-gcc-setup
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(defvar ffap-c-path
|
2012-02-22 08:34:02 +00:00
|
|
|
|
(let ((arch (with-temp-buffer
|
|
|
|
|
(when (eq 0 (ignore-errors
|
|
|
|
|
(call-process "gcc" nil '(t nil) nil
|
|
|
|
|
"-print-multiarch")))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(buffer-substring (point) (line-end-position)))))
|
|
|
|
|
(base '("/usr/include" "/usr/local/include")))
|
|
|
|
|
(if (zerop (length arch))
|
|
|
|
|
base
|
|
|
|
|
(append base (list (expand-file-name arch "/usr/include")))))
|
|
|
|
|
"List of directories to search for include files.")
|
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(defun ffap-c-mode (name)
|
|
|
|
|
(ffap-locate-file name t ffap-c-path))
|
|
|
|
|
|
2013-10-19 02:35:20 +00:00
|
|
|
|
(defvar ffap-c++-path
|
|
|
|
|
(let ((c++-include-dir (with-temp-buffer
|
|
|
|
|
(when (eq 0 (ignore-errors
|
|
|
|
|
(call-process "g++" nil t nil "-v")))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (re-search-forward "--with-gxx-include-dir=\
|
|
|
|
|
\\([^[:space:]]+\\)"
|
|
|
|
|
nil 'noerror)
|
|
|
|
|
(match-string 1)
|
|
|
|
|
(when (re-search-forward "gcc version \
|
|
|
|
|
\\([[:digit:]]+.[[:digit:]]+.[[:digit:]]+\\)"
|
|
|
|
|
nil 'noerror)
|
|
|
|
|
(expand-file-name (match-string 1)
|
|
|
|
|
"/usr/include/c++/")))))))
|
|
|
|
|
(if c++-include-dir
|
|
|
|
|
(cons c++-include-dir ffap-c-path)
|
|
|
|
|
ffap-c-path))
|
|
|
|
|
"List of directories to search for include files.")
|
|
|
|
|
|
|
|
|
|
(defun ffap-c++-mode (name)
|
|
|
|
|
(ffap-locate-file name t ffap-c++-path))
|
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(defvar ffap-fortran-path '("../include" "/usr/include"))
|
|
|
|
|
|
|
|
|
|
(defun ffap-fortran-mode (name)
|
|
|
|
|
(ffap-locate-file name t ffap-fortran-path))
|
1997-05-05 23:40:22 +00:00
|
|
|
|
|
|
|
|
|
(defvar ffap-tex-path
|
|
|
|
|
t ; delayed initialization
|
2010-01-11 15:22:23 +00:00
|
|
|
|
"Path where `ffap-tex-mode' looks for TeX files.
|
1997-05-05 23:40:22 +00:00
|
|
|
|
If t, `ffap-tex-init' will initialize this when needed.")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2015-08-06 08:54:50 +00:00
|
|
|
|
(defvar ffap-latex-guess-rules '(("" . ".sty")
|
|
|
|
|
("" . ".cls")
|
|
|
|
|
("" . ".ltx")
|
|
|
|
|
("" . ".tex")
|
|
|
|
|
("" . "") ;; in some rare cases the
|
|
|
|
|
;; extension is already in
|
|
|
|
|
;; the buffer.
|
|
|
|
|
("beamertheme" . ".sty")
|
|
|
|
|
("beamercolortheme". ".sty")
|
|
|
|
|
("beamerfonttheme". ".sty")
|
|
|
|
|
("beamerinnertheme". ".sty")
|
|
|
|
|
("beameroutertheme". ".sty")
|
|
|
|
|
("" . ".ldf"))
|
|
|
|
|
"List of rules for guessing a filename.
|
|
|
|
|
Each rule is a cons (PREFIX . SUFFIX) used for guessing a
|
|
|
|
|
filename from the word at point by prepending PREFIX and
|
|
|
|
|
appending SUFFIX.")
|
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-tex-init ()
|
1997-05-05 23:40:22 +00:00
|
|
|
|
;; Compute ffap-tex-path if it is now t.
|
|
|
|
|
(and (eq t ffap-tex-path)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; this may be slow, so say something
|
1997-05-05 23:40:22 +00:00
|
|
|
|
(message "Initializing ffap-tex-path ...")
|
|
|
|
|
(setq ffap-tex-path
|
|
|
|
|
(ffap-reduce-path
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(cons
|
|
|
|
|
"."
|
|
|
|
|
(ffap-kpathsea-expand-path
|
|
|
|
|
(append
|
|
|
|
|
(ffap-list-env "TEXINPUTS")
|
|
|
|
|
;; (ffap-list-env "BIBINPUTS")
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(ffap-symbol-value
|
|
|
|
|
'TeX-macro-global ; AUCTeX
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
'("/usr/local/lib/tex/macros"
|
|
|
|
|
"/usr/local/lib/tex/inputs")))))))))
|
1997-05-05 23:40:22 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-tex-mode (name)
|
|
|
|
|
(ffap-tex-init)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(ffap-locate-file name '(".tex" "") ffap-tex-path))
|
1997-05-05 23:40:22 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-latex-mode (name)
|
2015-08-06 08:54:50 +00:00
|
|
|
|
"`ffap' function suitable for latex buffers.
|
|
|
|
|
This uses the program kpsewhich if available. In this case, the
|
|
|
|
|
variable `ffap-latex-guess-rules' is used for building a filename
|
|
|
|
|
out of NAME."
|
|
|
|
|
(cond ((file-exists-p name)
|
|
|
|
|
name)
|
|
|
|
|
((not (executable-find "kpsewhich"))
|
|
|
|
|
(ffap-tex-init)
|
|
|
|
|
(ffap-locate-file name '(".cls" ".sty" ".tex" "") ffap-tex-path))
|
|
|
|
|
(t
|
|
|
|
|
(let ((curbuf (current-buffer))
|
|
|
|
|
(guess-rules ffap-latex-guess-rules)
|
|
|
|
|
(preferred-suffix-rules '(("input" . ".tex")
|
|
|
|
|
("include" . ".tex")
|
|
|
|
|
("usepackage" . ".sty")
|
|
|
|
|
("RequirePackageWithOptions" . ".sty")
|
|
|
|
|
("RequirePackage" . ".sty")
|
|
|
|
|
("documentclass" . ".cls")
|
|
|
|
|
("documentstyle" . ".cls")
|
|
|
|
|
("LoadClass" . ".cls")
|
|
|
|
|
("LoadClassWithOptions" . ".cls")
|
|
|
|
|
("bibliography" . ".bib")
|
|
|
|
|
("addbibresource" . ""))))
|
|
|
|
|
;; We now add preferred suffix in front of suffixes.
|
|
|
|
|
(when
|
|
|
|
|
;; The condition is essentially:
|
|
|
|
|
;; (assoc (TeX-current-macro)
|
|
|
|
|
;; (mapcar 'car preferred-suffix-rules))
|
|
|
|
|
;; but (TeX-current-macro) can take time, so we just
|
|
|
|
|
;; check if one of the `car' in preferred-suffix-rules
|
|
|
|
|
;; is found before point on the current line. It
|
|
|
|
|
;; should cover most cases.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(re-search-backward (regexp-opt
|
|
|
|
|
(mapcar 'car preferred-suffix-rules))
|
|
|
|
|
(point-at-bol)
|
|
|
|
|
t))
|
|
|
|
|
(push (cons "" (cdr (assoc (match-string 0) ; i.e. "(TeX-current-macro)"
|
|
|
|
|
preferred-suffix-rules)))
|
|
|
|
|
guess-rules))
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(let ((process-environment (buffer-local-value
|
|
|
|
|
'process-environment curbuf))
|
|
|
|
|
(exec-path (buffer-local-value 'exec-path curbuf)))
|
2016-01-08 21:28:09 +00:00
|
|
|
|
(apply #'call-process "kpsewhich" nil t nil
|
|
|
|
|
(mapcar (lambda (rule)
|
|
|
|
|
(concat (car rule) name (cdr rule)))
|
|
|
|
|
guess-rules)))
|
2015-08-06 08:54:50 +00:00
|
|
|
|
(when (< (point-min) (point-max))
|
|
|
|
|
(buffer-substring (goto-char (point-min)) (point-at-eol))))))))
|
1997-05-05 23:40:22 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-tex (name)
|
|
|
|
|
(ffap-tex-init)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(ffap-locate-file name t ffap-tex-path))
|
|
|
|
|
|
|
|
|
|
(defvar ffap-bib-path
|
|
|
|
|
(ffap-list-env "BIBINPUTS"
|
|
|
|
|
(ffap-reduce-path
|
|
|
|
|
'(
|
|
|
|
|
;; a few wild guesses, need better
|
|
|
|
|
"/usr/local/lib/tex/macros/bib" ; Solaris?
|
|
|
|
|
"/usr/lib/texmf/bibtex/bib" ; Linux?
|
|
|
|
|
))))
|
1997-05-05 23:40:22 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-bib (name)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(ffap-locate-file name t ffap-bib-path))
|
1997-05-05 23:40:22 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-dired (name)
|
2008-04-21 21:01:38 +00:00
|
|
|
|
(let ((pt (point)) try)
|
1997-05-05 23:40:22 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(and (progn
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(looking-at " *[-d]r[-w][-x][-r][-w][-x][-r][-w][-x] "))
|
|
|
|
|
(re-search-backward "^ *$" nil t)
|
|
|
|
|
(re-search-forward "^ *\\([^ \t\n:]*\\):\n *total " pt t)
|
|
|
|
|
(file-exists-p
|
|
|
|
|
(setq try
|
|
|
|
|
(expand-file-name
|
|
|
|
|
name
|
|
|
|
|
(buffer-substring
|
|
|
|
|
(match-beginning 1) (match-end 1)))))
|
|
|
|
|
try))))
|
|
|
|
|
|
|
|
|
|
;; Maybe a "Lisp Code Directory" reference:
|
|
|
|
|
(defun ffap-lcd (name)
|
2009-12-09 02:11:29 +00:00
|
|
|
|
;; FIXME: Is this still in use?
|
1997-05-05 23:40:22 +00:00
|
|
|
|
(and
|
|
|
|
|
(or
|
|
|
|
|
;; lisp-dir-apropos output buffer:
|
|
|
|
|
(string-match "Lisp Code Dir" (buffer-name))
|
|
|
|
|
;; Inside an LCD entry like |~/misc/ffap.el.Z|,
|
|
|
|
|
;; or maybe the holy LCD-Datafile itself:
|
|
|
|
|
(member (ffap-string-around) '("||" "|\n")))
|
|
|
|
|
(concat
|
|
|
|
|
;; lispdir.el may not be loaded yet:
|
2003-02-15 19:26:25 +00:00
|
|
|
|
(ffap-host-to-filename
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(ffap-symbol-value 'elisp-archive-host
|
|
|
|
|
"archive.cis.ohio-state.edu"))
|
1997-05-05 23:40:22 +00:00
|
|
|
|
(file-name-as-directory
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(ffap-symbol-value 'elisp-archive-directory
|
|
|
|
|
"/pub/gnu/emacs/elisp-archive/"))
|
1997-05-05 23:40:22 +00:00
|
|
|
|
(substring name 2))))
|
|
|
|
|
|
2009-12-06 00:22:51 +00:00
|
|
|
|
(defcustom ffap-rfc-path
|
|
|
|
|
(concat (ffap-host-to-filename "ftp.rfc-editor.org") "/in-notes/rfc%s.txt")
|
|
|
|
|
"A `format' string making a filename for RFC documents.
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
This can be an ange-ftp or Tramp remote filename to download, or
|
2009-12-06 00:22:51 +00:00
|
|
|
|
a local filename if you have full set of RFCs locally. See also
|
|
|
|
|
`ffap-rfc-directories'."
|
|
|
|
|
:type 'string
|
|
|
|
|
:version "23.1"
|
|
|
|
|
:group 'ffap)
|
|
|
|
|
|
2008-02-11 04:06:27 +00:00
|
|
|
|
(defcustom ffap-rfc-directories nil
|
|
|
|
|
"A list of directories to look for RFC files.
|
|
|
|
|
If a given RFC isn't in these then `ffap-rfc-path' is offered."
|
|
|
|
|
:type '(repeat directory)
|
2008-02-11 04:07:14 +00:00
|
|
|
|
:version "23.1"
|
2008-02-11 04:06:27 +00:00
|
|
|
|
:group 'ffap)
|
|
|
|
|
|
1997-05-05 23:40:22 +00:00
|
|
|
|
(defun ffap-rfc (name)
|
2008-02-11 04:06:27 +00:00
|
|
|
|
(let ((num (match-string 1 name)))
|
|
|
|
|
(or (ffap-locate-file (format "rfc%s.txt" num) t ffap-rfc-directories)
|
|
|
|
|
(format ffap-rfc-path num))))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
;;; At-Point Functions:
|
|
|
|
|
|
|
|
|
|
(defvar ffap-string-at-point-mode-alist
|
|
|
|
|
'(
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; The default, used when the `major-mode' is not found.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; Slightly controversial decisions:
|
|
|
|
|
;; * strip trailing "@" and ":"
|
|
|
|
|
;; * no commas (good for latex)
|
2015-08-05 17:04:44 +00:00
|
|
|
|
(file "--:\\\\${}+<>@-Z_[:alpha:]~*?" "<@" "@>;.,!:")
|
2018-02-16 20:16:15 +00:00
|
|
|
|
;; An url, or maybe an email/news message-id:
|
2013-02-04 12:02:25 +00:00
|
|
|
|
(url "--:=&?$+@-Z_[:alpha:]~#,%;*()!'" "^[0-9a-zA-Z]" ":;.,!?")
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Find a string that does *not* contain a colon:
|
2008-06-10 19:33:37 +00:00
|
|
|
|
(nocolon "--9$+<>@-Z_[:alpha:]~" "<@" "@>;.,!?")
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; A machine:
|
2007-01-10 23:48:04 +00:00
|
|
|
|
(machine "-[:alnum:]." "" ".")
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Mathematica paths: allow backquotes
|
2007-01-10 23:48:04 +00:00
|
|
|
|
(math-mode ",-:$+<>@-Z_[:lower:]~`" "<" "@>;.,!?`:")
|
2015-08-06 11:05:11 +00:00
|
|
|
|
;; (La)TeX: don't allow braces
|
|
|
|
|
(latex-mode "--:\\\\$+<>@-Z_[:alpha:]~*?" "<@" "@>;.,!:")
|
|
|
|
|
(tex-mode "--:\\\\$+<>@-Z_[:alpha:]~*?" "<@" "@>;.,!:")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
)
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
"Alist of (MODE CHARS BEG END), where MODE is a symbol,
|
|
|
|
|
possibly a major-mode name, or one of the symbols
|
1998-09-30 19:06:27 +00:00
|
|
|
|
`file', `url', `machine', and `nocolon'.
|
Disambiguate function and variable references in docstrings.
* lisp/comint.el (comint-history-isearch-message): Fix ambiguous doc
string cross-reference(s).
* lisp/ffap.el (ffap-string-at-point-region, ffap-next)
(ffap-string-at-point, ffap-string-around)
(ffap-copy-string-as-kill, ffap-highlight-overlay)
(ffap-literally): Fix ambiguous doc string cross-reference(s).
* lisp/font-lock.el (font-lock-keywords-alist)
(font-lock-removed-keywords-alist): Fix ambiguous doc string
cross-reference(s).
* lisp/help-mode.el (help-xref-symbol-regexp): Add "call" as a hint for
a cross-reference to a function.
* lisp/info.el (Info-find-emacs-command-nodes): Fix ambiguous doc
string cross-reference(s).
* lisp/isearch.el (isearch-message-function, isearch-fail-pos): Fix
ambiguous doc string cross-reference(s).
* lisp/misearch.el (multi-isearch-next-buffer-function): Fix ambiguous
doc string cross-reference(s).
* lisp/newcomment.el (comment-box): Fix ambiguous doc string
cross-reference(s).
* lisp/printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
(pr-setting-database): Fix ambiguous doc string
cross-reference(s).
* lisp/ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
(ps-n-up-filling-database): Fix ambiguous doc string
cross-reference(s).
* lisp/server.el (server-buffer, server-log): Fix ambiguous doc string
cross-reference(s).
* lisp/simple.el (newline, delete-backward-char, delete-forward-char)
(minibuffer-history-isearch-message, kill-line, track-eol)
(temporary-goal-column): Fix ambiguous doc string
cross-reference(s).
* lisp/whitespace.el (whitespace-point)
(whitespace-font-lock-refontify, whitespace-bob-marker)
(whitespace-eob-marker): Fix ambiguous doc string
cross-reference(s).
* lisp/calc/calc.el (calc-highlight-selections-with-faces)
(calc-dispatch): Fix ambiguous doc string cross-reference(s).
* lisp/emacs-lisp/edebug.el (edebug-read, edebug-eval-defun): Fix
ambiguous doc string cross-reference(s).
* lisp/gnus/gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
cross-reference(s).
* lisp/gnus/gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
cross-reference(s).
* lisp/international/mule.el (add-to-coding-system-list): Fix ambiguous
doc string cross-reference(s).
* lisp/progmodes/cc-fonts.el (c-font-lock-keywords-3)
(c++-font-lock-keywords-3, objc-font-lock-keywords-3)
(java-font-lock-keywords-3, idl-font-lock-keywords-3)
(pike-font-lock-keywords-3): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/compile.el (compile): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/etags.el (tags-table-files)
(tags-table-files-function, tags-included-tables-function): Fix
ambiguous doc string cross-reference(s).
* lisp/progmodes/gdb-mi.el (gdb, gdb-setup-windows)
(gdb-restore-windows): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/flyspell.el (flyspell-mark-duplications-flag)
(flyspell-default-deplacement-commands): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/ispell.el (ispell-accept-output): Fix ambiguous doc
string cross-reference(s).
* lisp/textmodes/sgml-mode.el (html-tag-help): Fix ambiguous doc string
cross-reference(s).
* lisp/vc/compare-w.el (compare-ignore-whitespace)
(compare-ignore-case, compare-windows-dehighlight): Fix ambiguous
doc string cross-reference(s).
* lisp/vc/diff.el (diff): Fix ambiguous doc string cross-reference(s).
* src/insdel.c (Fcombine_after_change_execute, syms_of_insdel): Fix
ambiguous doc string cross-reference(s).
* src/keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
doc string cross-reference(s).
* src/window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
string cross-reference(s).
Fixes: debbugs:12686
2013-01-11 23:08:55 +00:00
|
|
|
|
Function `ffap-string-at-point' uses the data fields as follows:
|
1996-03-24 14:20:05 +00:00
|
|
|
|
1. find a maximal string of CHARS around point,
|
|
|
|
|
2. strip BEG chars before point from the beginning,
|
2015-08-05 16:57:20 +00:00
|
|
|
|
3. strip END chars after point from the end.
|
|
|
|
|
The arguments CHARS, BEG and END are handled as described in
|
|
|
|
|
`skip-chars-forward'.")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
(defvar ffap-string-at-point nil
|
|
|
|
|
;; Added at suggestion of RHOGEE (for ff-paths), 7/24/95.
|
Disambiguate function and variable references in docstrings.
* lisp/comint.el (comint-history-isearch-message): Fix ambiguous doc
string cross-reference(s).
* lisp/ffap.el (ffap-string-at-point-region, ffap-next)
(ffap-string-at-point, ffap-string-around)
(ffap-copy-string-as-kill, ffap-highlight-overlay)
(ffap-literally): Fix ambiguous doc string cross-reference(s).
* lisp/font-lock.el (font-lock-keywords-alist)
(font-lock-removed-keywords-alist): Fix ambiguous doc string
cross-reference(s).
* lisp/help-mode.el (help-xref-symbol-regexp): Add "call" as a hint for
a cross-reference to a function.
* lisp/info.el (Info-find-emacs-command-nodes): Fix ambiguous doc
string cross-reference(s).
* lisp/isearch.el (isearch-message-function, isearch-fail-pos): Fix
ambiguous doc string cross-reference(s).
* lisp/misearch.el (multi-isearch-next-buffer-function): Fix ambiguous
doc string cross-reference(s).
* lisp/newcomment.el (comment-box): Fix ambiguous doc string
cross-reference(s).
* lisp/printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
(pr-setting-database): Fix ambiguous doc string
cross-reference(s).
* lisp/ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
(ps-n-up-filling-database): Fix ambiguous doc string
cross-reference(s).
* lisp/server.el (server-buffer, server-log): Fix ambiguous doc string
cross-reference(s).
* lisp/simple.el (newline, delete-backward-char, delete-forward-char)
(minibuffer-history-isearch-message, kill-line, track-eol)
(temporary-goal-column): Fix ambiguous doc string
cross-reference(s).
* lisp/whitespace.el (whitespace-point)
(whitespace-font-lock-refontify, whitespace-bob-marker)
(whitespace-eob-marker): Fix ambiguous doc string
cross-reference(s).
* lisp/calc/calc.el (calc-highlight-selections-with-faces)
(calc-dispatch): Fix ambiguous doc string cross-reference(s).
* lisp/emacs-lisp/edebug.el (edebug-read, edebug-eval-defun): Fix
ambiguous doc string cross-reference(s).
* lisp/gnus/gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
cross-reference(s).
* lisp/gnus/gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
cross-reference(s).
* lisp/international/mule.el (add-to-coding-system-list): Fix ambiguous
doc string cross-reference(s).
* lisp/progmodes/cc-fonts.el (c-font-lock-keywords-3)
(c++-font-lock-keywords-3, objc-font-lock-keywords-3)
(java-font-lock-keywords-3, idl-font-lock-keywords-3)
(pike-font-lock-keywords-3): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/compile.el (compile): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/etags.el (tags-table-files)
(tags-table-files-function, tags-included-tables-function): Fix
ambiguous doc string cross-reference(s).
* lisp/progmodes/gdb-mi.el (gdb, gdb-setup-windows)
(gdb-restore-windows): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/flyspell.el (flyspell-mark-duplications-flag)
(flyspell-default-deplacement-commands): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/ispell.el (ispell-accept-output): Fix ambiguous doc
string cross-reference(s).
* lisp/textmodes/sgml-mode.el (html-tag-help): Fix ambiguous doc string
cross-reference(s).
* lisp/vc/compare-w.el (compare-ignore-whitespace)
(compare-ignore-case, compare-windows-dehighlight): Fix ambiguous
doc string cross-reference(s).
* lisp/vc/diff.el (diff): Fix ambiguous doc string cross-reference(s).
* src/insdel.c (Fcombine_after_change_execute, syms_of_insdel): Fix
ambiguous doc string cross-reference(s).
* src/keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
doc string cross-reference(s).
* src/window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
string cross-reference(s).
Fixes: debbugs:12686
2013-01-11 23:08:55 +00:00
|
|
|
|
"Last string returned by the function `ffap-string-at-point'.")
|
1996-03-24 14:20:05 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-string-at-point (&optional mode)
|
|
|
|
|
"Return a string of characters from around point.
|
2017-03-17 22:03:23 +00:00
|
|
|
|
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
MODE (defaults to value of `major-mode') is a symbol used to look up
|
|
|
|
|
string syntax parameters in `ffap-string-at-point-mode-alist'.
|
2017-03-17 22:03:23 +00:00
|
|
|
|
|
1998-09-30 19:06:27 +00:00
|
|
|
|
If MODE is not found, we use `file' instead of MODE.
|
2017-03-17 22:03:23 +00:00
|
|
|
|
|
2004-02-28 05:00:19 +00:00
|
|
|
|
If the region is active, return a string from the region.
|
2017-03-17 22:03:23 +00:00
|
|
|
|
|
|
|
|
|
If the point is in a comment, ensure that the returned string does not
|
|
|
|
|
contain the comment start characters (especially for major modes that
|
|
|
|
|
have '//' as comment start characters).
|
|
|
|
|
|
|
|
|
|
Set the variables `ffap-string-at-point' and
|
2016-12-30 06:31:01 +00:00
|
|
|
|
`ffap-string-at-point-region'.
|
2017-03-17 22:03:23 +00:00
|
|
|
|
|
2016-12-30 06:31:01 +00:00
|
|
|
|
When the region is active and larger than `ffap-max-region-length',
|
|
|
|
|
return an empty string, and set `ffap-string-at-point-region' to '(1 1)."
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(let* ((args
|
|
|
|
|
(cdr
|
|
|
|
|
(or (assq (or mode major-mode) ffap-string-at-point-mode-alist)
|
|
|
|
|
(assq 'file ffap-string-at-point-mode-alist))))
|
2017-03-17 22:03:23 +00:00
|
|
|
|
(region-selected (use-region-p))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(pt (point))
|
2017-03-17 22:03:23 +00:00
|
|
|
|
(beg (if region-selected
|
2013-02-04 12:02:25 +00:00
|
|
|
|
(region-beginning)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(skip-chars-backward (car args))
|
|
|
|
|
(skip-chars-forward (nth 1 args) pt)
|
|
|
|
|
(point))))
|
2017-03-17 22:03:23 +00:00
|
|
|
|
(end (if region-selected
|
2013-02-04 12:02:25 +00:00
|
|
|
|
(region-end)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(skip-chars-forward (car args))
|
|
|
|
|
(skip-chars-backward (nth 2 args) pt)
|
2016-12-30 06:31:01 +00:00
|
|
|
|
(point))))
|
|
|
|
|
(region-len (- (max beg end) (min beg end))))
|
2017-03-17 22:03:23 +00:00
|
|
|
|
|
|
|
|
|
;; If the initial characters of the to-be-returned string are the
|
|
|
|
|
;; current major mode's comment starter characters, *and* are
|
|
|
|
|
;; not part of a comment, remove those from the returned string
|
|
|
|
|
;; (Bug#24057).
|
|
|
|
|
;; Example comments in `c-mode' (which considers lines beginning
|
|
|
|
|
;; with "//" as comments):
|
|
|
|
|
;; //tmp - This is a comment. It does not contain any path reference.
|
|
|
|
|
;; ///tmp - This is a comment. The "/tmp" portion in that is a path.
|
|
|
|
|
;; ////tmp - This is a comment. The "//tmp" portion in that is a path.
|
|
|
|
|
(when (and
|
|
|
|
|
;; Proceed if no region is selected by the user.
|
|
|
|
|
(null region-selected)
|
|
|
|
|
;; Check if END character is part of a comment.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(nth 4 (syntax-ppss end))))
|
|
|
|
|
;; Move BEG to beginning of comment (after the comment start
|
|
|
|
|
;; characters), or END, whichever comes first.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((state (syntax-ppss beg)))
|
|
|
|
|
;; (nth 4 (syntax-ppss)) will be nil for comment start chars.
|
|
|
|
|
(unless (nth 4 state)
|
|
|
|
|
(parse-partial-sexp beg end nil nil state :commentstop)
|
|
|
|
|
(setq beg (point))))))
|
|
|
|
|
|
2016-12-30 06:31:01 +00:00
|
|
|
|
(if (and (natnump ffap-max-region-length)
|
|
|
|
|
(< region-len ffap-max-region-length)) ; Bug#25243.
|
|
|
|
|
(setf ffap-string-at-point-region (list beg end)
|
|
|
|
|
ffap-string-at-point
|
|
|
|
|
(buffer-substring-no-properties beg end))
|
|
|
|
|
(setf ffap-string-at-point-region (list 1 1)
|
|
|
|
|
ffap-string-at-point ""))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-string-around ()
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; Sometimes useful to decide how to treat a string.
|
Disambiguate function and variable references in docstrings.
* lisp/comint.el (comint-history-isearch-message): Fix ambiguous doc
string cross-reference(s).
* lisp/ffap.el (ffap-string-at-point-region, ffap-next)
(ffap-string-at-point, ffap-string-around)
(ffap-copy-string-as-kill, ffap-highlight-overlay)
(ffap-literally): Fix ambiguous doc string cross-reference(s).
* lisp/font-lock.el (font-lock-keywords-alist)
(font-lock-removed-keywords-alist): Fix ambiguous doc string
cross-reference(s).
* lisp/help-mode.el (help-xref-symbol-regexp): Add "call" as a hint for
a cross-reference to a function.
* lisp/info.el (Info-find-emacs-command-nodes): Fix ambiguous doc
string cross-reference(s).
* lisp/isearch.el (isearch-message-function, isearch-fail-pos): Fix
ambiguous doc string cross-reference(s).
* lisp/misearch.el (multi-isearch-next-buffer-function): Fix ambiguous
doc string cross-reference(s).
* lisp/newcomment.el (comment-box): Fix ambiguous doc string
cross-reference(s).
* lisp/printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
(pr-setting-database): Fix ambiguous doc string
cross-reference(s).
* lisp/ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
(ps-n-up-filling-database): Fix ambiguous doc string
cross-reference(s).
* lisp/server.el (server-buffer, server-log): Fix ambiguous doc string
cross-reference(s).
* lisp/simple.el (newline, delete-backward-char, delete-forward-char)
(minibuffer-history-isearch-message, kill-line, track-eol)
(temporary-goal-column): Fix ambiguous doc string
cross-reference(s).
* lisp/whitespace.el (whitespace-point)
(whitespace-font-lock-refontify, whitespace-bob-marker)
(whitespace-eob-marker): Fix ambiguous doc string
cross-reference(s).
* lisp/calc/calc.el (calc-highlight-selections-with-faces)
(calc-dispatch): Fix ambiguous doc string cross-reference(s).
* lisp/emacs-lisp/edebug.el (edebug-read, edebug-eval-defun): Fix
ambiguous doc string cross-reference(s).
* lisp/gnus/gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
cross-reference(s).
* lisp/gnus/gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
cross-reference(s).
* lisp/international/mule.el (add-to-coding-system-list): Fix ambiguous
doc string cross-reference(s).
* lisp/progmodes/cc-fonts.el (c-font-lock-keywords-3)
(c++-font-lock-keywords-3, objc-font-lock-keywords-3)
(java-font-lock-keywords-3, idl-font-lock-keywords-3)
(pike-font-lock-keywords-3): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/compile.el (compile): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/etags.el (tags-table-files)
(tags-table-files-function, tags-included-tables-function): Fix
ambiguous doc string cross-reference(s).
* lisp/progmodes/gdb-mi.el (gdb, gdb-setup-windows)
(gdb-restore-windows): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/flyspell.el (flyspell-mark-duplications-flag)
(flyspell-default-deplacement-commands): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/ispell.el (ispell-accept-output): Fix ambiguous doc
string cross-reference(s).
* lisp/textmodes/sgml-mode.el (html-tag-help): Fix ambiguous doc string
cross-reference(s).
* lisp/vc/compare-w.el (compare-ignore-whitespace)
(compare-ignore-case, compare-windows-dehighlight): Fix ambiguous
doc string cross-reference(s).
* lisp/vc/diff.el (diff): Fix ambiguous doc string cross-reference(s).
* src/insdel.c (Fcombine_after_change_execute, syms_of_insdel): Fix
ambiguous doc string cross-reference(s).
* src/keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
doc string cross-reference(s).
* src/window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
string cross-reference(s).
Fixes: debbugs:12686
2013-01-11 23:08:55 +00:00
|
|
|
|
"Return string of two chars around last result of function
|
|
|
|
|
`ffap-string-at-point'.
|
1996-03-24 14:20:05 +00:00
|
|
|
|
Assumes the buffer has not changed."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(format "%c%c"
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (car ffap-string-at-point-region))
|
|
|
|
|
(preceding-char)) ; maybe 0
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char (nth 1 ffap-string-at-point-region))
|
|
|
|
|
(following-char)) ; maybe 0
|
|
|
|
|
)))
|
|
|
|
|
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(defun ffap-copy-string-as-kill (&optional mode)
|
|
|
|
|
;; Requested by MCOOK. Useful?
|
Disambiguate function and variable references in docstrings.
* lisp/comint.el (comint-history-isearch-message): Fix ambiguous doc
string cross-reference(s).
* lisp/ffap.el (ffap-string-at-point-region, ffap-next)
(ffap-string-at-point, ffap-string-around)
(ffap-copy-string-as-kill, ffap-highlight-overlay)
(ffap-literally): Fix ambiguous doc string cross-reference(s).
* lisp/font-lock.el (font-lock-keywords-alist)
(font-lock-removed-keywords-alist): Fix ambiguous doc string
cross-reference(s).
* lisp/help-mode.el (help-xref-symbol-regexp): Add "call" as a hint for
a cross-reference to a function.
* lisp/info.el (Info-find-emacs-command-nodes): Fix ambiguous doc
string cross-reference(s).
* lisp/isearch.el (isearch-message-function, isearch-fail-pos): Fix
ambiguous doc string cross-reference(s).
* lisp/misearch.el (multi-isearch-next-buffer-function): Fix ambiguous
doc string cross-reference(s).
* lisp/newcomment.el (comment-box): Fix ambiguous doc string
cross-reference(s).
* lisp/printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
(pr-setting-database): Fix ambiguous doc string
cross-reference(s).
* lisp/ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
(ps-n-up-filling-database): Fix ambiguous doc string
cross-reference(s).
* lisp/server.el (server-buffer, server-log): Fix ambiguous doc string
cross-reference(s).
* lisp/simple.el (newline, delete-backward-char, delete-forward-char)
(minibuffer-history-isearch-message, kill-line, track-eol)
(temporary-goal-column): Fix ambiguous doc string
cross-reference(s).
* lisp/whitespace.el (whitespace-point)
(whitespace-font-lock-refontify, whitespace-bob-marker)
(whitespace-eob-marker): Fix ambiguous doc string
cross-reference(s).
* lisp/calc/calc.el (calc-highlight-selections-with-faces)
(calc-dispatch): Fix ambiguous doc string cross-reference(s).
* lisp/emacs-lisp/edebug.el (edebug-read, edebug-eval-defun): Fix
ambiguous doc string cross-reference(s).
* lisp/gnus/gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
cross-reference(s).
* lisp/gnus/gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
cross-reference(s).
* lisp/international/mule.el (add-to-coding-system-list): Fix ambiguous
doc string cross-reference(s).
* lisp/progmodes/cc-fonts.el (c-font-lock-keywords-3)
(c++-font-lock-keywords-3, objc-font-lock-keywords-3)
(java-font-lock-keywords-3, idl-font-lock-keywords-3)
(pike-font-lock-keywords-3): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/compile.el (compile): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/etags.el (tags-table-files)
(tags-table-files-function, tags-included-tables-function): Fix
ambiguous doc string cross-reference(s).
* lisp/progmodes/gdb-mi.el (gdb, gdb-setup-windows)
(gdb-restore-windows): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/flyspell.el (flyspell-mark-duplications-flag)
(flyspell-default-deplacement-commands): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/ispell.el (ispell-accept-output): Fix ambiguous doc
string cross-reference(s).
* lisp/textmodes/sgml-mode.el (html-tag-help): Fix ambiguous doc string
cross-reference(s).
* lisp/vc/compare-w.el (compare-ignore-whitespace)
(compare-ignore-case, compare-windows-dehighlight): Fix ambiguous
doc string cross-reference(s).
* lisp/vc/diff.el (diff): Fix ambiguous doc string cross-reference(s).
* src/insdel.c (Fcombine_after_change_execute, syms_of_insdel): Fix
ambiguous doc string cross-reference(s).
* src/keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
doc string cross-reference(s).
* src/window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
string cross-reference(s).
Fixes: debbugs:12686
2013-01-11 23:08:55 +00:00
|
|
|
|
"Call function `ffap-string-at-point', and copy result to `kill-ring'."
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let ((str (ffap-string-at-point mode)))
|
|
|
|
|
(if (equal "" str)
|
|
|
|
|
(message "No string found around point.")
|
|
|
|
|
(kill-new str)
|
|
|
|
|
;; Older: (apply 'copy-region-as-kill ffap-string-at-point-region)
|
|
|
|
|
(message "Copied to kill ring: %s" str))))
|
|
|
|
|
|
2007-11-27 04:07:26 +00:00
|
|
|
|
;; External.
|
2007-11-29 04:25:49 +00:00
|
|
|
|
(declare-function w3-view-this-url "ext:w3" (&optional no-show))
|
2007-11-27 04:07:26 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-url-at-point ()
|
2015-07-22 15:35:16 +00:00
|
|
|
|
"Return URL from around point if it exists, or nil.
|
|
|
|
|
|
|
|
|
|
Sets the variable `ffap-string-at-point-region' to the bounds of URL, if any."
|
2012-05-10 06:27:12 +00:00
|
|
|
|
(when ffap-url-regexp
|
|
|
|
|
(or (and (eq major-mode 'w3-mode) ; In a w3 buffer button?
|
|
|
|
|
(w3-view-this-url t))
|
2013-02-04 12:02:25 +00:00
|
|
|
|
(let ((thing-at-point-beginning-of-url-regexp ffap-url-regexp)
|
2015-07-22 15:35:16 +00:00
|
|
|
|
(thing-at-point-default-mail-uri-scheme ffap-foo-at-bar-prefix)
|
|
|
|
|
val)
|
|
|
|
|
(setq val (thing-at-point-url-at-point ffap-lax-url
|
|
|
|
|
(if (use-region-p)
|
|
|
|
|
(cons (region-beginning)
|
|
|
|
|
(region-end)))))
|
|
|
|
|
(if val
|
|
|
|
|
(let ((bounds (thing-at-point-bounds-of-url-at-point
|
|
|
|
|
ffap-lax-url)))
|
|
|
|
|
(setq ffap-string-at-point-region
|
|
|
|
|
(list (car bounds) (cdr bounds)))))
|
|
|
|
|
val))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
(defvar ffap-gopher-regexp
|
2017-01-08 23:19:32 +00:00
|
|
|
|
"\\<\\(Type\\|Name\\|Path\\|Host\\|Port\\) *= *"
|
|
|
|
|
"Regexp matching a key in a gopher bookmark.
|
|
|
|
|
Set to nil to disable matching gopher bookmarks.")
|
|
|
|
|
|
|
|
|
|
(defun ffap--gopher-var-on-line ()
|
|
|
|
|
"Return (KEY . VALUE) of gopher bookmark on current line."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((eol (progn (end-of-line) (skip-chars-backward " ") (point)))
|
|
|
|
|
(bol (progn (beginning-of-line) (point))))
|
|
|
|
|
(when (re-search-forward ffap-gopher-regexp eol t)
|
|
|
|
|
(let ((key (match-string 1))
|
|
|
|
|
(val (buffer-substring-no-properties (match-end 0) eol)))
|
|
|
|
|
(cons (intern (downcase key)) val))))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-gopher-at-point ()
|
2015-07-22 15:35:16 +00:00
|
|
|
|
"If point is inside a gopher bookmark block, return its URL.
|
|
|
|
|
|
|
|
|
|
Sets the variable `ffap-string-at-point-region' to the bounds of URL, if any."
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; `gopher-parse-bookmark' from gopher.el is not so robust
|
2017-01-08 23:19:32 +00:00
|
|
|
|
(when (stringp ffap-gopher-regexp)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let* ((beg (progn (beginning-of-line)
|
|
|
|
|
(while (and (not (bobp)) (ffap--gopher-var-on-line))
|
|
|
|
|
(forward-line -1))
|
|
|
|
|
(point)))
|
|
|
|
|
(bookmark (cl-loop for keyval = (ffap--gopher-var-on-line)
|
|
|
|
|
while keyval collect keyval
|
|
|
|
|
do (forward-line 1))))
|
|
|
|
|
(when bookmark
|
|
|
|
|
(setq ffap-string-at-point-region (list beg (point)))
|
|
|
|
|
(let-alist (nconc bookmark '((type . "1") (port . "70")))
|
|
|
|
|
(if (and .path (string-match "\\`ftp:.*@" .path))
|
|
|
|
|
(concat "ftp://"
|
|
|
|
|
(substring .path 4 (1- (match-end 0)))
|
|
|
|
|
(substring .path (match-end 0)))
|
|
|
|
|
(and (= (length .type) 1)
|
|
|
|
|
.host ;; (ffap-machine-p host)
|
|
|
|
|
(concat "gopher://" .host
|
|
|
|
|
(if (equal .port "70") "" (concat ":" .port))
|
|
|
|
|
"/" .type .path)))))))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
(defvar ffap-ftp-sans-slash-regexp
|
|
|
|
|
(and
|
|
|
|
|
ffap-ftp-regexp
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Note: by now, we know it is not an url.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; Icky regexp avoids: default: 123: foo::bar cs:pub
|
|
|
|
|
;; It does match on: mic@cs: cs:/pub mathcs.emory.edu: (point at end)
|
|
|
|
|
"\\`\\([^:@]+@[^:@]+:\\|[^@.:]+\\.[^@:]+:\\|[^:]+:[~/]\\)\\([^:]\\|\\'\\)")
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
"Strings matching this are coerced to FTP file names by ffap.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
That is, ffap just prepends \"/\". Set to nil to disable.")
|
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-file-at-point ()
|
1995-11-12 23:58:04 +00:00
|
|
|
|
"Return filename from around point if it exists, or nil.
|
|
|
|
|
Existence test is skipped for names that look remote.
|
|
|
|
|
If the filename is not obvious, it also tries `ffap-alist',
|
2010-01-11 15:22:23 +00:00
|
|
|
|
which may actually result in an URL rather than a filename."
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Note: this function does not need to look for url's, just
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; filenames. On the other hand, it is responsible for converting
|
2003-02-15 19:26:25 +00:00
|
|
|
|
;; a pseudo-url "site.com://dir" to an ftp file name
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(let* ((case-fold-search t) ; url prefixes are case-insensitive
|
|
|
|
|
(data (match-data))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(string (ffap-string-at-point)) ; uses mode alist
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(name
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(or (condition-case nil
|
|
|
|
|
(and (not (string-match "//" string)) ; foo.com://bar
|
|
|
|
|
(substitute-in-file-name string))
|
|
|
|
|
(error nil))
|
|
|
|
|
string))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(abs (file-name-absolute-p name))
|
2007-04-07 02:58:53 +00:00
|
|
|
|
(default-directory default-directory)
|
|
|
|
|
(oname name))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
(cond
|
2004-12-13 05:16:25 +00:00
|
|
|
|
;; Immediate rejects (/ and // and /* are too common in C/C++):
|
|
|
|
|
((member name '("" "/" "//" "/*" ".")) nil)
|
1999-02-13 16:28:34 +00:00
|
|
|
|
;; Immediately test local filenames. If default-directory is
|
|
|
|
|
;; remote, you probably already have a connection.
|
|
|
|
|
((and (not abs) (ffap-file-exists-string name)))
|
|
|
|
|
;; Try stripping off line numbers; good for compilation/grep output.
|
|
|
|
|
((and (not abs) (string-match ":[0-9]" name)
|
|
|
|
|
(ffap-file-exists-string (substring name 0 (match-beginning 0)))))
|
2003-09-29 18:05:31 +00:00
|
|
|
|
;; Try stripping off prominent (non-root - #) shell prompts
|
|
|
|
|
;; if the ffap-shell-prompt-regexp is non-nil.
|
|
|
|
|
((and ffap-shell-prompt-regexp
|
|
|
|
|
(not abs) (string-match ffap-shell-prompt-regexp name)
|
|
|
|
|
(ffap-file-exists-string (substring name (match-end 0)))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; Accept remote names without actual checking (too slow):
|
2007-04-07 02:58:53 +00:00
|
|
|
|
((and abs (ffap-file-remote-p name)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; Ok, not remote, try the existence test even if it is absolute:
|
|
|
|
|
((and abs (ffap-file-exists-string name)))
|
2009-09-09 02:36:38 +00:00
|
|
|
|
;; Try stripping off line numbers.
|
|
|
|
|
((and abs (string-match ":[0-9]" name)
|
|
|
|
|
(ffap-file-exists-string (substring name 0 (match-beginning 0)))))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; If it contains a colon, get rid of it (and return if exists)
|
|
|
|
|
((and (string-match path-separator name)
|
|
|
|
|
(setq name (ffap-string-at-point 'nocolon))
|
2019-05-17 01:34:47 +00:00
|
|
|
|
(> (length name) 0)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(ffap-file-exists-string name)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; File does not exist, try the alist:
|
|
|
|
|
((let ((alist ffap-alist) tem try case-fold-search)
|
|
|
|
|
(while (and alist (not try))
|
|
|
|
|
(setq tem (car alist) alist (cdr alist))
|
|
|
|
|
(if (or (eq major-mode (car tem))
|
|
|
|
|
(and (stringp (car tem))
|
|
|
|
|
(string-match (car tem) name)))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(and (setq try
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(funcall (cdr tem) name)
|
|
|
|
|
(error nil)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(setq try (or
|
|
|
|
|
(ffap-url-p try) ; not a file!
|
|
|
|
|
(ffap-file-remote-p try)
|
|
|
|
|
(ffap-file-exists-string try))))))
|
|
|
|
|
try))
|
2007-04-07 02:58:53 +00:00
|
|
|
|
;; Try adding a leading "/" (common omission in ftp file names).
|
|
|
|
|
;; Note that this uses oname, which still has any colon part.
|
|
|
|
|
;; This should have a lower priority than the alist stuff,
|
|
|
|
|
;; else it matches things like "ffap.el:1234:56:Warning".
|
|
|
|
|
((and (not abs)
|
|
|
|
|
ffap-ftp-sans-slash-regexp
|
|
|
|
|
(string-match ffap-ftp-sans-slash-regexp oname)
|
|
|
|
|
(ffap-file-remote-p (concat "/" oname))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; Alist failed? Try to guess an active remote connection
|
|
|
|
|
;; from buffer variables, and try once more, both as an
|
2003-02-15 19:26:25 +00:00
|
|
|
|
;; absolute and relative file name on that remote host.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
((let* (ffap-rfs-regexp ; suppress
|
|
|
|
|
(remote-dir
|
|
|
|
|
(cond
|
|
|
|
|
((ffap-file-remote-p default-directory))
|
|
|
|
|
((and (eq major-mode 'internal-ange-ftp-mode)
|
|
|
|
|
(string-match "^\\*ftp \\(.*\\)@\\(.*\\)\\*$"
|
|
|
|
|
(buffer-name)))
|
|
|
|
|
(concat "/" (substring (buffer-name) 5 -1) ":"))
|
|
|
|
|
;; This is too often a bad idea:
|
|
|
|
|
;;((and (eq major-mode 'w3-mode)
|
|
|
|
|
;; (stringp url-current-server))
|
|
|
|
|
;; (host-to-ange-path url-current-server))
|
|
|
|
|
)))
|
|
|
|
|
(and remote-dir
|
|
|
|
|
(or
|
|
|
|
|
(and (string-match "\\`\\(/?~?ftp\\)/" name)
|
|
|
|
|
(ffap-file-exists-string
|
2003-02-15 19:26:25 +00:00
|
|
|
|
(ffap-replace-file-component
|
1995-11-12 23:58:04 +00:00
|
|
|
|
remote-dir (substring name (match-end 1)))))
|
|
|
|
|
(ffap-file-exists-string
|
2003-02-15 19:26:25 +00:00
|
|
|
|
(ffap-replace-file-component remote-dir name))))))
|
2004-12-13 05:16:25 +00:00
|
|
|
|
((and ffap-dired-wildcards
|
|
|
|
|
(string-match ffap-dired-wildcards name)
|
|
|
|
|
abs
|
|
|
|
|
(ffap-file-exists-string (file-name-directory
|
|
|
|
|
(directory-file-name name)))
|
|
|
|
|
name))
|
2004-02-21 13:42:04 +00:00
|
|
|
|
;; Try all parent directories by deleting the trailing directory
|
|
|
|
|
;; name until existing directory is found or name stops changing
|
|
|
|
|
((let ((dir name))
|
|
|
|
|
(while (and dir
|
|
|
|
|
(not (ffap-file-exists-string dir))
|
|
|
|
|
(not (equal dir (setq dir (file-name-directory
|
|
|
|
|
(directory-file-name dir)))))))
|
2014-06-12 02:29:50 +00:00
|
|
|
|
(and (not (string= dir "/"))
|
|
|
|
|
(ffap-file-exists-string dir))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
)
|
1998-03-14 04:44:25 +00:00
|
|
|
|
(set-match-data data))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;;; Prompting (`ffap-read-file-or-url'):
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; We want to complete filenames as in read-file-name, but also url's
|
|
|
|
|
;; which read-file-name-internal would truncate at the "//" string.
|
|
|
|
|
;; The solution here is to replace read-file-name-internal with
|
|
|
|
|
;; `ffap-read-file-or-url-internal', which checks the minibuffer
|
|
|
|
|
;; contents before attempting to complete filenames.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-read-file-or-url (prompt guess)
|
2010-01-11 15:22:23 +00:00
|
|
|
|
"Read file or URL from minibuffer, with PROMPT and initial GUESS."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(or guess (setq guess default-directory))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(let (dir)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;; Tricky: guess may have or be a local directory, like "w3/w3.elc"
|
|
|
|
|
;; or "w3/" or "../el/ffap.el" or "../../../"
|
2012-12-05 07:29:02 +00:00
|
|
|
|
(unless (ffap-url-p guess)
|
|
|
|
|
(unless (ffap-file-remote-p guess)
|
|
|
|
|
(setq guess
|
|
|
|
|
(abbreviate-file-name (expand-file-name guess))))
|
|
|
|
|
(setq dir (file-name-directory guess)))
|
2006-02-19 23:28:42 +00:00
|
|
|
|
(let ((minibuffer-completing-file-name t)
|
2008-01-06 14:06:37 +00:00
|
|
|
|
(completion-ignore-case read-file-name-completion-ignore-case)
|
2008-01-09 02:16:47 +00:00
|
|
|
|
(fnh-elem (cons ffap-url-regexp 'url-file-handler)))
|
|
|
|
|
;; Explain to `rfn-eshadow' that we can use URLs here.
|
|
|
|
|
(push fnh-elem file-name-handler-alist)
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(setq guess
|
2008-04-21 21:01:38 +00:00
|
|
|
|
(let ((default-directory (if dir (expand-file-name dir)
|
|
|
|
|
default-directory)))
|
|
|
|
|
(completing-read
|
|
|
|
|
prompt
|
|
|
|
|
'ffap-read-file-or-url-internal
|
|
|
|
|
nil
|
|
|
|
|
nil
|
|
|
|
|
(if dir (cons guess (length dir)) guess)
|
2015-05-08 14:43:21 +00:00
|
|
|
|
'file-name-history
|
2008-04-21 21:01:38 +00:00
|
|
|
|
(and buffer-file-name
|
|
|
|
|
(abbreviate-file-name buffer-file-name)))))
|
2008-01-09 02:16:47 +00:00
|
|
|
|
;; Remove the special handler manually. We used to just let-bind
|
|
|
|
|
;; file-name-handler-alist to preserve its value, but that caused
|
|
|
|
|
;; other modifications to be lost (e.g. when Tramp gets loaded
|
|
|
|
|
;; during the completing-read call).
|
|
|
|
|
(setq file-name-handler-alist (delq fnh-elem file-name-handler-alist))))
|
2012-12-05 07:29:02 +00:00
|
|
|
|
(or (ffap-url-p guess)
|
|
|
|
|
(substitute-in-file-name guess))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2008-04-21 21:01:38 +00:00
|
|
|
|
(defun ffap-read-url-internal (string pred action)
|
2010-01-11 15:22:23 +00:00
|
|
|
|
"Complete URLs from history, treating given string as valid."
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(let ((hist (ffap-symbol-value 'url-global-history-hash-table)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(cond
|
|
|
|
|
((not action)
|
2008-04-21 21:01:38 +00:00
|
|
|
|
(or (try-completion string hist pred) string))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
((eq action t)
|
2008-04-21 21:01:38 +00:00
|
|
|
|
(or (all-completions string hist pred) (list string)))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; action == lambda, documented where? Tests whether string is a
|
|
|
|
|
;; valid "match". Let us always say yes.
|
|
|
|
|
(t t))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2008-04-21 21:01:38 +00:00
|
|
|
|
(defun ffap-read-file-or-url-internal (string pred action)
|
2012-12-05 07:29:02 +00:00
|
|
|
|
(let ((url (ffap-url-p string)))
|
|
|
|
|
(if url
|
|
|
|
|
(ffap-read-url-internal url pred action)
|
|
|
|
|
(read-file-name-internal (or string default-directory) pred action))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; The rest of this page is just to work with package complete.el.
|
|
|
|
|
;; This code assumes that you load ffap.el after complete.el.
|
|
|
|
|
;;
|
|
|
|
|
;; We must inform complete about whether our completion function
|
2003-10-02 02:21:27 +00:00
|
|
|
|
;; will do filename style completion.
|
1996-03-24 14:20:05 +00:00
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;;; Highlighting (`ffap-highlight'):
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2000-05-25 16:56:34 +00:00
|
|
|
|
(defvar ffap-highlight t
|
1995-11-12 23:58:04 +00:00
|
|
|
|
"If non-nil, ffap highlights the current buffer substring.")
|
|
|
|
|
|
2006-02-17 21:54:17 +00:00
|
|
|
|
(defface ffap
|
|
|
|
|
'((t :inherit highlight))
|
|
|
|
|
"Face used to highlight the current buffer substring."
|
|
|
|
|
:group 'ffap
|
|
|
|
|
:version "22.1")
|
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(defvar ffap-highlight-overlay nil
|
Disambiguate function and variable references in docstrings.
* lisp/comint.el (comint-history-isearch-message): Fix ambiguous doc
string cross-reference(s).
* lisp/ffap.el (ffap-string-at-point-region, ffap-next)
(ffap-string-at-point, ffap-string-around)
(ffap-copy-string-as-kill, ffap-highlight-overlay)
(ffap-literally): Fix ambiguous doc string cross-reference(s).
* lisp/font-lock.el (font-lock-keywords-alist)
(font-lock-removed-keywords-alist): Fix ambiguous doc string
cross-reference(s).
* lisp/help-mode.el (help-xref-symbol-regexp): Add "call" as a hint for
a cross-reference to a function.
* lisp/info.el (Info-find-emacs-command-nodes): Fix ambiguous doc
string cross-reference(s).
* lisp/isearch.el (isearch-message-function, isearch-fail-pos): Fix
ambiguous doc string cross-reference(s).
* lisp/misearch.el (multi-isearch-next-buffer-function): Fix ambiguous
doc string cross-reference(s).
* lisp/newcomment.el (comment-box): Fix ambiguous doc string
cross-reference(s).
* lisp/printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
(pr-setting-database): Fix ambiguous doc string
cross-reference(s).
* lisp/ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
(ps-n-up-filling-database): Fix ambiguous doc string
cross-reference(s).
* lisp/server.el (server-buffer, server-log): Fix ambiguous doc string
cross-reference(s).
* lisp/simple.el (newline, delete-backward-char, delete-forward-char)
(minibuffer-history-isearch-message, kill-line, track-eol)
(temporary-goal-column): Fix ambiguous doc string
cross-reference(s).
* lisp/whitespace.el (whitespace-point)
(whitespace-font-lock-refontify, whitespace-bob-marker)
(whitespace-eob-marker): Fix ambiguous doc string
cross-reference(s).
* lisp/calc/calc.el (calc-highlight-selections-with-faces)
(calc-dispatch): Fix ambiguous doc string cross-reference(s).
* lisp/emacs-lisp/edebug.el (edebug-read, edebug-eval-defun): Fix
ambiguous doc string cross-reference(s).
* lisp/gnus/gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
cross-reference(s).
* lisp/gnus/gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
cross-reference(s).
* lisp/international/mule.el (add-to-coding-system-list): Fix ambiguous
doc string cross-reference(s).
* lisp/progmodes/cc-fonts.el (c-font-lock-keywords-3)
(c++-font-lock-keywords-3, objc-font-lock-keywords-3)
(java-font-lock-keywords-3, idl-font-lock-keywords-3)
(pike-font-lock-keywords-3): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/compile.el (compile): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/etags.el (tags-table-files)
(tags-table-files-function, tags-included-tables-function): Fix
ambiguous doc string cross-reference(s).
* lisp/progmodes/gdb-mi.el (gdb, gdb-setup-windows)
(gdb-restore-windows): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/flyspell.el (flyspell-mark-duplications-flag)
(flyspell-default-deplacement-commands): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/ispell.el (ispell-accept-output): Fix ambiguous doc
string cross-reference(s).
* lisp/textmodes/sgml-mode.el (html-tag-help): Fix ambiguous doc string
cross-reference(s).
* lisp/vc/compare-w.el (compare-ignore-whitespace)
(compare-ignore-case, compare-windows-dehighlight): Fix ambiguous
doc string cross-reference(s).
* lisp/vc/diff.el (diff): Fix ambiguous doc string cross-reference(s).
* src/insdel.c (Fcombine_after_change_execute, syms_of_insdel): Fix
ambiguous doc string cross-reference(s).
* src/keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
doc string cross-reference(s).
* src/window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
string cross-reference(s).
Fixes: debbugs:12686
2013-01-11 23:08:55 +00:00
|
|
|
|
"Overlay used by function `ffap-highlight'.")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
(defun ffap-highlight (&optional remove)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"If `ffap-highlight' is set, highlight the guess in this buffer.
|
|
|
|
|
That is, the last buffer substring found by `ffap-string-at-point'.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
Optional argument REMOVE means to remove any such highlighting.
|
1996-03-24 14:20:05 +00:00
|
|
|
|
Uses the face `ffap' if it is defined, or else `highlight'."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(cond
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(remove
|
|
|
|
|
(and ffap-highlight-overlay
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(delete-overlay ffap-highlight-overlay))
|
|
|
|
|
)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
((not ffap-highlight) nil)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(ffap-highlight-overlay
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(move-overlay
|
|
|
|
|
ffap-highlight-overlay
|
|
|
|
|
(car ffap-string-at-point-region)
|
|
|
|
|
(nth 1 ffap-string-at-point-region)
|
|
|
|
|
(current-buffer)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(t
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(setq ffap-highlight-overlay
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(apply 'make-overlay ffap-string-at-point-region))
|
2006-02-17 21:54:17 +00:00
|
|
|
|
(overlay-put ffap-highlight-overlay 'face 'ffap))))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
1997-06-28 21:27:18 +00:00
|
|
|
|
;;; Main Entrance (`find-file-at-point' == `ffap'):
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-guesser ()
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
"Return file or URL or nil, guessed from text around point."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(or (and ffap-url-regexp
|
|
|
|
|
(ffap-fixup-url (or (ffap-url-at-point)
|
|
|
|
|
(ffap-gopher-at-point))))
|
|
|
|
|
(ffap-file-at-point) ; may yield url!
|
|
|
|
|
(ffap-fixup-machine (ffap-machine-at-point))))
|
|
|
|
|
|
|
|
|
|
(defun ffap-prompter (&optional guess)
|
|
|
|
|
;; Does guess and prompt step for find-file-at-point.
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Extra complication for the temporary highlighting.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(unwind-protect
|
1997-06-28 21:27:18 +00:00
|
|
|
|
;; This catch will let ffap-alist entries do their own prompting
|
|
|
|
|
;; and then maybe skip over this prompt (ff-paths, for example).
|
|
|
|
|
(catch 'ffap-prompter
|
|
|
|
|
(ffap-read-file-or-url
|
|
|
|
|
(if ffap-url-regexp "Find file or URL: " "Find file: ")
|
|
|
|
|
(prog1
|
2008-06-05 19:14:34 +00:00
|
|
|
|
(let ((mark-active nil))
|
|
|
|
|
;; Don't use the region here, since it can be something
|
|
|
|
|
;; completely unwieldy. If the user wants that, she could
|
|
|
|
|
;; use M-w before and then C-y. --Stef
|
|
|
|
|
(setq guess (or guess (ffap-guesser)))) ; using ffap-alist here
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(and guess (ffap-highlight))
|
|
|
|
|
)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(ffap-highlight t)))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun find-file-at-point (&optional filename)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
"Find FILENAME, guessing a default from text around point.
|
|
|
|
|
If `ffap-url-regexp' is not nil, the FILENAME may also be an URL.
|
|
|
|
|
With a prefix, this command behaves exactly like `ffap-file-finder'.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
If `ffap-require-prefix' is set, the prefix meaning is reversed.
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
See also the variables `ffap-dired-wildcards', `ffap-newfile-prompt',
|
2017-07-03 19:27:09 +00:00
|
|
|
|
`ffap-url-unwrap-local', `ffap-url-unwrap-remote', and the functions
|
|
|
|
|
`ffap-file-at-point' and `ffap-url-at-point'."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(interactive)
|
2009-10-02 03:48:36 +00:00
|
|
|
|
(if (and (called-interactively-p 'interactive)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(if ffap-require-prefix (not current-prefix-arg)
|
|
|
|
|
current-prefix-arg))
|
|
|
|
|
;; Do exactly the ffap-file-finder command, even the prompting:
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(let (current-prefix-arg) ; we already interpreted it
|
|
|
|
|
(call-interactively ffap-file-finder))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(or filename (setq filename (ffap-prompter)))
|
2012-12-05 07:29:02 +00:00
|
|
|
|
(let ((url (ffap-url-p filename)))
|
|
|
|
|
(cond
|
|
|
|
|
(url
|
|
|
|
|
(let (current-prefix-arg)
|
|
|
|
|
(funcall ffap-url-fetcher url)))
|
|
|
|
|
((and ffap-pass-wildcards-to-dired
|
|
|
|
|
ffap-dired-wildcards
|
|
|
|
|
(string-match ffap-dired-wildcards filename))
|
|
|
|
|
(funcall ffap-directory-finder filename))
|
|
|
|
|
((and ffap-dired-wildcards
|
|
|
|
|
(string-match ffap-dired-wildcards filename)
|
|
|
|
|
find-file-wildcards
|
|
|
|
|
;; Check if it's find-file that supports wildcards arg
|
|
|
|
|
(memq ffap-file-finder '(find-file find-alternate-file)))
|
|
|
|
|
(funcall ffap-file-finder (expand-file-name filename) t))
|
|
|
|
|
((or (not ffap-newfile-prompt)
|
|
|
|
|
(file-exists-p filename)
|
|
|
|
|
(y-or-n-p "File does not exist, create buffer? "))
|
|
|
|
|
(funcall ffap-file-finder
|
|
|
|
|
;; expand-file-name fixes "~/~/.emacs" bug sent by CHUCKR.
|
|
|
|
|
(expand-file-name filename)))
|
|
|
|
|
;; User does not want to find a non-existent file:
|
2016-10-21 20:04:02 +00:00
|
|
|
|
((signal 'file-missing (list "Opening file buffer"
|
|
|
|
|
"No such file or directory"
|
|
|
|
|
filename)))))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; Shortcut: allow {M-x ffap} rather than {M-x find-file-at-point}.
|
2002-05-07 19:32:33 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defalias 'ffap 'find-file-at-point)
|
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;;; Menu support (`ffap-menu'):
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2012-05-04 05:14:14 +00:00
|
|
|
|
(defcustom ffap-menu-regexp nil
|
|
|
|
|
"If non-nil, regexp overriding `ffap-next-regexp' in `ffap-menu'.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
Make this more restrictive for faster menu building.
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
For example, try \":/\" for URL (and some FTP) references."
|
2012-05-04 05:14:14 +00:00
|
|
|
|
:type '(choice (const nil) regexp)
|
|
|
|
|
:group 'ffap)
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
(defvar ffap-menu-alist nil
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Buffer local cache of menu presented by `ffap-menu'.")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(make-variable-buffer-local 'ffap-menu-alist)
|
|
|
|
|
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(defvar ffap-menu-text-plist
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(cond
|
2000-05-25 16:56:34 +00:00
|
|
|
|
((display-mouse-p) '(face bold mouse-face highlight)) ; keymap <mousy-map>
|
|
|
|
|
(t nil))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Text properties applied to strings found by `ffap-menu-rescan'.
|
|
|
|
|
These properties may be used to fontify the menu references.")
|
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun ffap-menu (&optional rescan)
|
2010-01-11 15:22:23 +00:00
|
|
|
|
"Put up a menu of files and URLs mentioned in this buffer.
|
1996-03-24 14:20:05 +00:00
|
|
|
|
Then set mark, jump to choice, and try to fetch it. The menu is
|
|
|
|
|
cached in `ffap-menu-alist', and rebuilt by `ffap-menu-rescan'.
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
The optional RESCAN argument (a prefix, interactively) forces
|
1996-03-24 14:20:05 +00:00
|
|
|
|
a rebuild. Searches with `ffap-menu-regexp'."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(interactive "P")
|
|
|
|
|
;; (require 'imenu) -- no longer used, but roughly emulated
|
|
|
|
|
(if (or (not ffap-menu-alist) rescan
|
|
|
|
|
;; or if the first entry is wrong:
|
|
|
|
|
(and ffap-menu-alist
|
|
|
|
|
(let ((first (car ffap-menu-alist)))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (cdr first))
|
|
|
|
|
(not (equal (car first) (ffap-guesser)))))))
|
|
|
|
|
(ffap-menu-rescan))
|
|
|
|
|
;; Tail recursive:
|
|
|
|
|
(ffap-menu-ask
|
|
|
|
|
(if ffap-url-regexp "Find file or URL" "Find file")
|
|
|
|
|
(cons (cons "*Rescan Buffer*" -1) ffap-menu-alist)
|
|
|
|
|
'ffap-menu-cont))
|
|
|
|
|
|
|
|
|
|
(defun ffap-menu-cont (choice) ; continuation of ffap-menu
|
|
|
|
|
(if (< (cdr choice) 0)
|
|
|
|
|
(ffap-menu t) ; *Rescan*
|
|
|
|
|
(push-mark)
|
|
|
|
|
(goto-char (cdr choice))
|
|
|
|
|
;; Momentary highlight:
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(and ffap-highlight (ffap-guesser) (ffap-highlight))
|
|
|
|
|
(sit-for 0) ; display
|
|
|
|
|
(find-file-at-point (car choice)))
|
|
|
|
|
(ffap-highlight t))))
|
|
|
|
|
|
|
|
|
|
(defun ffap-menu-ask (title alist cont)
|
|
|
|
|
"Prompt from a menu of choices, and then apply some action.
|
lisp/*.el: Fix typos.
* lisp/align.el (align-regexp): Remove superfluous backslash.
* lisp/ffap.el (ffap-ftp-default-user, ffap-url-regexp)
(ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
(ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
Fix docstring typos.
(ffap-next): Use C-u in docstring.
(ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
(ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
Remove superfluous backslashes.
(ffap-string-at-point): Reflow docstring.
* lisp/server.el (server-host): Reflow docstring.
(server-unload-function): Fix docstring typo.
(server-eval-at): Remove superfluous backslash.
* lisp/skeleton.el (skeleton-insert): Remove superfluous backslash.
(skeleton-insert): Doc fix.
(skeleton-insert): Reflow docstring.
* lisp/term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
(tty-color-approximate, tty-color-by-index, tty-color-values)
(tty-color-desc): Remove superfluous backslashes.
2014-03-21 01:12:57 +00:00
|
|
|
|
Arguments are TITLE, ALIST, and CONT (a continuation function).
|
1995-11-12 23:58:04 +00:00
|
|
|
|
This uses either a menu or the minibuffer depending on invocation.
|
|
|
|
|
The TITLE string is used as either the prompt or menu title.
|
1998-09-30 19:06:27 +00:00
|
|
|
|
Each ALIST entry looks like (STRING . DATA) and defines one choice.
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
Function CONT is applied to the entry chosen by the user."
|
|
|
|
|
;; Note: this function is used with a different continuation
|
|
|
|
|
;; by the ffap-url add-on package.
|
|
|
|
|
;; Could try rewriting to use easymenu.el or lmenu.el.
|
|
|
|
|
(let (choice)
|
|
|
|
|
(cond
|
|
|
|
|
;; Emacs mouse:
|
|
|
|
|
((and (fboundp 'x-popup-menu) (ffap-mouse-event))
|
|
|
|
|
(setq choice
|
|
|
|
|
(x-popup-menu
|
|
|
|
|
t
|
|
|
|
|
(list "" (cons title
|
2008-04-21 21:01:38 +00:00
|
|
|
|
(mapcar (lambda (i) (cons (car i) i))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
alist))))))
|
|
|
|
|
;; minibuffer with completion buffer:
|
|
|
|
|
(t
|
|
|
|
|
(let ((minibuffer-setup-hook 'minibuffer-completion-help))
|
|
|
|
|
;; Bug: prompting may assume unique strings, no "".
|
|
|
|
|
(setq choice
|
|
|
|
|
(completing-read
|
|
|
|
|
(format "%s (default %s): " title (car (car alist)))
|
|
|
|
|
alist nil t
|
|
|
|
|
;; (cons (car (car alist)) 0)
|
|
|
|
|
nil)))
|
|
|
|
|
(sit-for 0) ; redraw original screen
|
|
|
|
|
;; Convert string to its entry, or else the default:
|
2008-04-21 21:01:38 +00:00
|
|
|
|
(setq choice (or (assoc choice alist) (car alist)))))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(if choice
|
|
|
|
|
(funcall cont choice)
|
|
|
|
|
(message "No choice made!") ; possible with menus
|
|
|
|
|
nil)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-menu-rescan ()
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Search buffer for `ffap-menu-regexp' to build `ffap-menu-alist'.
|
|
|
|
|
Applies `ffap-menu-text-plist' text properties at all matches."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let ((ffap-next-regexp (or ffap-menu-regexp ffap-next-regexp))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(range (- (point-max) (point-min)))
|
|
|
|
|
(mod (buffer-modified-p)) ; was buffer modified?
|
2005-11-19 12:18:37 +00:00
|
|
|
|
;; inhibit-read-only works on read-only text properties
|
|
|
|
|
;; as well as read-only buffers.
|
|
|
|
|
(inhibit-read-only t) ; to set text-properties
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
item
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Avoid repeated searches of the *mode-alist:
|
|
|
|
|
(major-mode (if (assq major-mode ffap-string-at-point-mode-alist)
|
|
|
|
|
major-mode
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
'file)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(setq ffap-menu-alist nil)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (setq item (ffap-next-guess))
|
|
|
|
|
(setq ffap-menu-alist (cons (cons item (point)) ffap-menu-alist))
|
|
|
|
|
(add-text-properties (car ffap-string-at-point-region) (point)
|
|
|
|
|
ffap-menu-text-plist)
|
|
|
|
|
(message "Scanning...%2d%% <%s>"
|
2015-07-31 17:12:37 +00:00
|
|
|
|
(floor (* 100.0 (- (point) (point-min))) range) item)))
|
2008-04-21 21:01:38 +00:00
|
|
|
|
(or mod (restore-buffer-modified-p nil))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(message "Scanning...done")
|
|
|
|
|
;; Remove duplicates.
|
|
|
|
|
(setq ffap-menu-alist ; sort by item
|
|
|
|
|
(sort ffap-menu-alist
|
|
|
|
|
(function
|
|
|
|
|
(lambda (a b) (string-lessp (car a) (car b))))))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(let ((ptr ffap-menu-alist)) ; remove duplicates
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(while (cdr ptr)
|
|
|
|
|
(if (equal (car (car ptr)) (car (car (cdr ptr))))
|
|
|
|
|
(setcdr ptr (cdr (cdr ptr)))
|
|
|
|
|
(setq ptr (cdr ptr)))))
|
|
|
|
|
(setq ffap-menu-alist ; sort by position
|
|
|
|
|
(sort ffap-menu-alist
|
|
|
|
|
(function
|
|
|
|
|
(lambda (a b) (< (cdr a) (cdr b)))))))
|
|
|
|
|
|
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;;; Mouse Support (`ffap-at-mouse'):
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; See the suggested binding in ffap-bindings (near eof).
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(defvar ffap-at-mouse-fallback nil ; ffap-menu? too time-consuming
|
|
|
|
|
"Command invoked by `ffap-at-mouse' if nothing found at click, or nil.
|
|
|
|
|
Ignored when `ffap-at-mouse' is called programmatically.")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(put 'ffap-at-mouse-fallback 'risky-local-variable t)
|
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;;;###autoload
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(defun ffap-at-mouse (e)
|
2010-01-11 15:22:23 +00:00
|
|
|
|
"Find file or URL guessed from text around mouse click.
|
1997-06-28 21:27:18 +00:00
|
|
|
|
Interactively, calls `ffap-at-mouse-fallback' if no guess is found.
|
|
|
|
|
Return value:
|
|
|
|
|
* if a guess string is found, return it (after finding it)
|
|
|
|
|
* if the fallback is called, return whatever it returns
|
|
|
|
|
* otherwise, nil"
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(interactive "e")
|
|
|
|
|
(let ((guess
|
|
|
|
|
;; Maybe less surprising without the save-excursion?
|
|
|
|
|
(save-excursion
|
|
|
|
|
(mouse-set-point e)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; Would prefer to do nothing unless click was *on* text. How
|
|
|
|
|
;; to tell that the click was beyond the end of current line?
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(ffap-guesser))))
|
|
|
|
|
(cond
|
|
|
|
|
(guess
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(set-buffer (ffap-event-buffer e))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(ffap-highlight)
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(sit-for 0) ; display
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(message "Finding `%s'" guess)
|
|
|
|
|
(find-file-at-point guess)
|
1997-06-28 21:27:18 +00:00
|
|
|
|
guess) ; success: return non-nil
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(ffap-highlight t)))
|
2009-10-02 03:48:36 +00:00
|
|
|
|
((called-interactively-p 'interactive)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(if ffap-at-mouse-fallback
|
|
|
|
|
(call-interactively ffap-at-mouse-fallback)
|
2010-01-11 15:22:23 +00:00
|
|
|
|
(message "No file or URL found at mouse click.")
|
1997-06-28 21:27:18 +00:00
|
|
|
|
nil)) ; no fallback, return nil
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; failure: return nil
|
|
|
|
|
)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
|
2004-12-13 05:16:25 +00:00
|
|
|
|
;;; ffap-other-*, ffap-read-only-*, ffap-alternate-* commands:
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
|
|
|
|
|
;; There could be a real `ffap-noselect' function, but we would need
|
|
|
|
|
;; at least two new user variables, and there is no w3-fetch-noselect.
|
|
|
|
|
;; So instead, we just fake it with a slow save-window-excursion.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-other-window ()
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
"Like `ffap', but put buffer in another window.
|
|
|
|
|
Only intended for interactive use."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(interactive)
|
2017-01-08 18:44:22 +00:00
|
|
|
|
(pcase (save-window-excursion (call-interactively 'ffap))
|
|
|
|
|
((or (and (pred bufferp) b) `(,(and (pred bufferp) b) . ,_))
|
|
|
|
|
(switch-to-buffer-other-window b))))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-other-frame ()
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
"Like `ffap', but put buffer in another frame.
|
|
|
|
|
Only intended for interactive use."
|
1995-11-12 23:58:04 +00:00
|
|
|
|
(interactive)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;; Extra code works around dedicated windows (noted by JENS, 7/96):
|
2004-12-13 05:16:25 +00:00
|
|
|
|
(let* ((win (selected-window))
|
|
|
|
|
(wdp (window-dedicated-p win))
|
|
|
|
|
value)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(set-window-dedicated-p win nil)
|
|
|
|
|
(switch-to-buffer-other-frame
|
|
|
|
|
(save-window-excursion
|
2004-12-13 05:16:25 +00:00
|
|
|
|
(setq value (call-interactively 'ffap))
|
|
|
|
|
(unless (or (bufferp value) (bufferp (car-safe value)))
|
|
|
|
|
(setq value (current-buffer)))
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
(current-buffer))))
|
2004-12-13 05:16:25 +00:00
|
|
|
|
(set-window-dedicated-p win wdp))
|
|
|
|
|
value))
|
|
|
|
|
|
2012-07-13 07:06:09 +00:00
|
|
|
|
(defun ffap--toggle-read-only (buffer-or-list)
|
|
|
|
|
(dolist (buffer (if (listp buffer-or-list)
|
|
|
|
|
buffer-or-list
|
|
|
|
|
(list buffer-or-list)))
|
|
|
|
|
(with-current-buffer buffer
|
2012-08-29 15:11:51 +00:00
|
|
|
|
(read-only-mode 1))))
|
2012-05-10 06:27:12 +00:00
|
|
|
|
|
2004-12-13 05:16:25 +00:00
|
|
|
|
(defun ffap-read-only ()
|
|
|
|
|
"Like `ffap', but mark buffer as read-only.
|
|
|
|
|
Only intended for interactive use."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((value (call-interactively 'ffap)))
|
|
|
|
|
(unless (or (bufferp value) (bufferp (car-safe value)))
|
|
|
|
|
(setq value (current-buffer)))
|
2012-07-13 07:06:09 +00:00
|
|
|
|
(ffap--toggle-read-only value)
|
2004-12-13 05:16:25 +00:00
|
|
|
|
value))
|
|
|
|
|
|
|
|
|
|
(defun ffap-read-only-other-window ()
|
|
|
|
|
"Like `ffap', but put buffer in another window and mark as read-only.
|
|
|
|
|
Only intended for interactive use."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((value (ffap-other-window)))
|
2012-07-13 07:06:09 +00:00
|
|
|
|
(ffap--toggle-read-only value)
|
2004-12-13 05:16:25 +00:00
|
|
|
|
value))
|
|
|
|
|
|
|
|
|
|
(defun ffap-read-only-other-frame ()
|
|
|
|
|
"Like `ffap', but put buffer in another frame and mark as read-only.
|
|
|
|
|
Only intended for interactive use."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((value (ffap-other-frame)))
|
2012-07-13 07:06:09 +00:00
|
|
|
|
(ffap--toggle-read-only value)
|
2004-12-13 05:16:25 +00:00
|
|
|
|
value))
|
|
|
|
|
|
|
|
|
|
(defun ffap-alternate-file ()
|
|
|
|
|
"Like `ffap' and `find-alternate-file'.
|
|
|
|
|
Only intended for interactive use."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((ffap-file-finder 'find-alternate-file))
|
|
|
|
|
(call-interactively 'ffap)))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2009-11-12 10:41:50 +00:00
|
|
|
|
(defun ffap-alternate-file-other-window ()
|
|
|
|
|
"Like `ffap' and `find-alternate-file-other-window'.
|
|
|
|
|
Only intended for interactive use."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((ffap-file-finder 'find-alternate-file-other-window))
|
|
|
|
|
(call-interactively 'ffap)))
|
|
|
|
|
|
|
|
|
|
(defun ffap-literally ()
|
Disambiguate function and variable references in docstrings.
* lisp/comint.el (comint-history-isearch-message): Fix ambiguous doc
string cross-reference(s).
* lisp/ffap.el (ffap-string-at-point-region, ffap-next)
(ffap-string-at-point, ffap-string-around)
(ffap-copy-string-as-kill, ffap-highlight-overlay)
(ffap-literally): Fix ambiguous doc string cross-reference(s).
* lisp/font-lock.el (font-lock-keywords-alist)
(font-lock-removed-keywords-alist): Fix ambiguous doc string
cross-reference(s).
* lisp/help-mode.el (help-xref-symbol-regexp): Add "call" as a hint for
a cross-reference to a function.
* lisp/info.el (Info-find-emacs-command-nodes): Fix ambiguous doc
string cross-reference(s).
* lisp/isearch.el (isearch-message-function, isearch-fail-pos): Fix
ambiguous doc string cross-reference(s).
* lisp/misearch.el (multi-isearch-next-buffer-function): Fix ambiguous
doc string cross-reference(s).
* lisp/newcomment.el (comment-box): Fix ambiguous doc string
cross-reference(s).
* lisp/printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
(pr-setting-database): Fix ambiguous doc string
cross-reference(s).
* lisp/ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
(ps-n-up-filling-database): Fix ambiguous doc string
cross-reference(s).
* lisp/server.el (server-buffer, server-log): Fix ambiguous doc string
cross-reference(s).
* lisp/simple.el (newline, delete-backward-char, delete-forward-char)
(minibuffer-history-isearch-message, kill-line, track-eol)
(temporary-goal-column): Fix ambiguous doc string
cross-reference(s).
* lisp/whitespace.el (whitespace-point)
(whitespace-font-lock-refontify, whitespace-bob-marker)
(whitespace-eob-marker): Fix ambiguous doc string
cross-reference(s).
* lisp/calc/calc.el (calc-highlight-selections-with-faces)
(calc-dispatch): Fix ambiguous doc string cross-reference(s).
* lisp/emacs-lisp/edebug.el (edebug-read, edebug-eval-defun): Fix
ambiguous doc string cross-reference(s).
* lisp/gnus/gnus-start.el (gnus-check-new-newsgroups): Fix ambiguous doc string
cross-reference(s).
* lisp/gnus/gnus-sum.el (gnus-summary-newsgroup-prefix): Fix ambiguous doc string
cross-reference(s).
* lisp/international/mule.el (add-to-coding-system-list): Fix ambiguous
doc string cross-reference(s).
* lisp/progmodes/cc-fonts.el (c-font-lock-keywords-3)
(c++-font-lock-keywords-3, objc-font-lock-keywords-3)
(java-font-lock-keywords-3, idl-font-lock-keywords-3)
(pike-font-lock-keywords-3): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/compile.el (compile): Fix ambiguous doc string
cross-reference(s).
* lisp/progmodes/etags.el (tags-table-files)
(tags-table-files-function, tags-included-tables-function): Fix
ambiguous doc string cross-reference(s).
* lisp/progmodes/gdb-mi.el (gdb, gdb-setup-windows)
(gdb-restore-windows): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/flyspell.el (flyspell-mark-duplications-flag)
(flyspell-default-deplacement-commands): Fix ambiguous doc string
cross-reference(s).
* lisp/textmodes/ispell.el (ispell-accept-output): Fix ambiguous doc
string cross-reference(s).
* lisp/textmodes/sgml-mode.el (html-tag-help): Fix ambiguous doc string
cross-reference(s).
* lisp/vc/compare-w.el (compare-ignore-whitespace)
(compare-ignore-case, compare-windows-dehighlight): Fix ambiguous
doc string cross-reference(s).
* lisp/vc/diff.el (diff): Fix ambiguous doc string cross-reference(s).
* src/insdel.c (Fcombine_after_change_execute, syms_of_insdel): Fix
ambiguous doc string cross-reference(s).
* src/keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
doc string cross-reference(s).
* src/window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
string cross-reference(s).
Fixes: debbugs:12686
2013-01-11 23:08:55 +00:00
|
|
|
|
"Like `ffap' and command `find-file-literally'.
|
2009-11-12 10:41:50 +00:00
|
|
|
|
Only intended for interactive use."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((ffap-file-finder 'find-file-literally))
|
|
|
|
|
(call-interactively 'ffap)))
|
|
|
|
|
|
|
|
|
|
(defalias 'find-file-literally-at-point 'ffap-literally)
|
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;;; Bug Reporter:
|
|
|
|
|
|
2007-11-27 04:07:26 +00:00
|
|
|
|
(define-obsolete-function-alias 'ffap-bug 'report-emacs-bug "23.1")
|
|
|
|
|
(define-obsolete-function-alias 'ffap-submit-bug 'report-emacs-bug "23.1")
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
|
|
|
|
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;;; Hooks for Gnus, VM, Rmail:
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; If you do not like these bindings, write versions with whatever
|
|
|
|
|
;; bindings you would prefer.
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-ro-mode-hook ()
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Bind `ffap-next' and `ffap-menu' to M-l and M-m, resp."
|
|
|
|
|
(local-set-key "\M-l" 'ffap-next)
|
2012-05-10 06:27:12 +00:00
|
|
|
|
(local-set-key "\M-m" 'ffap-menu))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-gnus-hook ()
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Bind `ffap-gnus-next' and `ffap-gnus-menu' to M-l and M-m, resp."
|
2013-02-04 12:02:25 +00:00
|
|
|
|
;; message-id's
|
|
|
|
|
(setq-local thing-at-point-default-mail-uri-scheme "news")
|
1996-03-24 14:20:05 +00:00
|
|
|
|
;; Note "l", "L", "m", "M" are taken:
|
|
|
|
|
(local-set-key "\M-l" 'ffap-gnus-next)
|
|
|
|
|
(local-set-key "\M-m" 'ffap-gnus-menu))
|
1995-11-12 23:58:04 +00:00
|
|
|
|
|
2005-08-09 02:53:19 +00:00
|
|
|
|
(defvar gnus-summary-buffer)
|
|
|
|
|
(defvar gnus-article-buffer)
|
|
|
|
|
|
2007-11-27 04:07:26 +00:00
|
|
|
|
;; This code is called from gnus.
|
|
|
|
|
(declare-function gnus-summary-select-article "gnus-sum"
|
|
|
|
|
(&optional all-headers force pseudo article))
|
|
|
|
|
|
|
|
|
|
(declare-function gnus-configure-windows "gnus-win"
|
|
|
|
|
(setting &optional force))
|
|
|
|
|
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(defun ffap-gnus-wrapper (form) ; used by both commands below
|
|
|
|
|
(and (eq (current-buffer) (get-buffer gnus-summary-buffer))
|
|
|
|
|
(gnus-summary-select-article)) ; get article of current line
|
|
|
|
|
;; Preserve selected buffer, but do not do save-window-excursion,
|
|
|
|
|
;; since we want to see any window created by the form. Temporarily
|
|
|
|
|
;; select the article buffer, so we can see any point movement.
|
Do not call to `selected-window' where it is assumed by default.
Affected functions are `window-minibuffer-p', `window-dedicated-p',
`window-hscroll', `window-width', `window-height', `window-buffer',
`window-frame', `window-start', `window-point', `next-window'
and `window-display-table'.
* abbrev.el (abbrev--default-expand):
* bs.el (bs--show-with-configuration):
* buff-menu.el (Buffer-menu-mouse-select):
* calc/calc.el (calc):
* calendar/calendar.el (calendar-generate-window):
* calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
(diary-make-entry):
* comint.el (send-invisible, comint-dynamic-complete-filename)
(comint-dynamic-simple-complete, comint-dynamic-list-completions):
* completion.el (complete):
* dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
* disp-table.el (describe-current-display-table):
* doc-view.el (doc-view-insert-image):
* ebuff-menu.el (Electric-buffer-menu-mouse-select):
* ehelp.el (with-electric-help):
* emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
* emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
* emacs-lisp/helper.el (Helper-help-scroller):
* emulation/cua-base.el (cua--post-command-handler-1):
* eshell/esh-mode.el (eshell-output-filter):
* ffap.el (ffap-gnus-wrapper):
* help-macro.el (make-help-screen):
* hilit-chg.el (highlight-compare-buffers):
* hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
* hl-line.el (global-hl-line-highlight):
* icomplete.el (icomplete-simple-completing-p):
* isearch.el (isearch-done):
* jit-lock.el (jit-lock-stealth-fontify):
* mail/rmailsum.el (rmail-summary-scroll-msg-up):
* lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
* mpc.el (mpc-tagbrowser, mpc):
* net/rcirc.el (rcirc-any-buffer):
* play/gomoku.el (gomoku-max-width, gomoku-max-height):
* play/landmark.el (landmark-max-width, landmark-max-height):
* play/zone.el (zone):
* progmodes/compile.el (compilation-goto-locus):
* progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
* progmodes/etags.el (find-tag-other-window):
* progmodes/fortran.el (fortran-column-ruler):
* progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
* progmodes/verilog-mode.el (verilog-point-text):
* reposition.el (reposition-window):
* rot13.el (toggle-rot13-mode):
* server.el (server-switch-buffer):
* shell.el (shell-dynamic-complete-command)
(shell-dynamic-complete-environment-variable):
* simple.el (insert-buffer, set-selective-display)
(delete-completion-window):
* speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
(speedbar-recenter):
* startup.el (fancy-splash-head):
* textmodes/ispell.el (ispell-command-loop):
* textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
* tutorial.el (help-with-tutorial):
* vc/add-log.el (add-change-log-entry):
* vc/compare-w.el (compare-windows):
* vc/ediff-help.el (ediff-indent-help-message):
* vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
* vc/ediff-wind.el (ediff-skip-unsuitable-frames)
(ediff-setup-control-frame):
* vc/emerge.el (emerge-position-region):
* vc/pcvs-util.el (cvs-bury-buffer):
* window.el (walk-windows, mouse-autoselect-window-select):
* winner.el (winner-set-conf, winner-undo): Related users changed.
2013-08-05 14:26:57 +00:00
|
|
|
|
(let ((sb (window-buffer)))
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(gnus-configure-windows 'article)
|
|
|
|
|
(pop-to-buffer gnus-article-buffer)
|
|
|
|
|
(widen)
|
|
|
|
|
;; Skip headers for ffap-gnus-next (which will wrap around)
|
|
|
|
|
(if (eq (point) (point-min)) (search-forward "\n\n" nil t))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(eval form)
|
|
|
|
|
(pop-to-buffer sb))))
|
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-gnus-next ()
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Run `ffap-next' in the gnus article buffer."
|
|
|
|
|
(interactive) (ffap-gnus-wrapper '(ffap-next nil t)))
|
|
|
|
|
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-gnus-menu ()
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Run `ffap-menu' in the gnus article buffer."
|
|
|
|
|
(interactive) (ffap-gnus-wrapper '(ffap-menu)))
|
|
|
|
|
|
|
|
|
|
|
1998-04-28 23:40:39 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun dired-at-point (&optional filename)
|
2010-02-12 19:28:29 +00:00
|
|
|
|
"Start Dired, defaulting to file at point. See `ffap'.
|
|
|
|
|
If `dired-at-point-require-prefix' is set, the prefix meaning is reversed."
|
1998-04-28 23:40:39 +00:00
|
|
|
|
(interactive)
|
2009-10-02 03:48:36 +00:00
|
|
|
|
(if (and (called-interactively-p 'interactive)
|
1998-04-28 23:40:39 +00:00
|
|
|
|
(if dired-at-point-require-prefix
|
|
|
|
|
(not current-prefix-arg)
|
|
|
|
|
current-prefix-arg))
|
|
|
|
|
(let (current-prefix-arg) ; already interpreted
|
2004-12-13 05:16:25 +00:00
|
|
|
|
(call-interactively ffap-directory-finder))
|
1998-04-28 23:40:39 +00:00
|
|
|
|
(or filename (setq filename (dired-at-point-prompter)))
|
2012-12-05 07:29:02 +00:00
|
|
|
|
(let ((url (ffap-url-p filename)))
|
|
|
|
|
(cond
|
|
|
|
|
(url
|
|
|
|
|
(funcall ffap-url-fetcher url))
|
|
|
|
|
((and ffap-dired-wildcards
|
|
|
|
|
(string-match ffap-dired-wildcards filename))
|
|
|
|
|
(funcall ffap-directory-finder filename))
|
|
|
|
|
((file-exists-p filename)
|
|
|
|
|
(if (file-directory-p filename)
|
|
|
|
|
(funcall ffap-directory-finder
|
|
|
|
|
(expand-file-name filename))
|
2004-12-13 05:16:25 +00:00
|
|
|
|
(funcall ffap-directory-finder
|
2012-12-05 07:29:02 +00:00
|
|
|
|
(concat (expand-file-name filename) "*"))))
|
|
|
|
|
((and (file-writable-p
|
|
|
|
|
(or (file-name-directory (directory-file-name filename))
|
|
|
|
|
filename))
|
|
|
|
|
(y-or-n-p "Directory does not exist, create it? "))
|
|
|
|
|
(make-directory filename)
|
|
|
|
|
(funcall ffap-directory-finder filename))
|
2016-10-21 20:04:02 +00:00
|
|
|
|
(t
|
|
|
|
|
(signal 'file-missing (list "Opening directory"
|
|
|
|
|
"No such file or directory"
|
|
|
|
|
filename)))))))
|
1998-04-28 23:40:39 +00:00
|
|
|
|
|
|
|
|
|
(defun dired-at-point-prompter (&optional guess)
|
|
|
|
|
;; Does guess and prompt step for find-file-at-point.
|
|
|
|
|
;; Extra complication for the temporary highlighting.
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(ffap-read-file-or-url
|
2007-07-02 05:52:28 +00:00
|
|
|
|
(cond
|
|
|
|
|
((eq ffap-directory-finder 'list-directory)
|
|
|
|
|
"List directory (brief): ")
|
|
|
|
|
(ffap-url-regexp "Dired file or URL: ")
|
|
|
|
|
(t "Dired file: "))
|
1998-04-28 23:40:39 +00:00
|
|
|
|
(prog1
|
2012-12-05 07:29:02 +00:00
|
|
|
|
(setq guess
|
|
|
|
|
(let ((guess (or guess (ffap-guesser))))
|
|
|
|
|
(cond
|
|
|
|
|
((null guess) nil)
|
|
|
|
|
((ffap-url-p guess))
|
|
|
|
|
((ffap-file-remote-p guess)
|
|
|
|
|
guess)
|
|
|
|
|
((progn
|
|
|
|
|
(setq guess (abbreviate-file-name
|
|
|
|
|
(expand-file-name guess)))
|
|
|
|
|
;; Interpret local directory as a directory.
|
|
|
|
|
(file-directory-p guess))
|
|
|
|
|
(file-name-as-directory guess))
|
|
|
|
|
;; Get directory component from local files.
|
|
|
|
|
((file-regular-p guess)
|
|
|
|
|
(file-name-directory guess))
|
|
|
|
|
(guess))))
|
2004-02-28 05:00:19 +00:00
|
|
|
|
(and guess (ffap-highlight))))
|
1998-04-28 23:40:39 +00:00
|
|
|
|
(ffap-highlight t)))
|
|
|
|
|
|
2004-12-13 05:16:25 +00:00
|
|
|
|
;;; ffap-dired-other-*, ffap-list-directory commands:
|
|
|
|
|
|
|
|
|
|
(defun ffap-dired-other-window ()
|
|
|
|
|
"Like `dired-at-point', but put buffer in another window.
|
|
|
|
|
Only intended for interactive use."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let (value)
|
|
|
|
|
(switch-to-buffer-other-window
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(setq value (call-interactively 'dired-at-point))
|
|
|
|
|
(current-buffer)))
|
|
|
|
|
value))
|
|
|
|
|
|
|
|
|
|
(defun ffap-dired-other-frame ()
|
|
|
|
|
"Like `dired-at-point', but put buffer in another frame.
|
|
|
|
|
Only intended for interactive use."
|
|
|
|
|
(interactive)
|
|
|
|
|
;; Extra code works around dedicated windows (noted by JENS, 7/96):
|
|
|
|
|
(let* ((win (selected-window))
|
|
|
|
|
(wdp (window-dedicated-p win))
|
|
|
|
|
value)
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(set-window-dedicated-p win nil)
|
|
|
|
|
(switch-to-buffer-other-frame
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(setq value (call-interactively 'dired-at-point))
|
|
|
|
|
(current-buffer))))
|
|
|
|
|
(set-window-dedicated-p win wdp))
|
|
|
|
|
value))
|
|
|
|
|
|
|
|
|
|
(defun ffap-list-directory ()
|
|
|
|
|
"Like `dired-at-point' and `list-directory'.
|
|
|
|
|
Only intended for interactive use."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((ffap-directory-finder 'list-directory))
|
|
|
|
|
(call-interactively 'dired-at-point)))
|
|
|
|
|
|
2009-11-25 17:11:29 +00:00
|
|
|
|
|
|
|
|
|
;;; Hooks to put in `file-name-at-point-functions':
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2012-05-10 06:27:12 +00:00
|
|
|
|
(defun ffap-guess-file-name-at-point ()
|
2009-11-25 17:11:29 +00:00
|
|
|
|
"Try to get a file name at point.
|
2009-12-09 02:11:29 +00:00
|
|
|
|
This hook is intended to be put in `file-name-at-point-functions'."
|
2016-04-08 08:05:20 +00:00
|
|
|
|
;; ffap-guesser can signal an error, and we don't want that when,
|
|
|
|
|
;; e.g., the user types M-n at the "C-x C-f" prompt.
|
|
|
|
|
(let ((guess (ignore-errors (ffap-guesser))))
|
2012-12-05 07:29:02 +00:00
|
|
|
|
(when (stringp guess)
|
|
|
|
|
(let ((url (ffap-url-p guess)))
|
|
|
|
|
(or url
|
|
|
|
|
(progn
|
|
|
|
|
(unless (ffap-file-remote-p guess)
|
|
|
|
|
(setq guess
|
|
|
|
|
(abbreviate-file-name (expand-file-name guess))))
|
|
|
|
|
(if (file-directory-p guess)
|
|
|
|
|
(file-name-as-directory guess)
|
|
|
|
|
guess)))))))
|
2004-12-13 05:16:25 +00:00
|
|
|
|
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
;;; Offer default global bindings (`ffap-bindings'):
|
1996-03-24 14:20:05 +00:00
|
|
|
|
|
|
|
|
|
(defvar ffap-bindings
|
2012-05-10 06:27:12 +00:00
|
|
|
|
'((global-set-key [S-mouse-3] 'ffap-at-mouse)
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(global-set-key [C-S-mouse-3] 'ffap-menu)
|
2004-12-13 05:16:25 +00:00
|
|
|
|
|
2019-05-05 13:13:19 +00:00
|
|
|
|
(global-set-key [remap find-file] 'find-file-at-point)
|
|
|
|
|
(global-set-key [remap find-file-read-only] 'ffap-read-only)
|
|
|
|
|
(global-set-key [remap find-alternate-file] 'ffap-alternate-file)
|
|
|
|
|
|
|
|
|
|
(global-set-key [remap find-file-other-window] 'ffap-other-window)
|
|
|
|
|
(global-set-key [remap find-file-other-frame] 'ffap-other-frame)
|
|
|
|
|
(global-set-key [remap find-file-read-only-other-window] 'ffap-read-only-other-window)
|
|
|
|
|
(global-set-key [remap find-file-read-only-other-frame] 'ffap-read-only-other-frame)
|
|
|
|
|
|
|
|
|
|
(global-set-key [remap dired] 'dired-at-point)
|
|
|
|
|
(global-set-key [remap dired-other-window] 'ffap-dired-other-window)
|
|
|
|
|
(global-set-key [remap dired-other-frame] 'ffap-dired-other-frame)
|
|
|
|
|
(global-set-key [remap list-directory] 'ffap-list-directory)
|
2004-12-13 05:16:25 +00:00
|
|
|
|
|
1997-06-28 21:27:18 +00:00
|
|
|
|
(add-hook 'gnus-summary-mode-hook 'ffap-gnus-hook)
|
|
|
|
|
(add-hook 'gnus-article-mode-hook 'ffap-gnus-hook)
|
|
|
|
|
(add-hook 'vm-mode-hook 'ffap-ro-mode-hook)
|
2012-05-10 06:27:12 +00:00
|
|
|
|
(add-hook 'rmail-mode-hook 'ffap-ro-mode-hook))
|
1997-06-28 21:27:18 +00:00
|
|
|
|
"List of binding forms evaluated by function `ffap-bindings'.
|
2001-01-06 18:55:45 +00:00
|
|
|
|
A reasonable ffap installation needs just this one line:
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(ffap-bindings)
|
(ffap-soft-value): Make this a function again; the macro
version does intern-soft too early. Deleted XEmacs-specific code.
(ffap-string-at-point-mode-alist): added "=" and
"&" to the url syntax, as suggested by SJE.
(ffap-read-file-or-url): fixed the HIST argument to
completing-read (only visible in XEmacs?), as reported by
Christoph Wedler <wedler@fmi.uni-passau.de>.
(ffap-kpathsea-expand-path) New func, replaces ffap-add-subdirs,
a first attempt at kpathsea emulation. Also convert "" to "." in
path lists, for XEmacs. Suggestions from SJE.
Added mouse-track support (but no binding), as
suggested by MDB. Moved Emacs mouse bindings from
"down-mouse" events to ordinary mouse events.
(ffap-alist): added ffap-fortran-mode, as requested by MDB.
Rewrote and merged XEmacs support, eliminating file
ffap-xe.el. Modified ffap-other-frame to work in dedicated
frames, fixing a bug reported by JENS.
(ffap-menu-rescan): avoid modifying the buffer.
Two bugs reported by Christoph Wedler <wedler@fmi.uni-passau.de>:
(ffap-fixup-url): avoid autoloading through url-normalize-url.
(ffap-read-file-or-url): for XEmacs, give extra HACK-HOMEDIR arg
to `abbreviate-file-name'.
(ffap-file-at-point): suppress errors from `ffap-alist'.
(ffap-url-at-point): modified regexp to accept
mail hostnames ending with a digit. Fixes bug report of SJE.
(ffap-url-at-point): use higher level function
(w3-view-this-url t) suggested by wmperry, instead of
w3-zone-at/w3-zone-data or widget-at/widget-get.
(ffap-url-at-point): modified to work with
w3-version "WWW 2.3.64 1996/06/02 06:20:23" alpha, which
uses the 'widget package rather than the old w3-zone-at.
Bug was reported by JENS.
Adopted comments and doc strings to Emacs coding
conventions. Reorganized. Retired v18 support.
(ffap-bindings): Offers a default installation.
(ffap-string-at-point): Modified arguments.
(ffap-gnus-hook): Updated for Gnus 5.
(ffap-tex-init): Delayed initialization of `ffap-tex-path'.
(ffap-dired): New entry in `ffap-alist'.
(ffap-menu-rescan): May fontify the choices in buffer.
(ffap-read-file-or-url): `PC-completion-as-file-name-predicate'
used if available, to work with complete.el.
1997-06-18 04:24:37 +00:00
|
|
|
|
Of course if you do not like these bindings, just roll your own!")
|
1996-03-24 14:20:05 +00:00
|
|
|
|
|
2000-12-27 14:08:34 +00:00
|
|
|
|
;;;###autoload
|
2009-12-09 02:11:29 +00:00
|
|
|
|
(defun ffap-bindings ()
|
1996-03-24 14:20:05 +00:00
|
|
|
|
"Evaluate the forms in variable `ffap-bindings'."
|
2000-12-27 14:08:34 +00:00
|
|
|
|
(interactive)
|
1996-03-24 14:20:05 +00:00
|
|
|
|
(eval (cons 'progn ffap-bindings)))
|
|
|
|
|
|
|
|
|
|
|
2009-07-06 00:49:25 +00:00
|
|
|
|
(provide 'ffap)
|
2003-09-01 15:45:59 +00:00
|
|
|
|
|
1995-11-12 23:58:04 +00:00
|
|
|
|
;;; ffap.el ends here
|