1992-07-24 20:55:13 +00:00
|
|
|
|
;;; finder.el --- topic & keyword-based code finder
|
|
|
|
|
|
2008-06-05 02:35:15 +00:00
|
|
|
|
;; Copyright (C) 1992, 1997, 1998, 1999, 2001, 2002, 2003, 2004, 2005,
|
2010-01-13 08:35:10 +00:00
|
|
|
|
;; 2006, 2007, 2008, 2009, 2010 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:
|
|
|
|
|
|
|
|
|
|
(require 'lisp-mnt)
|
2002-09-11 21:28:51 +00:00
|
|
|
|
(require 'find-func) ;for find-library(-suffixes)
|
2002-03-22 23:27:35 +00:00
|
|
|
|
;; Use `load' rather than `require' so that it doesn't get loaded
|
|
|
|
|
;; during byte-compilation (at which point it might be missing).
|
2002-10-10 15:04:41 +00:00
|
|
|
|
(load "finder-inf" t 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
|
|
|
|
|
'(
|
1993-03-19 21:32:09 +00:00
|
|
|
|
(abbrev . "abbreviation handling, typing shortcuts, macros")
|
2000-11-12 00:42:36 +00:00
|
|
|
|
;; Too specific:
|
1993-11-23 20:14:17 +00:00
|
|
|
|
(bib . "code related to the `bib' bibliography processor")
|
1995-04-17 18:42:29 +00:00
|
|
|
|
(c . "support for the C language and related languages")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(calendar . "calendar and time management support")
|
1993-03-18 21:29:42 +00:00
|
|
|
|
(comm . "communications, networking, remote access to files")
|
1998-05-30 17:57:14 +00:00
|
|
|
|
(convenience . "convenience features for faster editing")
|
2004-03-22 07:45:47 +00:00
|
|
|
|
(data . "support for editing files of data")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(docs . "support for Emacs documentation")
|
|
|
|
|
(emulations . "emulations of other editors")
|
|
|
|
|
(extensions . "Emacs Lisp language extensions")
|
1993-11-23 20:14:17 +00:00
|
|
|
|
(faces . "support for multiple fonts")
|
2000-11-12 00:42:36 +00:00
|
|
|
|
(files . "support for editing and manipulating files")
|
1995-04-14 23:16:06 +00:00
|
|
|
|
(frames . "support for Emacs frames and window systems")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(games . "games, jokes and amusements")
|
|
|
|
|
(hardware . "support for interfacing with exotic hardware")
|
|
|
|
|
(help . "support for on-line help systems")
|
1995-04-14 23:16:06 +00:00
|
|
|
|
(hypermedia . "support for links between text or other media types")
|
1993-05-23 23:10:14 +00:00
|
|
|
|
(i18n . "internationalization and alternate 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")
|
|
|
|
|
(maint . "maintenance aids for the Emacs development group")
|
|
|
|
|
(mail . "modes for electronic-mail handling")
|
1993-11-23 20:14:17 +00:00
|
|
|
|
(matching . "various sorts of searching and matching")
|
|
|
|
|
(mouse . "mouse support")
|
1999-08-17 14:09:14 +00:00
|
|
|
|
(multimedia . "images and sound support")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(news . "support for netnews reading and posting")
|
1995-04-14 23:16:06 +00:00
|
|
|
|
(oop . "support for object-oriented programming")
|
|
|
|
|
(outlines . "support for hierarchical outlining")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(processes . "process, subshell, compilation, and job control support")
|
|
|
|
|
(terminals . "support for terminal types")
|
2004-03-22 07:45:47 +00:00
|
|
|
|
(tex . "supporting code for the TeX formatter")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(tools . "programming tools")
|
2004-03-22 07:45:47 +00:00
|
|
|
|
(unix . "front-ends/assistants for, or emulators of, UNIX-like features")
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(wp . "word processing")
|
|
|
|
|
))
|
|
|
|
|
|
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"))
|
2004-03-26 14:54:17 +00:00
|
|
|
|
map))
|
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.
|
|
|
|
|
|
|
|
|
|
(defvar finder-package-info nil
|
|
|
|
|
"Assoc list mapping file names to description & keyword lists.")
|
|
|
|
|
|
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
|
|
|
|
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(defun finder-compile-keywords (&rest dirs)
|
2002-12-29 17:59:00 +00:00
|
|
|
|
"Regenerate the keywords association list into `generated-finder-keywords-file'.
|
1999-01-29 18:27:10 +00:00
|
|
|
|
Optional arguments DIRS are a list of Emacs Lisp directories to compile from;
|
|
|
|
|
no arguments compiles from `load-path'."
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(save-excursion
|
2008-06-10 03:06:30 +00:00
|
|
|
|
(find-file generated-finder-keywords-file)
|
|
|
|
|
(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 "")
|
|
|
|
|
(insert "(setq finder-package-info '(\n")
|
2008-06-07 02:42:43 +00:00
|
|
|
|
(let (processed summary keywords)
|
2007-09-25 11:06:40 +00:00
|
|
|
|
(mapc
|
1996-02-20 14:48:08 +00:00
|
|
|
|
(lambda (d)
|
1998-04-24 21:24:44 +00:00
|
|
|
|
(when (file-exists-p (directory-file-name d))
|
|
|
|
|
(message "Directory %s" d)
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(mapc
|
1999-01-29 18:27:10 +00:00
|
|
|
|
(lambda (f)
|
2008-06-05 02:35:15 +00:00
|
|
|
|
;; FIXME should this not be using (expand-file-name f d)?
|
|
|
|
|
(unless (or (member f processed)
|
|
|
|
|
(string-match finder-no-scan-regexp f))
|
|
|
|
|
(setq processed (cons f processed))
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(insert-file-contents (expand-file-name f d))
|
|
|
|
|
(setq summary (lm-synopsis)
|
2008-06-07 02:42:43 +00:00
|
|
|
|
keywords (lm-keywords-list)))
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(insert
|
|
|
|
|
(format " (\"%s\"\n "
|
|
|
|
|
(if (string-match "\\.\\(gz\\|Z\\)$" f)
|
|
|
|
|
(file-name-sans-extension f)
|
|
|
|
|
f)))
|
|
|
|
|
(prin1 summary (current-buffer))
|
|
|
|
|
(insert "\n ")
|
2010-03-14 21:15:02 +00:00
|
|
|
|
(prin1 (mapcar 'intern keywords) (current-buffer))
|
2008-06-07 02:42:43 +00:00
|
|
|
|
(insert ")\n")))
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(directory-files d nil
|
|
|
|
|
;; Allow compressed files also. FIXME:
|
|
|
|
|
;; generalize this, especially for
|
|
|
|
|
;; MS-DOG-type filenames.
|
|
|
|
|
"^[^=].*\\.el\\(\\.\\(gz\\|Z\\)\\)?$"
|
|
|
|
|
))))
|
2008-06-10 03:06:30 +00:00
|
|
|
|
(or dirs load-path)))
|
|
|
|
|
(insert " ))\n")
|
|
|
|
|
(eval-buffer) ; so we get the new keyword list immediately
|
|
|
|
|
(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 ()
|
|
|
|
|
"Return an alist of unknown keywords and number of their occurences.
|
|
|
|
|
Unknown are keywords that are present in `finder-package-info'
|
|
|
|
|
but absent in `finder-known-keywords'."
|
|
|
|
|
(let ((unknown-keywords-hash (make-hash-table)))
|
|
|
|
|
;; Prepare a hash where key is a keyword
|
|
|
|
|
;; and value is the number of keyword occurences.
|
|
|
|
|
(mapc (lambda (package)
|
|
|
|
|
(mapc (lambda (keyword)
|
|
|
|
|
(unless (assq keyword finder-known-keywords)
|
|
|
|
|
(puthash keyword
|
|
|
|
|
(1+ (gethash keyword unknown-keywords-hash 0))
|
|
|
|
|
unknown-keywords-hash)))
|
|
|
|
|
(nth 2 package)))
|
|
|
|
|
finder-package-info)
|
|
|
|
|
;; Make an alist from the hash and sort by the keyword name.
|
|
|
|
|
(sort (let (unknown-keywords-list)
|
|
|
|
|
(maphash (lambda (key value)
|
|
|
|
|
(push (cons key value) unknown-keywords-list))
|
|
|
|
|
unknown-keywords-hash)
|
|
|
|
|
unknown-keywords-list)
|
|
|
|
|
(lambda (a b) (string< (car a) (car b))))))
|
|
|
|
|
|
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)
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(setq buffer-read-only nil
|
|
|
|
|
buffer-undo-list t)
|
1997-06-12 03:51:53 +00:00
|
|
|
|
(erase-buffer)
|
2000-11-12 00:42:36 +00:00
|
|
|
|
(mapc
|
1997-06-12 03:51:53 +00:00
|
|
|
|
(lambda (assoc)
|
|
|
|
|
(let ((keyword (car assoc)))
|
|
|
|
|
(insert (symbol-name keyword))
|
|
|
|
|
(finder-insert-at-column 14 (concat (cdr assoc) "\n"))
|
1998-04-28 18:06:36 +00:00
|
|
|
|
(finder-mouse-face-on-line)))
|
1997-06-12 03:51:53 +00:00
|
|
|
|
finder-known-keywords)
|
|
|
|
|
(goto-char (point-min))
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(setq finder-headmark (point)
|
|
|
|
|
buffer-read-only t)
|
1997-06-12 03:51:53 +00:00
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(balance-windows)
|
|
|
|
|
(finder-summary)))
|
1993-04-14 03:34:39 +00:00
|
|
|
|
|
|
|
|
|
(defun finder-list-matches (key)
|
1997-07-09 01:24:54 +00:00
|
|
|
|
(pop-to-buffer (set-buffer (get-buffer-create "*Finder Category*")))
|
1997-06-12 03:51:53 +00:00
|
|
|
|
(finder-mode)
|
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)
|
|
|
|
|
(let ((id (intern key)))
|
|
|
|
|
(insert
|
|
|
|
|
"The following packages match the keyword `" key "':\n\n")
|
1993-05-23 23:10:14 +00:00
|
|
|
|
(setq finder-headmark (point))
|
2000-11-12 00:42:36 +00:00
|
|
|
|
(mapc
|
1996-02-20 14:48:08 +00:00
|
|
|
|
(lambda (x)
|
2008-06-10 03:06:30 +00:00
|
|
|
|
(when (memq id (cadr (cdr x)))
|
|
|
|
|
(insert (car x))
|
|
|
|
|
(finder-insert-at-column 16 (concat (cadr x) "\n"))
|
|
|
|
|
(finder-mouse-face-on-line)))
|
1993-04-14 03:34:39 +00:00
|
|
|
|
finder-package-info)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(forward-line)
|
|
|
|
|
(setq buffer-read-only t)
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(shrink-window-if-larger-than-buffer)
|
|
|
|
|
(finder-summary)))
|
|
|
|
|
|
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
|
2008-03-24 18:43:04 +00:00
|
|
|
|
(setq font-lock-defaults '(finder-font-lock-keywords nil nil
|
|
|
|
|
(("+-*/.<>=!?$%_&~^:@" . "w")) nil))
|
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))
|
|
|
|
|
(dolist (buff '("*Finder*" "*Finder-package*" "*Finder Category*"))
|
|
|
|
|
(and (get-buffer buff) (kill-buffer buff))))
|
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)
|
|
|
|
|
|
2007-09-19 14:57:02 +00:00
|
|
|
|
;; arch-tag: ec85ff49-8cb8-41f5-a63f-9131d53ce2c5
|
1992-07-24 20:55:13 +00:00
|
|
|
|
;;; finder.el ends here
|