1992-07-24 20:55:13 +00:00
|
|
|
|
;;; finder.el --- topic & keyword-based code finder
|
|
|
|
|
|
2014-02-13 02:31:48 +00:00
|
|
|
|
;; Copyright (C) 1992, 1997-1999, 2001-2014 Free Software Foundation, Inc.
|
1992-07-24 20:55:13 +00:00
|
|
|
|
|
|
|
|
|
;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
|
|
|
|
|
;; Created: 16 Jun 1992
|
|
|
|
|
;; Version: 1.0
|
|
|
|
|
;; Keywords: help
|
|
|
|
|
|
|
|
|
|
;; 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
|
1992-07-24 20:55:13 +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.
|
1992-07-24 20:55:13 +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
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1992-07-24 20:55:13 +00:00
|
|
|
|
|
1993-04-14 03:34:39 +00:00
|
|
|
|
;;; Commentary:
|
1992-07-24 20:55:13 +00:00
|
|
|
|
|
|
|
|
|
;; This mode uses the Keywords library header to provide code-finding
|
|
|
|
|
;; services by keyword.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(require 'package)
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(require 'lisp-mnt)
|
2010-08-31 01:53:46 +00:00
|
|
|
|
(require 'find-func) ;for find-library(-suffixes)
|
|
|
|
|
(require 'finder-inf nil t)
|
1992-07-24 20:55:13 +00:00
|
|
|
|
|
1999-09-09 20:06:35 +00:00
|
|
|
|
;; These are supposed to correspond to top-level customization groups,
|
|
|
|
|
;; says rms.
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(defvar finder-known-keywords
|
2010-08-29 22:15:09 +00:00
|
|
|
|
'((abbrev . "abbreviation handling, typing shortcuts, and macros")
|
|
|
|
|
(bib . "bibliography processors")
|
|
|
|
|
(c . "C and related programming languages")
|
|
|
|
|
(calendar . "calendar and time management tools")
|
|
|
|
|
(comm . "communications, networking, and remote file access")
|
1998-05-30 17:57:14 +00:00
|
|
|
|
(convenience . "convenience features for faster editing")
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(data . "editing data (non-text) files")
|
|
|
|
|
(docs . "Emacs documentation facilities")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(emulations . "emulations of other editors")
|
|
|
|
|
(extensions . "Emacs Lisp language extensions")
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(faces . "fonts and colors for text")
|
|
|
|
|
(files . "file editing and manipulation")
|
|
|
|
|
(frames . "Emacs frames and window systems")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(games . "games, jokes and amusements")
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(hardware . "interfacing with system hardware")
|
|
|
|
|
(help . "on-line help systems")
|
|
|
|
|
(hypermedia . "links between text or other media types")
|
|
|
|
|
(i18n . "internationalization and character-set support")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(internal . "code for Emacs internals, build process, defaults")
|
|
|
|
|
(languages . "specialized modes for editing programming languages")
|
|
|
|
|
(lisp . "Lisp support, including Emacs Lisp")
|
|
|
|
|
(local . "code local to your site")
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(maint . "Emacs development tools and aids")
|
|
|
|
|
(mail . "email reading and posting")
|
|
|
|
|
(matching . "searching, matching, and sorting")
|
1993-11-23 20:14:17 +00:00
|
|
|
|
(mouse . "mouse support")
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(multimedia . "images and sound")
|
|
|
|
|
(news . "USENET news reading and posting")
|
|
|
|
|
(outlines . "hierarchical outlining and note taking")
|
|
|
|
|
(processes . "processes, subshells, and compilation")
|
|
|
|
|
(terminals . "text terminals (ttys)")
|
|
|
|
|
(tex . "the TeX document formatter")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(tools . "programming tools")
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(unix . "UNIX feature interfaces and emulators")
|
* lisp/finder.el (finder-known-keywords): Add keyword "vc"
for version control.
* add-log.el, cvs-status.el, diff.el, diff-mode.el, ediff.el,
* emerge.el, log-edit.el, log-view.el, pcvs.el, smerge-mode.el,
* vc-annotate.el, vc-bzr.el, vc-dir.el, vc-dispatcher.el, vc-git.el,
* vc-hg.el, vc-mtn.el, vc.el: Add keyword "vc".
2010-06-11 19:09:57 +00:00
|
|
|
|
(vc . "version control")
|
2014-02-13 02:31:48 +00:00
|
|
|
|
(wp . "word processing"))
|
|
|
|
|
"Association list of the standard \"Keywords:\" headers.
|
|
|
|
|
Each element has the form (KEYWORD . DESCRIPTION).")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
|
2004-03-26 14:54:17 +00:00
|
|
|
|
(defvar finder-mode-map
|
2009-11-26 03:27:10 +00:00
|
|
|
|
(let ((map (make-sparse-keymap))
|
|
|
|
|
(menu-map (make-sparse-keymap "Finder")))
|
2004-03-26 14:54:17 +00:00
|
|
|
|
(define-key map " " 'finder-select)
|
|
|
|
|
(define-key map "f" 'finder-select)
|
2005-10-24 22:13:08 +00:00
|
|
|
|
(define-key map [follow-link] 'mouse-face)
|
2004-03-26 14:54:17 +00:00
|
|
|
|
(define-key map [mouse-2] 'finder-mouse-select)
|
|
|
|
|
(define-key map "\C-m" 'finder-select)
|
|
|
|
|
(define-key map "?" 'finder-summary)
|
2006-04-10 15:28:25 +00:00
|
|
|
|
(define-key map "n" 'next-line)
|
|
|
|
|
(define-key map "p" 'previous-line)
|
2004-03-26 14:54:17 +00:00
|
|
|
|
(define-key map "q" 'finder-exit)
|
|
|
|
|
(define-key map "d" 'finder-list-keywords)
|
2009-11-26 03:27:10 +00:00
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar finder-mode]
|
|
|
|
|
(cons "Finder" menu-map))
|
|
|
|
|
(define-key menu-map [finder-exit]
|
|
|
|
|
'(menu-item "Quit" finder-exit
|
|
|
|
|
:help "Exit Finder mode"))
|
|
|
|
|
(define-key menu-map [finder-summary]
|
|
|
|
|
'(menu-item "Summary" finder-summary
|
|
|
|
|
:help "Summary item on current line in a finder buffer"))
|
|
|
|
|
(define-key menu-map [finder-list-keywords]
|
|
|
|
|
'(menu-item "List keywords" finder-list-keywords
|
|
|
|
|
:help "Display descriptions of the keywords in the Finder buffer"))
|
|
|
|
|
(define-key menu-map [finder-select]
|
|
|
|
|
'(menu-item "Select" finder-select
|
|
|
|
|
:help "Select item on current line in a finder buffer"))
|
2014-02-13 02:31:48 +00:00
|
|
|
|
map)
|
|
|
|
|
"Keymap used in `finder-mode'.")
|
1994-10-01 04:24:56 +00:00
|
|
|
|
|
2008-03-24 18:43:04 +00:00
|
|
|
|
(defvar finder-mode-syntax-table
|
|
|
|
|
(let ((st (make-syntax-table emacs-lisp-mode-syntax-table)))
|
|
|
|
|
(modify-syntax-entry ?\; ". " st)
|
|
|
|
|
st)
|
|
|
|
|
"Syntax table used while in `finder-mode'.")
|
|
|
|
|
|
|
|
|
|
(defvar finder-font-lock-keywords
|
2008-06-10 03:06:30 +00:00
|
|
|
|
'(("`\\([^'`]+\\)'" 1 font-lock-constant-face prepend))
|
2008-03-24 18:43:04 +00:00
|
|
|
|
"Font-lock keywords for Finder mode.")
|
|
|
|
|
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(defvar finder-headmark nil
|
|
|
|
|
"Internal finder-mode variable, local in finder buffer.")
|
1993-04-14 03:34:39 +00:00
|
|
|
|
|
1992-07-24 20:55:13 +00:00
|
|
|
|
;;; Code for regenerating the keyword list.
|
|
|
|
|
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(defvar finder-keywords-hash nil
|
|
|
|
|
"Hash table mapping keywords to lists of package names.
|
|
|
|
|
Keywords and package names both should be symbols.")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
|
2002-12-29 17:59:00 +00:00
|
|
|
|
(defvar generated-finder-keywords-file "finder-inf.el"
|
2008-06-05 02:35:15 +00:00
|
|
|
|
"The function `finder-compile-keywords' writes keywords into this file.")
|
|
|
|
|
|
|
|
|
|
;; Skip autogenerated files, because they will never contain anything
|
|
|
|
|
;; useful, and because in parallel builds of Emacs they may get
|
|
|
|
|
;; modified while we are trying to read them.
|
|
|
|
|
;; http://lists.gnu.org/archive/html/emacs-pretest-bug/2007-01/msg00469.html
|
2008-06-21 19:35:45 +00:00
|
|
|
|
;; ldefs-boot is not auto-generated, but has nothing useful.
|
|
|
|
|
(defvar finder-no-scan-regexp "\\(^\\.#\\|\\(loaddefs\\|ldefs-boot\\|\
|
|
|
|
|
cus-load\\|finder-inf\\|esh-groups\\|subdirs\\)\\.el$\\)"
|
2008-06-05 02:35:15 +00:00
|
|
|
|
"Regexp matching file names not to scan for keywords.")
|
|
|
|
|
|
|
|
|
|
(autoload 'autoload-rubric "autoload")
|
2002-12-29 17:59:00 +00:00
|
|
|
|
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(defvar finder--builtins-alist
|
|
|
|
|
'(("calc" . calc)
|
|
|
|
|
("ede" . ede)
|
|
|
|
|
("erc" . erc)
|
|
|
|
|
("eshell" . eshell)
|
|
|
|
|
("gnus" . gnus)
|
|
|
|
|
("international" . emacs)
|
|
|
|
|
("language" . emacs)
|
|
|
|
|
("mh-e" . mh-e)
|
|
|
|
|
("semantic" . semantic)
|
|
|
|
|
("analyze" . semantic)
|
|
|
|
|
("bovine" . semantic)
|
|
|
|
|
("decorate" . semantic)
|
|
|
|
|
("symref" . semantic)
|
|
|
|
|
("wisent" . semantic)
|
|
|
|
|
("nxml" . nxml)
|
|
|
|
|
("org" . org)
|
|
|
|
|
("srecode" . srecode)
|
|
|
|
|
("term" . emacs)
|
|
|
|
|
("url" . url))
|
|
|
|
|
"Alist of built-in package directories.
|
|
|
|
|
Each element should have the form (DIR . PACKAGE), where DIR is a
|
|
|
|
|
directory name and PACKAGE is the name of a package (a symbol).
|
|
|
|
|
When generating `package--builtins', Emacs assumes any file in
|
|
|
|
|
DIR is part of the package PACKAGE.")
|
|
|
|
|
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(defun finder-compile-keywords (&rest dirs)
|
2010-08-29 22:15:09 +00:00
|
|
|
|
"Regenerate list of built-in Emacs packages.
|
|
|
|
|
This recomputes `package--builtins' and `finder-keywords-hash',
|
|
|
|
|
and prints them into the file `generated-finder-keywords-file'.
|
|
|
|
|
|
|
|
|
|
Optional DIRS is a list of Emacs Lisp directories to compile
|
|
|
|
|
from; the default is `load-path'."
|
|
|
|
|
;; Allow compressed files also.
|
|
|
|
|
(setq package--builtins nil)
|
|
|
|
|
(setq finder-keywords-hash (make-hash-table :test 'eq))
|
|
|
|
|
(let ((el-file-regexp "^\\([^=].*\\)\\.el\\(\\.\\(gz\\|Z\\)\\)?$")
|
|
|
|
|
package-override files base-name processed
|
|
|
|
|
summary keywords package version entry desc)
|
|
|
|
|
(dolist (d (or dirs load-path))
|
|
|
|
|
(when (file-exists-p (directory-file-name d))
|
|
|
|
|
(message "Directory %s" d)
|
|
|
|
|
(setq package-override
|
|
|
|
|
(intern-soft
|
|
|
|
|
(cdr-safe
|
|
|
|
|
(assoc (file-name-nondirectory (directory-file-name d))
|
|
|
|
|
finder--builtins-alist))))
|
|
|
|
|
(setq files (directory-files d nil el-file-regexp))
|
|
|
|
|
(dolist (f files)
|
|
|
|
|
(unless (or (string-match finder-no-scan-regexp f)
|
|
|
|
|
(null (setq base-name
|
|
|
|
|
(and (string-match el-file-regexp f)
|
|
|
|
|
(intern (match-string 1 f)))))
|
|
|
|
|
(memq base-name processed))
|
|
|
|
|
(push base-name processed)
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(insert-file-contents (expand-file-name f d))
|
|
|
|
|
(setq summary (lm-synopsis)
|
|
|
|
|
keywords (mapcar 'intern (lm-keywords-list))
|
|
|
|
|
package (or package-override
|
2010-11-01 03:19:01 +00:00
|
|
|
|
(let ((str (lm-header "package")))
|
|
|
|
|
(if str (intern str)))
|
2010-08-29 22:15:09 +00:00
|
|
|
|
base-name)
|
|
|
|
|
version (lm-header "version")))
|
|
|
|
|
(when summary
|
|
|
|
|
(setq version (ignore-errors (version-to-list version)))
|
|
|
|
|
(setq entry (assq package package--builtins))
|
|
|
|
|
(cond ((null entry)
|
2013-06-12 00:49:33 +00:00
|
|
|
|
(push (cons package
|
|
|
|
|
(package-make-builtin version summary))
|
2010-08-29 22:15:09 +00:00
|
|
|
|
package--builtins))
|
|
|
|
|
((eq base-name package)
|
|
|
|
|
(setq desc (cdr entry))
|
|
|
|
|
(aset desc 0 version)
|
|
|
|
|
(aset desc 2 summary)))
|
|
|
|
|
(dolist (kw keywords)
|
|
|
|
|
(puthash kw
|
|
|
|
|
(cons package
|
|
|
|
|
(delq package
|
|
|
|
|
(gethash kw finder-keywords-hash)))
|
|
|
|
|
finder-keywords-hash))))))))
|
|
|
|
|
|
|
|
|
|
(setq package--builtins
|
|
|
|
|
(sort package--builtins
|
|
|
|
|
(lambda (a b) (string< (symbol-name (car a))
|
|
|
|
|
(symbol-name (car b))))))
|
|
|
|
|
|
2013-09-03 19:49:54 +00:00
|
|
|
|
(with-current-buffer
|
|
|
|
|
(find-file-noselect generated-finder-keywords-file)
|
2008-06-10 03:06:30 +00:00
|
|
|
|
(setq buffer-undo-list t)
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert (autoload-rubric generated-finder-keywords-file
|
2009-11-05 03:23:31 +00:00
|
|
|
|
"keyword-to-package mapping" t))
|
2008-06-10 03:06:30 +00:00
|
|
|
|
(search-backward "")
|
2013-06-15 15:36:11 +00:00
|
|
|
|
;; FIXME: Now that we have package--builtin-versions, package--builtins is
|
|
|
|
|
;; only needed to get the list of unversioned packages and to get the
|
|
|
|
|
;; summary description of each package.
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(insert "(setq package--builtins '(\n")
|
|
|
|
|
(dolist (package package--builtins)
|
2010-08-31 01:53:46 +00:00
|
|
|
|
(insert " ")
|
|
|
|
|
(prin1 package (current-buffer))
|
|
|
|
|
(insert "\n"))
|
|
|
|
|
(insert "))\n\n")
|
2010-08-29 22:15:09 +00:00
|
|
|
|
;; Insert hash table.
|
|
|
|
|
(insert "(setq finder-keywords-hash\n ")
|
|
|
|
|
(prin1 finder-keywords-hash (current-buffer))
|
|
|
|
|
(insert ")\n")
|
2008-06-10 03:06:30 +00:00
|
|
|
|
(basic-save-buffer)))
|
1992-07-24 20:55:13 +00:00
|
|
|
|
|
1996-02-25 22:59:08 +00:00
|
|
|
|
(defun finder-compile-keywords-make-dist ()
|
|
|
|
|
"Regenerate `finder-inf.el' for the Emacs distribution."
|
1997-05-12 00:49:50 +00:00
|
|
|
|
(apply 'finder-compile-keywords command-line-args-left)
|
|
|
|
|
(kill-emacs))
|
1996-02-25 22:59:08 +00:00
|
|
|
|
|
1992-07-24 20:55:13 +00:00
|
|
|
|
;;; Now the retrieval code
|
|
|
|
|
|
1996-02-20 14:48:08 +00:00
|
|
|
|
(defun finder-insert-at-column (column &rest strings)
|
1998-04-28 18:06:36 +00:00
|
|
|
|
"Insert, at column COLUMN, other args STRINGS."
|
2001-07-11 01:40:16 +00:00
|
|
|
|
(if (>= (current-column) column) (insert "\n"))
|
1998-04-28 18:06:36 +00:00
|
|
|
|
(move-to-column column t)
|
1996-02-20 14:48:08 +00:00
|
|
|
|
(apply 'insert strings))
|
|
|
|
|
|
2000-11-12 00:42:36 +00:00
|
|
|
|
(defvar finder-help-echo nil)
|
|
|
|
|
|
1998-04-28 18:06:36 +00:00
|
|
|
|
(defun finder-mouse-face-on-line ()
|
2000-11-12 00:42:36 +00:00
|
|
|
|
"Put `mouse-face' and `help-echo' properties on the previous line."
|
1998-04-28 18:06:36 +00:00
|
|
|
|
(save-excursion
|
2007-09-19 14:57:02 +00:00
|
|
|
|
(forward-line -1)
|
2008-06-10 03:06:30 +00:00
|
|
|
|
;; If finder-insert-at-column moved us to a new line, go back one more.
|
|
|
|
|
(if (looking-at "[ \t]") (forward-line -1))
|
2000-11-12 00:42:36 +00:00
|
|
|
|
(unless finder-help-echo
|
|
|
|
|
(setq finder-help-echo
|
|
|
|
|
(let* ((keys1 (where-is-internal 'finder-select
|
|
|
|
|
finder-mode-map))
|
|
|
|
|
(keys (nconc (where-is-internal
|
|
|
|
|
'finder-mouse-select finder-mode-map)
|
|
|
|
|
keys1)))
|
|
|
|
|
(concat (mapconcat 'key-description keys ", ")
|
|
|
|
|
": select item"))))
|
|
|
|
|
(add-text-properties
|
|
|
|
|
(line-beginning-position) (line-end-position)
|
|
|
|
|
'(mouse-face highlight
|
|
|
|
|
help-echo finder-help-echo))))
|
1998-04-28 18:06:36 +00:00
|
|
|
|
|
2010-03-14 21:28:52 +00:00
|
|
|
|
(defun finder-unknown-keywords ()
|
2010-09-25 12:04:35 +00:00
|
|
|
|
"Return an alist of unknown keywords and number of their occurrences.
|
2010-08-29 22:15:09 +00:00
|
|
|
|
Unknown keywords are those present in `finder-keywords-hash' but
|
|
|
|
|
not `finder-known-keywords'."
|
|
|
|
|
(let (alist)
|
|
|
|
|
(maphash (lambda (kw packages)
|
|
|
|
|
(unless (assq kw finder-known-keywords)
|
|
|
|
|
(push (cons kw (length packages)) alist)))
|
|
|
|
|
finder-keywords-hash)
|
|
|
|
|
(sort alist (lambda (a b) (string< (car a) (car b))))))
|
2010-03-14 21:28:52 +00:00
|
|
|
|
|
2000-04-09 20:24:49 +00:00
|
|
|
|
;;;###autoload
|
1993-04-14 03:34:39 +00:00
|
|
|
|
(defun finder-list-keywords ()
|
|
|
|
|
"Display descriptions of the keywords in the Finder buffer."
|
|
|
|
|
(interactive)
|
1997-06-12 03:51:53 +00:00
|
|
|
|
(if (get-buffer "*Finder*")
|
|
|
|
|
(pop-to-buffer "*Finder*")
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(pop-to-buffer (get-buffer-create "*Finder*"))
|
1997-06-12 03:51:53 +00:00
|
|
|
|
(finder-mode)
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(dolist (assoc finder-known-keywords)
|
|
|
|
|
(let ((keyword (car assoc)))
|
|
|
|
|
(insert (propertize (symbol-name keyword)
|
|
|
|
|
'font-lock-face 'font-lock-constant-face))
|
|
|
|
|
(finder-insert-at-column 14 (concat (cdr assoc) "\n"))
|
|
|
|
|
(finder-mouse-face-on-line)))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(setq finder-headmark (point)
|
|
|
|
|
buffer-read-only t)
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(balance-windows)
|
|
|
|
|
(finder-summary))))
|
1993-04-14 03:34:39 +00:00
|
|
|
|
|
|
|
|
|
(defun finder-list-matches (key)
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(let* ((id (intern key))
|
|
|
|
|
(packages (gethash id finder-keywords-hash)))
|
|
|
|
|
(unless packages
|
|
|
|
|
(error "No packages matching key `%s'" key))
|
2011-04-24 20:32:23 +00:00
|
|
|
|
(package-show-package-list packages)))
|
1993-04-14 03:34:39 +00:00
|
|
|
|
|
2008-06-10 03:06:30 +00:00
|
|
|
|
(define-button-type 'finder-xref 'action #'finder-goto-xref)
|
|
|
|
|
|
|
|
|
|
(defun finder-goto-xref (button)
|
|
|
|
|
"Jump to a lisp file for the BUTTON at point."
|
|
|
|
|
(let* ((file (button-get button 'xref))
|
|
|
|
|
(lib (locate-library file)))
|
|
|
|
|
(if lib (finder-commentary lib)
|
|
|
|
|
(message "Unable to locate `%s'" file))))
|
|
|
|
|
|
2000-04-09 20:24:49 +00:00
|
|
|
|
;;;###autoload
|
1993-04-14 03:34:39 +00:00
|
|
|
|
(defun finder-commentary (file)
|
1999-01-29 18:27:10 +00:00
|
|
|
|
"Display FILE's commentary section.
|
|
|
|
|
FILE should be in a form suitable for passing to `locate-library'."
|
2002-09-11 21:28:51 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list
|
|
|
|
|
(completing-read "Library name: "
|
2008-04-19 04:01:16 +00:00
|
|
|
|
(apply-partially 'locate-file-completion-table
|
|
|
|
|
(or find-function-source-path load-path)
|
|
|
|
|
(find-library-suffixes)))))
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(let ((str (lm-commentary (find-library-name file))))
|
|
|
|
|
(or str (error "Can't find any Commentary section"))
|
2002-11-18 04:56:45 +00:00
|
|
|
|
;; This used to use *Finder* but that would clobber the
|
|
|
|
|
;; directory of categories.
|
|
|
|
|
(pop-to-buffer "*Finder-package*")
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(setq buffer-read-only nil
|
|
|
|
|
buffer-undo-list t)
|
1993-04-14 03:34:39 +00:00
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert str)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(delete-blank-lines)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(delete-blank-lines)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "^;+ ?" nil t)
|
|
|
|
|
(replace-match "" nil nil))
|
|
|
|
|
(goto-char (point-min))
|
2008-06-10 03:06:30 +00:00
|
|
|
|
(while (re-search-forward "\\<\\([-[:alnum:]]+\\.el\\)\\>" nil t)
|
|
|
|
|
(if (locate-library (match-string 1))
|
|
|
|
|
(make-text-button (match-beginning 1) (match-end 1)
|
|
|
|
|
'xref (match-string-no-properties 1)
|
|
|
|
|
'help-echo "Read this file's commentary"
|
|
|
|
|
:type 'finder-xref)))
|
|
|
|
|
(goto-char (point-min))
|
1993-04-14 03:34:39 +00:00
|
|
|
|
(setq buffer-read-only t)
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(shrink-window-if-larger-than-buffer)
|
1999-12-01 23:41:44 +00:00
|
|
|
|
(finder-mode)
|
1996-02-20 14:48:08 +00:00
|
|
|
|
(finder-summary)))
|
1993-04-14 03:34:39 +00:00
|
|
|
|
|
|
|
|
|
(defun finder-current-item ()
|
2005-03-19 14:35:59 +00:00
|
|
|
|
(let ((key (save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(current-word))))
|
|
|
|
|
(if (or (and finder-headmark (< (point) finder-headmark))
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(zerop (length key)))
|
2005-03-19 14:35:59 +00:00
|
|
|
|
(error "No keyword or filename on this line")
|
|
|
|
|
key)))
|
1993-04-14 03:34:39 +00:00
|
|
|
|
|
|
|
|
|
(defun finder-select ()
|
1998-04-28 18:06:36 +00:00
|
|
|
|
"Select item on current line in a finder buffer."
|
1993-04-14 03:34:39 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let ((key (finder-current-item)))
|
1997-09-30 07:36:28 +00:00
|
|
|
|
(if (string-match "\\.el$" key)
|
|
|
|
|
(finder-commentary key)
|
|
|
|
|
(finder-list-matches key))))
|
|
|
|
|
|
|
|
|
|
(defun finder-mouse-select (event)
|
1998-04-28 18:06:36 +00:00
|
|
|
|
"Select item in a finder buffer with the mouse."
|
1997-09-30 07:36:28 +00:00
|
|
|
|
(interactive "e")
|
* x-dnd.el (x-dnd-maybe-call-test-function):
* window.el (split-window-vertically):
* whitespace.el (whitespace-help-on):
* vc-rcs.el (vc-rcs-consult-headers):
* userlock.el (ask-user-about-lock-help)
(ask-user-about-supersession-help):
* type-break.el (type-break-force-mode-line-update):
* time-stamp.el (time-stamp-conv-warn):
* terminal.el (te-set-output-log, te-more-break, te-filter)
(te-sentinel,terminal-emulator):
* term.el (make-term, term-exec, term-sentinel, term-read-input-ring)
(term-write-input-ring, term-check-source, term-start-output-log):
(term-display-buffer-line, term-dynamic-list-completions):
(term-ansi-make-term, serial-term):
* subr.el (selective-display):
* strokes.el (strokes-xpm-to-compressed-string, strokes-decode-buffer)
(strokes-encode-buffer, strokes-xpm-for-compressed-string):
* speedbar.el (speedbar-buffers-tail-notes, speedbar-buffers-item-info)
(speedbar-reconfigure-keymaps, speedbar-add-localized-speedbar-support)
(speedbar-remove-localized-speedbar-support)
(speedbar-set-mode-line-format, speedbar-create-tag-hierarchy)
(speedbar-update-special-contents, speedbar-buffer-buttons-engine)
(speedbar-buffers-line-directory):
* simple.el (shell-command-on-region, append-to-buffer)
(prepend-to-buffer):
* shadowfile.el (shadow-save-todo-file):
* scroll-bar.el (scroll-bar-set-window-start, scroll-bar-drag-1)
(scroll-bar-maybe-set-window-start):
* sb-image.el (speedbar-image-dump):
* saveplace.el (save-place-alist-to-file, save-places-to-alist)
(load-save-place-alist-from-file):
* ps-samp.el (ps-print-message-from-summary):
* ps-print.el (ps-flush-output, ps-insert-file, ps-get-boundingbox)
(ps-background-image, ps-begin-job, ps-do-despool):
* ps-bdf.el (bdf-find-file, bdf-read-font-info):
* printing.el (pr-interface, pr-ps-file-print, pr-find-buffer-visiting)
(pr-ps-message-from-summary, pr-lpr-message-from-summary):
(pr-call-process, pr-file-list, pr-interface-save):
* novice.el (disabled-command-function)
(enable-command, disable-command):
* mouse.el (mouse-buffer-menu-alist):
* mouse-copy.el (mouse-kill-preserving-secondary):
* macros.el (kbd-macro-query):
* ledit.el (ledit-go-to-lisp, ledit-go-to-liszt):
* informat.el (batch-info-validate):
* ido.el (ido-copy-current-word, ido-initiate-auto-merge):
* hippie-exp.el (try-expand-dabbrev-visible):
* help-mode.el (help-make-xrefs):
* help-fns.el (describe-variable):
* generic-x.el (bat-generic-mode-run-as-comint):
* finder.el (finder-mouse-select):
* find-dired.el (find-dired-sentinel):
* filesets.el (filesets-file-close):
* files.el (list-directory):
* faces.el (list-faces-display, describe-face):
* facemenu.el (list-colors-display):
* ezimage.el (ezimage-image-association-dump, ezimage-image-dump):
* epg.el (epg--process-filter, epg-cancel):
* epa.el (epa--marked-keys, epa--select-keys, epa-display-info)
(epa--read-signature-type):
* emerge.el (emerge-copy-as-kill-A, emerge-copy-as-kill-B)
(emerge-file-names):
* ehelp.el (electric-helpify):
* ediff.el (ediff-regions-wordwise, ediff-regions-linewise):
* ediff-vers.el (rcs-ediff-view-revision):
* ediff-util.el (ediff-setup):
* ediff-mult.el (ediff-append-custom-diff):
* ediff-diff.el (ediff-exec-process, ediff-process-sentinel)
(ediff-wordify):
* echistory.el (Electric-command-history-redo-expression):
* dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
* disp-table.el (describe-display-table):
* dired.el (dired-find-buffer-nocreate):
* dired-aux.el (dired-rename-subdir, dired-dwim-target-directory):
* dabbrev.el (dabbrev--same-major-mode-p):
* chistory.el (list-command-history):
* apropos.el (apropos-documentation):
* allout.el (allout-obtain-passphrase):
(allout-copy-exposed-to-buffer):
(allout-verify-passphrase): Use with-current-buffer.
2009-11-13 22:19:45 +00:00
|
|
|
|
(with-current-buffer (window-buffer (posn-window (event-start event)))
|
1998-04-28 18:06:36 +00:00
|
|
|
|
(goto-char (posn-point (event-start event)))
|
|
|
|
|
(finder-select)))
|
1993-04-14 03:34:39 +00:00
|
|
|
|
|
2000-04-09 20:24:49 +00:00
|
|
|
|
;;;###autoload
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(defun finder-by-keyword ()
|
|
|
|
|
"Find packages matching a given keyword."
|
|
|
|
|
(interactive)
|
1993-04-14 03:34:39 +00:00
|
|
|
|
(finder-list-keywords))
|
|
|
|
|
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(define-derived-mode finder-mode nil "Finder"
|
1993-04-14 03:34:39 +00:00
|
|
|
|
"Major mode for browsing package documentation.
|
1993-05-09 23:52:39 +00:00
|
|
|
|
\\<finder-mode-map>
|
1993-04-14 03:34:39 +00:00
|
|
|
|
\\[finder-select] more help for the item on the current line
|
1999-01-29 18:27:10 +00:00
|
|
|
|
\\[finder-exit] exit Finder mode and kill the Finder buffer."
|
2008-06-05 02:35:15 +00:00
|
|
|
|
:syntax-table finder-mode-syntax-table
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(setq buffer-read-only t
|
|
|
|
|
buffer-undo-list t)
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(set (make-local-variable 'finder-headmark) nil))
|
1993-04-14 03:34:39 +00:00
|
|
|
|
|
|
|
|
|
(defun finder-summary ()
|
|
|
|
|
"Summarize basic Finder commands."
|
|
|
|
|
(interactive)
|
1996-01-25 00:54:04 +00:00
|
|
|
|
(message "%s"
|
1993-05-09 23:52:39 +00:00
|
|
|
|
(substitute-command-keys
|
1998-04-28 18:06:36 +00:00
|
|
|
|
"\\<finder-mode-map>\\[finder-select] = select, \
|
|
|
|
|
\\[finder-mouse-select] = select, \\[finder-list-keywords] = to \
|
|
|
|
|
finder directory, \\[finder-exit] = quit, \\[finder-summary] = help")))
|
1993-04-10 06:20:55 +00:00
|
|
|
|
|
1993-04-14 03:34:39 +00:00
|
|
|
|
(defun finder-exit ()
|
2008-03-24 18:43:04 +00:00
|
|
|
|
"Exit Finder mode.
|
2008-06-05 02:35:15 +00:00
|
|
|
|
Delete the window and kill all Finder-related buffers."
|
1993-04-14 03:34:39 +00:00
|
|
|
|
(interactive)
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(ignore-errors (delete-window))
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(let ((buf "*Finder*"))
|
|
|
|
|
(and (get-buffer buf) (kill-buffer buf))))
|
1992-07-24 20:55:13 +00:00
|
|
|
|
|
2000-08-16 20:49:45 +00:00
|
|
|
|
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(provide 'finder)
|
|
|
|
|
|
|
|
|
|
;;; finder.el ends here
|