1992-07-24 20:55:13 +00:00
|
|
|
|
;;; finder.el --- topic & keyword-based code finder
|
|
|
|
|
|
2017-01-01 03:14:01 +00:00
|
|
|
|
;; Copyright (C) 1992, 1997-1999, 2001-2017 Free Software Foundation,
|
2015-01-01 22:26:41 +00:00
|
|
|
|
;; 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")
|
2014-06-29 02:33:50 +00:00
|
|
|
|
(help . "Emacs help systems")
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(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)
|
2014-03-05 13:09:17 +00:00
|
|
|
|
"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)
|
2014-03-05 13:09:17 +00:00
|
|
|
|
"Syntax table used while in `finder-mode'.")
|
2008-03-24 18:43:04 +00:00
|
|
|
|
|
2008-06-05 02:35:15 +00:00
|
|
|
|
(defvar finder-headmark nil
|
2014-02-28 13:19:06 +00:00
|
|
|
|
"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
|
2016-10-27 07:07:05 +00:00
|
|
|
|
;; ldefs-boot-* are not auto-generated during build, but has nothing useful.
|
|
|
|
|
(defvar finder-no-scan-regexp "\\(^\\.#\\|\\(loaddefs\\|ldefs-boot-.*\\|\
|
2014-03-14 17:54:12 +00:00
|
|
|
|
cus-load\\|finder-inf\\|esh-groups\\|subdirs\\|leim-list\\)\\.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
|
|
|
|
|
2014-03-14 19:24:04 +00:00
|
|
|
|
(defconst finder--builtins-descriptions
|
|
|
|
|
;; I have no idea whether these are supposed to be capitalized
|
|
|
|
|
;; and/or end in a full-stop. Existing file headers are inconsistent,
|
|
|
|
|
;; but mainly seem to not do so.
|
|
|
|
|
'((emacs . "the extensible text editor")
|
|
|
|
|
(nxml . "a new XML mode"))
|
|
|
|
|
"Alist of built-in package descriptions.
|
|
|
|
|
Entries have the form (PACKAGE-SYMBOL . DESCRIPTION).
|
|
|
|
|
When generating `package--builtins', this overrides what the description
|
|
|
|
|
would otherwise be.")
|
|
|
|
|
|
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)
|
2014-03-14 19:24:04 +00:00
|
|
|
|
;; This should really be ("nxml" . nxml-mode), because nxml-mode.el
|
|
|
|
|
;; is the main file for the package. Then we would not need an
|
|
|
|
|
;; entry in finder--builtins-descriptions. But I do not know if
|
|
|
|
|
;; it is safe to change this, in case it is already in use.
|
2010-08-29 22:15:09 +00:00
|
|
|
|
("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\\)\\)?$")
|
2014-03-14 18:00:08 +00:00
|
|
|
|
package-override files base-name ; processed
|
2010-08-29 22:15:09 +00:00
|
|
|
|
summary keywords package version entry desc)
|
|
|
|
|
(dolist (d (or dirs load-path))
|
|
|
|
|
(when (file-exists-p (directory-file-name d))
|
2015-06-05 20:10:18 +00:00
|
|
|
|
(message "Scanning %s for finder" d)
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(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)
|
2014-03-14 18:00:08 +00:00
|
|
|
|
(intern (match-string 1 f))))))
|
|
|
|
|
;; (memq base-name processed))
|
2014-03-14 17:54:12 +00:00
|
|
|
|
;; There are multiple files in the tree with the same basename.
|
|
|
|
|
;; So skipping files based on basename means you randomly (depending
|
|
|
|
|
;; on which order the files are traversed in) miss some packages.
|
|
|
|
|
;; http://debbugs.gnu.org/14010
|
|
|
|
|
;; You might think this could lead to two files providing the same package,
|
|
|
|
|
;; but it does not, because the duplicates are (at time of writing)
|
|
|
|
|
;; all due to files in cedet, which end up with package-override set.
|
|
|
|
|
;; FIXME this is obviously fragile.
|
2014-03-14 19:24:04 +00:00
|
|
|
|
;; Make the (eq base-name package) case below issue a warning if
|
|
|
|
|
;; package-override is nil?
|
2014-03-14 17:54:12 +00:00
|
|
|
|
;; (push base-name processed)
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(insert-file-contents (expand-file-name f d))
|
2014-03-14 19:24:04 +00:00
|
|
|
|
(setq keywords (mapcar 'intern (lm-keywords-list))
|
2010-08-29 22:15:09 +00:00
|
|
|
|
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)
|
2014-03-14 19:24:04 +00:00
|
|
|
|
summary (or (cdr
|
|
|
|
|
(assq package finder--builtins-descriptions))
|
|
|
|
|
(lm-synopsis))
|
2010-08-29 22:15:09 +00:00
|
|
|
|
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))
|
2014-03-14 19:24:04 +00:00
|
|
|
|
;; The idea here is that eg calc.el gets to define
|
|
|
|
|
;; the description of the calc package.
|
|
|
|
|
;; This does not work for eg nxml-mode.el.
|
2015-12-18 16:32:52 +00:00
|
|
|
|
((or (eq base-name package) version)
|
2010-08-29 22:15:09 +00:00
|
|
|
|
(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))
|
2014-03-14 20:41:01 +00:00
|
|
|
|
(let ((package-list-unversioned t))
|
|
|
|
|
(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)
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
|
'help-echo "Read this file's commentary"
|
2008-06-10 03:06:30 +00:00
|
|
|
|
: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 ()
|
2014-02-28 13:19:06 +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)
|
2014-02-28 13:19:06 +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
|
|
|
|
|
2014-02-28 13:59:36 +00:00
|
|
|
|
(defun finder-unload-function ()
|
|
|
|
|
"Unload the Finder library."
|
|
|
|
|
(with-demoted-errors (unload-feature 'finder-inf t))
|
|
|
|
|
;; continue standard unloading
|
|
|
|
|
nil)
|
|
|
|
|
|
2000-08-16 20:49:45 +00:00
|
|
|
|
|
1992-07-24 20:55:13 +00:00
|
|
|
|
(provide 'finder)
|
|
|
|
|
|
|
|
|
|
;;; finder.el ends here
|