Mercurial > emacs
annotate lisp/finder.el @ 50309:af31ac60915e
2003-03-26 Steve Youngs <youngs@xemacs.org>:
(eshell-plain-locate-behavior): Make the default the return value of
`eshell-under-xemacs-p', ie, nil for GNU/Emacs and non-nil for
XEmacs.
author | John Wiegley <johnw@newartisans.com> |
---|---|
date | Tue, 25 Mar 2003 20:59:35 +0000 |
parents | d3a44c8bd8d2 |
children | 695cf19ef79e d7ddb3e565de |
rev | line source |
---|---|
867 | 1 ;;; finder.el --- topic & keyword-based code finder |
2 | |
38359
29beb6347e09
(finder-insert-at-column): Also move to the next line if exactly at COLUMN.
Miles Bader <miles@gnu.org>
parents:
33420
diff
changeset
|
3 ;; Copyright (C) 1992, 1997, 1998, 1999, 2001 Free Software Foundation, Inc. |
867 | 4 |
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> | |
6 ;; Created: 16 Jun 1992 | |
7 ;; Version: 1.0 | |
8 ;; Keywords: help | |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
12244 | 14 ;; the Free Software Foundation; either version 2, or (at your option) |
867 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
867 | 26 |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
27 ;;; Commentary: |
867 | 28 |
29 ;; This mode uses the Keywords library header to provide code-finding | |
30 ;; services by keyword. | |
31 ;; | |
32 ;; Things to do: | |
33 ;; 1. Support multiple keywords per search. This could be extremely hairy; | |
34 ;; there doesn't seem to be any way to get completing-read to exit on | |
35 ;; an EOL with no substring pending, which is what we'd want to end the loop. | |
36 ;; 2. Search by string in synopsis line? | |
37 ;; 3. Function to check finder-package-info for unknown keywords. | |
38 | |
39 ;;; Code: | |
40 | |
41 (require 'lisp-mnt) | |
47419
0e00286fe517
(finder-find-library): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44105
diff
changeset
|
42 (require 'find-func) ;for find-library(-suffixes) |
44105
70f755b6a5c9
Don't load finder-inf.el during byte-compilation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
43 ;; Use `load' rather than `require' so that it doesn't get loaded |
70f755b6a5c9
Don't load finder-inf.el during byte-compilation.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38436
diff
changeset
|
44 ;; during byte-compilation (at which point it might be missing). |
47825
3c21e01f4d87
("finder-inf"): Don't fail if the file is absent.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47419
diff
changeset
|
45 (load "finder-inf" t t) |
867 | 46 |
2996
358fe58ae153
(finder-known-keywords): Use i18n, not i14n.
Richard M. Stallman <rms@gnu.org>
parents:
2716
diff
changeset
|
47 ;; Local variable in finder buffer. |
358fe58ae153
(finder-known-keywords): Use i18n, not i14n.
Richard M. Stallman <rms@gnu.org>
parents:
2716
diff
changeset
|
48 (defvar finder-headmark) |
358fe58ae153
(finder-known-keywords): Use i18n, not i14n.
Richard M. Stallman <rms@gnu.org>
parents:
2716
diff
changeset
|
49 |
25622 | 50 ;; These are supposed to correspond to top-level customization groups, |
51 ;; says rms. | |
867 | 52 (defvar finder-known-keywords |
53 '( | |
2270 | 54 (abbrev . "abbreviation handling, typing shortcuts, macros") |
33420
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
55 ;; Too specific: |
5141
3efae588d663
(finder-known-keywords): Add data, faces, mouse, matching.
Richard M. Stallman <rms@gnu.org>
parents:
3708
diff
changeset
|
56 (bib . "code related to the `bib' bibliography processor") |
11470
2958364d4d99
(finder-known-keywords): Generalize `c' keyword.
Richard M. Stallman <rms@gnu.org>
parents:
11454
diff
changeset
|
57 (c . "support for the C language and related languages") |
867 | 58 (calendar . "calendar and time management support") |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2228
diff
changeset
|
59 (comm . "communications, networking, remote access to files") |
22295
b2ceb0b98995
(finder-known-keywords): Fix `convenience' entry.
Dave Love <fx@gnu.org>
parents:
22129
diff
changeset
|
60 (convenience . "convenience features for faster editing") |
5141
3efae588d663
(finder-known-keywords): Add data, faces, mouse, matching.
Richard M. Stallman <rms@gnu.org>
parents:
3708
diff
changeset
|
61 (data . "support editing files of data") |
867 | 62 (docs . "support for Emacs documentation") |
63 (emulations . "emulations of other editors") | |
64 (extensions . "Emacs Lisp language extensions") | |
5141
3efae588d663
(finder-known-keywords): Add data, faces, mouse, matching.
Richard M. Stallman <rms@gnu.org>
parents:
3708
diff
changeset
|
65 (faces . "support for multiple fonts") |
33420
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
66 (files . "support for editing and manipulating files") |
11454
d9ec5322d181
(finder-known-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
9200
diff
changeset
|
67 (frames . "support for Emacs frames and window systems") |
867 | 68 (games . "games, jokes and amusements") |
69 (hardware . "support for interfacing with exotic hardware") | |
70 (help . "support for on-line help systems") | |
11454
d9ec5322d181
(finder-known-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
9200
diff
changeset
|
71 (hypermedia . "support for links between text or other media types") |
2996
358fe58ae153
(finder-known-keywords): Use i18n, not i14n.
Richard M. Stallman <rms@gnu.org>
parents:
2716
diff
changeset
|
72 (i18n . "internationalization and alternate character-set support") |
867 | 73 (internal . "code for Emacs internals, build process, defaults") |
74 (languages . "specialized modes for editing programming languages") | |
75 (lisp . "Lisp support, including Emacs Lisp") | |
76 (local . "code local to your site") | |
77 (maint . "maintenance aids for the Emacs development group") | |
78 (mail . "modes for electronic-mail handling") | |
5141
3efae588d663
(finder-known-keywords): Add data, faces, mouse, matching.
Richard M. Stallman <rms@gnu.org>
parents:
3708
diff
changeset
|
79 (matching . "various sorts of searching and matching") |
3efae588d663
(finder-known-keywords): Add data, faces, mouse, matching.
Richard M. Stallman <rms@gnu.org>
parents:
3708
diff
changeset
|
80 (mouse . "mouse support") |
25308
8a92c65da346
(finder-known-keywords): Add `multimedia'.
Dave Love <fx@gnu.org>
parents:
24221
diff
changeset
|
81 (multimedia . "images and sound support") |
867 | 82 (news . "support for netnews reading and posting") |
11454
d9ec5322d181
(finder-known-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
9200
diff
changeset
|
83 (oop . "support for object-oriented programming") |
d9ec5322d181
(finder-known-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
9200
diff
changeset
|
84 (outlines . "support for hierarchical outlining") |
867 | 85 (processes . "process, subshell, compilation, and job control support") |
86 (terminals . "support for terminal types") | |
87 (tex . "code related to the TeX formatter") | |
88 (tools . "programming tools") | |
89 (unix . "front-ends/assistants for, or emulators of, UNIX features") | |
33420
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
90 ;; Not a custom group and not currently useful. |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
91 ;; (vms . "support code for vms") |
867 | 92 (wp . "word processing") |
93 )) | |
94 | |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
95 (defvar finder-mode-map nil) |
9200
e48652e64736
(finder-mode-map): Change key bindings:
Richard M. Stallman <rms@gnu.org>
parents:
7943
diff
changeset
|
96 (or finder-mode-map |
e48652e64736
(finder-mode-map): Change key bindings:
Richard M. Stallman <rms@gnu.org>
parents:
7943
diff
changeset
|
97 (let ((map (make-sparse-keymap))) |
e48652e64736
(finder-mode-map): Change key bindings:
Richard M. Stallman <rms@gnu.org>
parents:
7943
diff
changeset
|
98 (define-key map " " 'finder-select) |
e48652e64736
(finder-mode-map): Change key bindings:
Richard M. Stallman <rms@gnu.org>
parents:
7943
diff
changeset
|
99 (define-key map "f" 'finder-select) |
20009
09bc233eb018
(finder-mode-map): Bind [mouse-2].
Karl Heuer <kwzh@gnu.org>
parents:
19169
diff
changeset
|
100 (define-key map [mouse-2] 'finder-mouse-select) |
9200
e48652e64736
(finder-mode-map): Change key bindings:
Richard M. Stallman <rms@gnu.org>
parents:
7943
diff
changeset
|
101 (define-key map "\C-m" 'finder-select) |
e48652e64736
(finder-mode-map): Change key bindings:
Richard M. Stallman <rms@gnu.org>
parents:
7943
diff
changeset
|
102 (define-key map "?" 'finder-summary) |
e48652e64736
(finder-mode-map): Change key bindings:
Richard M. Stallman <rms@gnu.org>
parents:
7943
diff
changeset
|
103 (define-key map "q" 'finder-exit) |
e48652e64736
(finder-mode-map): Change key bindings:
Richard M. Stallman <rms@gnu.org>
parents:
7943
diff
changeset
|
104 (define-key map "d" 'finder-list-keywords) |
e48652e64736
(finder-mode-map): Change key bindings:
Richard M. Stallman <rms@gnu.org>
parents:
7943
diff
changeset
|
105 (setq finder-mode-map map))) |
e48652e64736
(finder-mode-map): Change key bindings:
Richard M. Stallman <rms@gnu.org>
parents:
7943
diff
changeset
|
106 |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
107 |
867 | 108 ;;; Code for regenerating the keyword list. |
109 | |
110 (defvar finder-package-info nil | |
111 "Assoc list mapping file names to description & keyword lists.") | |
112 | |
48991
d3a44c8bd8d2
* finder.el (generated-finder-keywords-file): New variable.
Andreas Schwab <schwab@suse.de>
parents:
48688
diff
changeset
|
113 (defvar generated-finder-keywords-file "finder-inf.el" |
d3a44c8bd8d2
* finder.el (generated-finder-keywords-file): New variable.
Andreas Schwab <schwab@suse.de>
parents:
48688
diff
changeset
|
114 "File \\[finder-compile-keywords] puts finder keywords into.") |
d3a44c8bd8d2
* finder.el (generated-finder-keywords-file): New variable.
Andreas Schwab <schwab@suse.de>
parents:
48688
diff
changeset
|
115 |
867 | 116 (defun finder-compile-keywords (&rest dirs) |
48991
d3a44c8bd8d2
* finder.el (generated-finder-keywords-file): New variable.
Andreas Schwab <schwab@suse.de>
parents:
48688
diff
changeset
|
117 "Regenerate the keywords association list into `generated-finder-keywords-file'. |
24221
efc15742dcc3
(finder-commentary): Fix interactive spec. Try
Dave Love <fx@gnu.org>
parents:
22295
diff
changeset
|
118 Optional arguments DIRS are a list of Emacs Lisp directories to compile from; |
efc15742dcc3
(finder-commentary): Fix interactive spec. Try
Dave Love <fx@gnu.org>
parents:
22295
diff
changeset
|
119 no arguments compiles from `load-path'." |
867 | 120 (save-excursion |
2228
d40154ca6354
(finder-compile-keywords) Treat nil in a path argument as $PWD.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1475
diff
changeset
|
121 (let ((processed nil)) |
48991
d3a44c8bd8d2
* finder.el (generated-finder-keywords-file): New variable.
Andreas Schwab <schwab@suse.de>
parents:
48688
diff
changeset
|
122 (find-file generated-finder-keywords-file) |
2228
d40154ca6354
(finder-compile-keywords) Treat nil in a path argument as $PWD.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1475
diff
changeset
|
123 (erase-buffer) |
48991
d3a44c8bd8d2
* finder.el (generated-finder-keywords-file): New variable.
Andreas Schwab <schwab@suse.de>
parents:
48688
diff
changeset
|
124 (insert ";;; " (file-name-nondirectory generated-finder-keywords-file) |
d3a44c8bd8d2
* finder.el (generated-finder-keywords-file): New variable.
Andreas Schwab <schwab@suse.de>
parents:
48688
diff
changeset
|
125 " --- keyword-to-package mapping\n") |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38359
diff
changeset
|
126 (insert ";; This file is part of GNU Emacs.\n") |
2457
3d2f74e16e54
Added or corrected documentation headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2271
diff
changeset
|
127 (insert ";;; Commentary:\n") |
3d2f74e16e54
Added or corrected documentation headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2271
diff
changeset
|
128 (insert ";; Don't edit this file. It's generated by finder.el\n\n") |
3d2f74e16e54
Added or corrected documentation headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2271
diff
changeset
|
129 (insert ";;; Code:\n") |
2228
d40154ca6354
(finder-compile-keywords) Treat nil in a path argument as $PWD.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1475
diff
changeset
|
130 (insert "\n(setq finder-package-info '(\n") |
d40154ca6354
(finder-compile-keywords) Treat nil in a path argument as $PWD.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1475
diff
changeset
|
131 (mapcar |
14599 | 132 (lambda (d) |
21758
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
133 (when (file-exists-p (directory-file-name d)) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
134 (message "Directory %s" d) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
135 (mapcar |
24221
efc15742dcc3
(finder-commentary): Fix interactive spec. Try
Dave Love <fx@gnu.org>
parents:
22295
diff
changeset
|
136 (lambda (f) |
21758
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
137 (if (and (or (string-match "^[^=].*\\.el$" f) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
138 ;; Allow compressed files also. Fixme: |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
139 ;; generalize this, especially for |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
140 ;; MS-DOG-type filenames. |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
141 (and (string-match "^[^=].*\\.el\\.\\(gz\\|Z\\)$" f) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
142 (require 'jka-compr))) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
143 ;; Ignore lock files. |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
144 (not (string-match "^.#" f)) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
145 (not (member f processed))) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
146 (let (summary keystart keywords) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
147 (setq processed (cons f processed)) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
148 (save-excursion |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
149 (set-buffer (get-buffer-create "*finder-scratch*")) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
150 (buffer-disable-undo (current-buffer)) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
151 (erase-buffer) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
152 (insert-file-contents |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
153 (concat (file-name-as-directory (or d ".")) f)) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
154 (setq summary (lm-synopsis)) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
155 (setq keywords (lm-keywords))) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
156 (insert |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
157 (format " (\"%s\"\n " |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
158 (if (string-match "\\.\\(gz\\|Z\\)$" f) |
24221
efc15742dcc3
(finder-commentary): Fix interactive spec. Try
Dave Love <fx@gnu.org>
parents:
22295
diff
changeset
|
159 (file-name-sans-extension f) |
21758
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
160 f))) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
161 (prin1 summary (current-buffer)) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
162 (insert |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
163 "\n ") |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
164 (setq keystart (point)) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
165 (insert |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
166 (if keywords (format "(%s)" keywords) "nil") |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
167 ")\n") |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
168 (subst-char-in-region keystart (point) ?, ? ) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
169 ))) |
bc7f520d8251
(finder-compile-keywords):
Richard M. Stallman <rms@gnu.org>
parents:
20264
diff
changeset
|
170 (directory-files (or d "."))))) |
2228
d40154ca6354
(finder-compile-keywords) Treat nil in a path argument as $PWD.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1475
diff
changeset
|
171 (or dirs load-path)) |
30883
869204bacd5f
Add local-variable settings to the generated file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28528
diff
changeset
|
172 (insert "))\n |
48991
d3a44c8bd8d2
* finder.el (generated-finder-keywords-file): New variable.
Andreas Schwab <schwab@suse.de>
parents:
48688
diff
changeset
|
173 \(provide '" (file-name-sans-extension |
d3a44c8bd8d2
* finder.el (generated-finder-keywords-file): New variable.
Andreas Schwab <schwab@suse.de>
parents:
48688
diff
changeset
|
174 (file-name-nondirectory generated-finder-keywords-file)) ") |
30883
869204bacd5f
Add local-variable settings to the generated file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28528
diff
changeset
|
175 |
869204bacd5f
Add local-variable settings to the generated file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28528
diff
changeset
|
176 ;;; Local Variables: |
869204bacd5f
Add local-variable settings to the generated file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28528
diff
changeset
|
177 ;;; version-control: never |
869204bacd5f
Add local-variable settings to the generated file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28528
diff
changeset
|
178 ;;; no-byte-compile: t |
869204bacd5f
Add local-variable settings to the generated file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28528
diff
changeset
|
179 ;;; no-update-autoloads: t |
869204bacd5f
Add local-variable settings to the generated file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28528
diff
changeset
|
180 ;;; End: |
48991
d3a44c8bd8d2
* finder.el (generated-finder-keywords-file): New variable.
Andreas Schwab <schwab@suse.de>
parents:
48688
diff
changeset
|
181 ;;; " (file-name-nondirectory generated-finder-keywords-file) " ends here\n") |
2228
d40154ca6354
(finder-compile-keywords) Treat nil in a path argument as $PWD.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1475
diff
changeset
|
182 (kill-buffer "*finder-scratch*") |
2271
026941de1886
Make sure that when new keywords are compiled, we see them
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2270
diff
changeset
|
183 (eval-current-buffer) ;; So we get the new keyword list immediately |
14599 | 184 (basic-save-buffer)))) |
867 | 185 |
14669
6feeb4e59815
(finder-compile-keywords-make-dist): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14599
diff
changeset
|
186 (defun finder-compile-keywords-make-dist () |
6feeb4e59815
(finder-compile-keywords-make-dist): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14599
diff
changeset
|
187 "Regenerate `finder-inf.el' for the Emacs distribution." |
17745
ae0f1e4a63be
(finder-compile-keywords-make-dist):
Richard M. Stallman <rms@gnu.org>
parents:
14669
diff
changeset
|
188 (apply 'finder-compile-keywords command-line-args-left) |
ae0f1e4a63be
(finder-compile-keywords-make-dist):
Richard M. Stallman <rms@gnu.org>
parents:
14669
diff
changeset
|
189 (kill-emacs)) |
14669
6feeb4e59815
(finder-compile-keywords-make-dist): New function.
Richard M. Stallman <rms@gnu.org>
parents:
14599
diff
changeset
|
190 |
867 | 191 ;;; Now the retrieval code |
192 | |
14599 | 193 (defun finder-insert-at-column (column &rest strings) |
21805
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
194 "Insert, at column COLUMN, other args STRINGS." |
38359
29beb6347e09
(finder-insert-at-column): Also move to the next line if exactly at COLUMN.
Miles Bader <miles@gnu.org>
parents:
33420
diff
changeset
|
195 (if (>= (current-column) column) (insert "\n")) |
21805
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
196 (move-to-column column t) |
14599 | 197 (apply 'insert strings)) |
198 | |
33420
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
199 (defvar finder-help-echo nil) |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
200 |
21805
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
201 (defun finder-mouse-face-on-line () |
33420
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
202 "Put `mouse-face' and `help-echo' properties on the previous line." |
21805
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
203 (save-excursion |
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
204 (previous-line 1) |
33420
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
205 (unless finder-help-echo |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
206 (setq finder-help-echo |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
207 (let* ((keys1 (where-is-internal 'finder-select |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
208 finder-mode-map)) |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
209 (keys (nconc (where-is-internal |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
210 'finder-mouse-select finder-mode-map) |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
211 keys1))) |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
212 (concat (mapconcat 'key-description keys ", ") |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
213 ": select item")))) |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
214 (add-text-properties |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
215 (line-beginning-position) (line-end-position) |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
216 '(mouse-face highlight |
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
217 help-echo finder-help-echo)))) |
21805
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
218 |
28528
7618c3801a21
(finder-commentary): Add autoload cookie.
Gerd Moellmann <gerd@gnu.org>
parents:
26675
diff
changeset
|
219 ;;;###autoload |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
220 (defun finder-list-keywords () |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
221 "Display descriptions of the keywords in the Finder buffer." |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
222 (interactive) |
18226
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
223 (if (get-buffer "*Finder*") |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
224 (pop-to-buffer "*Finder*") |
18284
21a40db838e2
(finder-list-keywords): Create *Finder* buffer if nec.
Richard M. Stallman <rms@gnu.org>
parents:
18226
diff
changeset
|
225 (pop-to-buffer (set-buffer (get-buffer-create "*Finder*"))) |
18226
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
226 (finder-mode) |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
227 (setq buffer-read-only nil) |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
228 (erase-buffer) |
33420
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
229 (mapc |
18226
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
230 (lambda (assoc) |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
231 (let ((keyword (car assoc))) |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
232 (insert (symbol-name keyword)) |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
233 (finder-insert-at-column 14 (concat (cdr assoc) "\n")) |
21805
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
234 (finder-mouse-face-on-line))) |
18226
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
235 finder-known-keywords) |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
236 (goto-char (point-min)) |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
237 (setq finder-headmark (point)) |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
238 (setq buffer-read-only t) |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
239 (set-buffer-modified-p nil) |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
240 (balance-windows) |
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
241 (finder-summary))) |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
242 |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
243 (defun finder-list-matches (key) |
18687
3854a35dffd8
(finder-list-matches): Create *Finder Category* buffer.
Richard M. Stallman <rms@gnu.org>
parents:
18284
diff
changeset
|
244 (pop-to-buffer (set-buffer (get-buffer-create "*Finder Category*"))) |
18226
37ff8dfff53b
(finder-mode): Don't switch buffers or change text here.
Richard M. Stallman <rms@gnu.org>
parents:
17745
diff
changeset
|
245 (finder-mode) |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
246 (setq buffer-read-only nil) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
247 (erase-buffer) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
248 (let ((id (intern key))) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
249 (insert |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
250 "The following packages match the keyword `" key "':\n\n") |
2996
358fe58ae153
(finder-known-keywords): Use i18n, not i14n.
Richard M. Stallman <rms@gnu.org>
parents:
2716
diff
changeset
|
251 (setq finder-headmark (point)) |
33420
cc332f3565f2
(finder-known-keywords): Add `files', remove `vms'.
Dave Love <fx@gnu.org>
parents:
30883
diff
changeset
|
252 (mapc |
14599 | 253 (lambda (x) |
254 (if (memq id (car (cdr (cdr x)))) | |
255 (progn | |
256 (insert (car x)) | |
21805
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
257 (finder-insert-at-column 16 (concat (nth 1 x) "\n")) |
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
258 (finder-mouse-face-on-line)))) |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
259 finder-package-info) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
260 (goto-char (point-min)) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
261 (forward-line) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
262 (setq buffer-read-only t) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
263 (set-buffer-modified-p nil) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
264 (shrink-window-if-larger-than-buffer) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
265 (finder-summary))) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
266 |
28528
7618c3801a21
(finder-commentary): Add autoload cookie.
Gerd Moellmann <gerd@gnu.org>
parents:
26675
diff
changeset
|
267 ;;;###autoload |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
268 (defun finder-commentary (file) |
24221
efc15742dcc3
(finder-commentary): Fix interactive spec. Try
Dave Love <fx@gnu.org>
parents:
22295
diff
changeset
|
269 "Display FILE's commentary section. |
efc15742dcc3
(finder-commentary): Fix interactive spec. Try
Dave Love <fx@gnu.org>
parents:
22295
diff
changeset
|
270 FILE should be in a form suitable for passing to `locate-library'." |
47419
0e00286fe517
(finder-find-library): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44105
diff
changeset
|
271 (interactive |
0e00286fe517
(finder-find-library): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44105
diff
changeset
|
272 (list |
0e00286fe517
(finder-find-library): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44105
diff
changeset
|
273 (completing-read "Library name: " |
0e00286fe517
(finder-find-library): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44105
diff
changeset
|
274 'locate-file-completion |
0e00286fe517
(finder-find-library): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44105
diff
changeset
|
275 (cons (or find-function-source-path load-path) |
0e00286fe517
(finder-find-library): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44105
diff
changeset
|
276 (find-library-suffixes))))) |
0e00286fe517
(finder-find-library): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44105
diff
changeset
|
277 (let* ((str (lm-commentary (find-library-name file)))) |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
278 (if (null str) |
7943
8053544ffe30
(finder-commentary): Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5848
diff
changeset
|
279 (error "Can't find any Commentary section")) |
48408
2eb7a3846b4c
(finder-commentary): Use buffer *Finder-package*.
Richard M. Stallman <rms@gnu.org>
parents:
47825
diff
changeset
|
280 ;; This used to use *Finder* but that would clobber the |
2eb7a3846b4c
(finder-commentary): Use buffer *Finder-package*.
Richard M. Stallman <rms@gnu.org>
parents:
47825
diff
changeset
|
281 ;; directory of categories. |
2eb7a3846b4c
(finder-commentary): Use buffer *Finder-package*.
Richard M. Stallman <rms@gnu.org>
parents:
47825
diff
changeset
|
282 (pop-to-buffer "*Finder-package*") |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
283 (setq buffer-read-only nil) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
284 (erase-buffer) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
285 (insert str) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
286 (goto-char (point-min)) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
287 (delete-blank-lines) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
288 (goto-char (point-max)) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
289 (delete-blank-lines) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
290 (goto-char (point-min)) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
291 (while (re-search-forward "^;+ ?" nil t) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
292 (replace-match "" nil nil)) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
293 (goto-char (point-min)) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
294 (setq buffer-read-only t) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
295 (set-buffer-modified-p nil) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
296 (shrink-window-if-larger-than-buffer) |
26675
995b6841718b
(finder-commentary): Activate Finder mode.
Gerd Moellmann <gerd@gnu.org>
parents:
25622
diff
changeset
|
297 (finder-mode) |
14599 | 298 (finder-summary))) |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
299 |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
300 (defun finder-current-item () |
2996
358fe58ae153
(finder-known-keywords): Use i18n, not i14n.
Richard M. Stallman <rms@gnu.org>
parents:
2716
diff
changeset
|
301 (if (and finder-headmark (< (point) finder-headmark)) |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
302 (error "No keyword or filename on this line") |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
303 (save-excursion |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
304 (beginning-of-line) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
305 (current-word)))) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
306 |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
307 (defun finder-select () |
21805
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
308 "Select item on current line in a finder buffer." |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
309 (interactive) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
310 (let ((key (finder-current-item))) |
20009
09bc233eb018
(finder-mode-map): Bind [mouse-2].
Karl Heuer <kwzh@gnu.org>
parents:
19169
diff
changeset
|
311 (if (string-match "\\.el$" key) |
09bc233eb018
(finder-mode-map): Bind [mouse-2].
Karl Heuer <kwzh@gnu.org>
parents:
19169
diff
changeset
|
312 (finder-commentary key) |
09bc233eb018
(finder-mode-map): Bind [mouse-2].
Karl Heuer <kwzh@gnu.org>
parents:
19169
diff
changeset
|
313 (finder-list-matches key)))) |
09bc233eb018
(finder-mode-map): Bind [mouse-2].
Karl Heuer <kwzh@gnu.org>
parents:
19169
diff
changeset
|
314 |
09bc233eb018
(finder-mode-map): Bind [mouse-2].
Karl Heuer <kwzh@gnu.org>
parents:
19169
diff
changeset
|
315 (defun finder-mouse-select (event) |
21805
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
316 "Select item in a finder buffer with the mouse." |
20009
09bc233eb018
(finder-mode-map): Bind [mouse-2].
Karl Heuer <kwzh@gnu.org>
parents:
19169
diff
changeset
|
317 (interactive "e") |
09bc233eb018
(finder-mode-map): Bind [mouse-2].
Karl Heuer <kwzh@gnu.org>
parents:
19169
diff
changeset
|
318 (save-excursion |
21805
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
319 (set-buffer (window-buffer (posn-window (event-start event)))) |
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
320 (goto-char (posn-point (event-start event))) |
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
321 (finder-select))) |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
322 |
28528
7618c3801a21
(finder-commentary): Add autoload cookie.
Gerd Moellmann <gerd@gnu.org>
parents:
26675
diff
changeset
|
323 ;;;###autoload |
867 | 324 (defun finder-by-keyword () |
325 "Find packages matching a given keyword." | |
326 (interactive) | |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
327 (finder-list-keywords)) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
328 |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
329 (defun finder-mode () |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
330 "Major mode for browsing package documentation. |
2716
acd678e58602
* finder.el: Bind finder-exit to 'q', not 'x'; the former is the
Jim Blandy <jimb@redhat.com>
parents:
2527
diff
changeset
|
331 \\<finder-mode-map> |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
332 \\[finder-select] more help for the item on the current line |
24221
efc15742dcc3
(finder-commentary): Fix interactive spec. Try
Dave Love <fx@gnu.org>
parents:
22295
diff
changeset
|
333 \\[finder-exit] exit Finder mode and kill the Finder buffer." |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
334 (interactive) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
335 (use-local-map finder-mode-map) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
336 (set-syntax-table emacs-lisp-mode-syntax-table) |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
337 (setq mode-name "Finder") |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
338 (setq major-mode 'finder-mode) |
2996
358fe58ae153
(finder-known-keywords): Use i18n, not i14n.
Richard M. Stallman <rms@gnu.org>
parents:
2716
diff
changeset
|
339 (make-local-variable 'finder-headmark) |
14599 | 340 (setq finder-headmark nil)) |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
341 |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
342 (defun finder-summary () |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
343 "Summarize basic Finder commands." |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
344 (interactive) |
14313
8e13f59d2c19
(finder-summary): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
345 (message "%s" |
2716
acd678e58602
* finder.el: Bind finder-exit to 'q', not 'x'; the former is the
Jim Blandy <jimb@redhat.com>
parents:
2527
diff
changeset
|
346 (substitute-command-keys |
21805
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
347 "\\<finder-mode-map>\\[finder-select] = select, \ |
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
348 \\[finder-mouse-select] = select, \\[finder-list-keywords] = to \ |
aafa93c1a5ce
(finder-insert-at-column): Simplify.
Dave Love <fx@gnu.org>
parents:
21758
diff
changeset
|
349 finder directory, \\[finder-exit] = quit, \\[finder-summary] = help"))) |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
350 |
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
351 (defun finder-exit () |
20264
3b9b07f3eab5
(finder-find-library): Re-instate (with a different
Karl Heuer <kwzh@gnu.org>
parents:
20241
diff
changeset
|
352 "Exit Finder mode and kill the buffer." |
2527
93015b63b041
Rewritten. The Finder is now a major mode with the ability to browse
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2502
diff
changeset
|
353 (interactive) |
20241 | 354 (or (one-window-p t) |
355 (delete-window)) | |
20009
09bc233eb018
(finder-mode-map): Bind [mouse-2].
Karl Heuer <kwzh@gnu.org>
parents:
19169
diff
changeset
|
356 ;; Can happen in either buffer -- kill each of the two that exists |
20241 | 357 (and (get-buffer "*Finder*") |
358 (kill-buffer "*Finder*")) | |
359 (and (get-buffer "*Finder Category*") | |
360 (kill-buffer "*Finder Category*"))) | |
867 | 361 |
30883
869204bacd5f
Add local-variable settings to the generated file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28528
diff
changeset
|
362 |
867 | 363 (provide 'finder) |
364 | |
365 ;;; finder.el ends here |