(LOCALTIME_CACHE): Don't put a string literal "TZ=..." in environ.
[bpt/emacs.git] / lisp / imenu.el
CommitLineData
0a688fd0
RS
1;;; imenu.el --- Framework for mode-specific buffer indexes.
2
f5632218 3;; Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
0a688fd0
RS
4
5;; Author: Ake Stenhoff <etxaksf@aom.ericsson.se>
6;; Lars Lindberg <lli@sypro.cap.se>
7;; Created: 8 Feb 1994
0a688fd0 8;; Keywords: tools
b578f267
EN
9
10;; This file is part of GNU Emacs.
11
12;; GNU Emacs is free software; you can redistribute it and/or modify
0a688fd0
RS
13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 2, or (at your option)
15;; any later version.
b578f267
EN
16
17;; GNU Emacs is distributed in the hope that it will be useful,
0a688fd0
RS
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.
b578f267 21
0a688fd0 22;; You should have received a copy of the GNU General Public License
b578f267
EN
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.
0a688fd0
RS
26
27;;; Commentary:
b578f267 28
0a688fd0
RS
29;; Purpose of this package:
30;; To present a framework for mode-specific buffer indexes.
31;; A buffer index is an alist of names and buffer positions.
32;; For instance all functions in a C-file and their positions.
33;;
34;; How it works:
35
36;; A mode-specific function is called to generate the index. It is
37;; then presented to the user, who can choose from this index.
38;;
39;; The package comes with a set of example functions for how to
40;; utilize this package.
41
2d24227e
RS
42;; There are *examples* for index gathering functions/regular
43;; expressions for C/C++ and Lisp/Emacs Lisp but it is easy to
44;; customize for other modes. A function for jumping to the chosen
45;; index position is also supplied.
0a688fd0 46
26d6bb60
RS
47;;; Thanks goes to
48;; [simon] - Simon Leinen simon@lia.di.epfl.ch
49;; [dean] - Dean Andrews ada@unison.com
5d3b0f18 50;; [alon] - Alon Albert al@mercury.co.il
7804cd27 51;; [greg] - Greg Thompson gregt@porsche.visix.COM
615b306c 52;; [wolfgang] - Wolfgang Bangerth zcg51122@rpool1.rus.uni-stuttgart.de
056ab244 53;; [kai] - Kai Grossjohann grossjoh@linus.informatik.uni-dortmund.de
af447694 54;; [david] - David M. Smith dsmith@stats.adelaide.edu.au
2d24227e
RS
55;; [christian] - Christian Egli Christian.Egli@hcsd.hac.com
56;; [karl] - Karl Fogel kfogel@floss.life.uiuc.edu
57
0a688fd0 58;;; Code
b578f267 59
0ee4f8ad 60(eval-when-compile (require 'cl))
0a688fd0
RS
61
62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
63;;;
64;;; Customizable variables
65;;;
66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2d24227e
RS
67
68(defvar imenu-auto-rescan nil
6c1bf12b 69 "*Non-nil means Imenu should always rescan the buffers.")
2d24227e
RS
70
71(defvar imenu-auto-rescan-maxout 60000
72 "* auto-rescan is disabled in buffers larger than this.
6c1bf12b 73This variable is buffer-local.")
0a688fd0
RS
74
75(defvar imenu-always-use-completion-buffer-p nil
76 "*Set this to non-nil for displaying the index in a completion buffer.
77
78Non-nil means always display the index in a completion buffer.
79Nil means display the index as a mouse menu when the mouse was
af447694
RS
80used to invoke `imenu'.
81`never' means never automatically display a listing of any kind.")
0a688fd0
RS
82
83(defvar imenu-sort-function nil
84 "*The function to use for sorting the index mouse-menu.
85
86Affects only the mouse index menu.
87
88Set this to nil if you don't want any sorting (faster).
89The items in the menu are then presented in the order they were found
90in the buffer.
91
0ee4f8ad 92Set it to `imenu--sort-by-name' if you want alphabetic sorting.
0a688fd0
RS
93
94The function should take two arguments and return T if the first
95element should come before the second. The arguments are cons cells;
a4e104bf 96\(NAME . POSITION). Look at `imenu--sort-by-name' for an example.")
0a688fd0
RS
97
98(defvar imenu-max-items 25
0c20ee61 99 "*Maximum number of elements in an mouse menu for Imenu.")
0a688fd0 100
6c1bf12b 101(defvar imenu-scanning-message "Scanning buffer for index (%3d%%)"
0a688fd0 102 "*Progress message during the index scanning of the buffer.
7dea4e70 103If non-nil, user gets a message during the scanning of the buffer
0a688fd0
RS
104
105Relevant only if the mode-specific function that creates the buffer
0ee4f8ad 106index use `imenu-progress-message'.")
0a688fd0
RS
107
108(defvar imenu-space-replacement "^"
109 "*The replacement string for spaces in index names.
110Used when presenting the index in a completion-buffer to make the
111names work as tokens.")
112
113(defvar imenu-level-separator ":"
114 "*The separator between index names of different levels.
115Used for making mouse-menu titles and for flattening nested indexes
116with name concatenation.")
117
2d24227e 118;;;###autoload
615b306c 119(defvar imenu-generic-expression nil
2d24227e
RS
120 "The regex pattern to use for creating a buffer index.
121
122If non-nil this pattern is passed to `imenu-create-index-with-pattern'
123to create a buffer index.
124
125It is an alist with elements that look like this: (MENU-TITLE
126REGEXP INDEX).
127
128MENU-TITLE is a string used as the title for the submenu or nil if the
129entries are not nested.
130
131REGEXP is a regexp that should match a construct in the buffer that is
6c1bf12b
RS
132to be displayed in the menu; i.e., function or variable definitions,
133etc. It contains a substring which is the name to appear in the
134menu. See the info section on Regexps for more information.
2d24227e
RS
135
136INDEX points to the substring in REGEXP that contains the name (of the
137function, variable or type) that is to appear in the menu.
615b306c 138
2d24227e
RS
139For emacs-lisp-mode for example PATTERN would look like:
140
c30c8a0c
RS
141'((nil \"^\\\\s-*(def\\\\(un\\\\|subst\\\\|macro\\\\|advice\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)
142 (\"*Vars*\" \"^\\\\s-*(def\\\\(var\\\\|const\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2)
143 (\"*Types*\" \"^\\\\s-*(def\\\\(type\\\\|struct\\\\|class\\\\|ine-condition\\\\)\\\\s-+\\\\([-A-Za-z0-9+]+\\\\)\" 2))
2d24227e
RS
144
145The variable is buffer-local.")
146
af5eb153 147;;;###autoload
6c1bf12b 148(make-variable-buffer-local 'imenu-generic-expression)
615b306c 149
0a688fd0
RS
150;;;; Hooks
151
152(defvar imenu-create-index-function 'imenu-default-create-index-function
153 "The function to use for creating a buffer index.
154
155It should be a function that takes no arguments and returns an index
6c1bf12b
RS
156of the current buffer as an alist. The elements in the alist look
157like: (INDEX-NAME . INDEX-POSITION). You may also nest index list like
a4e104bf 158\(INDEX-NAME . INDEX-ALIST).
0a688fd0 159
0ee4f8ad 160This function is called within a `save-excursion'.
0a688fd0
RS
161
162The variable is buffer-local.")
163(make-variable-buffer-local 'imenu-create-index-function)
164
68e01f5a 165(defvar imenu-prev-index-position-function 'beginning-of-defun
0a688fd0
RS
166 "Function for finding the next index position.
167
0ee4f8ad
RS
168If `imenu-create-index-function' is set to
169`imenu-default-create-index-function', then you must set this variable
0a688fd0
RS
170to a function that will find the next index, looking backwards in the
171file.
172
173The function should leave point at the place to be connected to the
6c1bf12b 174index and it should return nil when it doesn't find another index.")
68e01f5a 175(make-variable-buffer-local 'imenu-prev-index-position-function)
0a688fd0 176
68e01f5a 177(defvar imenu-extract-index-name-function nil
0a688fd0
RS
178 "Function for extracting the index name.
179
0a688fd0 180This function is called after the function pointed out by
68e01f5a
RS
181`imenu-prev-index-position-function'.")
182(make-variable-buffer-local 'imenu-extract-index-name-function)
0a688fd0 183
615b306c
KH
184;;;
185;;; Macro to display a progress message.
186;;; RELPOS is the relative position to display.
187;;; If RELPOS is nil, then the relative position in the buffer
188;;; is calculated.
189;;; PREVPOS is the variable in which we store the last position displayed.
190(defmacro imenu-progress-message (prevpos &optional relpos reverse)
191 (` (and
192 imenu-scanning-message
193 (let ((pos (, (if relpos
194 relpos
195 (` (imenu--relative-position (, reverse)))))))
196 (if (, (if relpos t
197 (` (> pos (+ 5 (, prevpos))))))
198 (progn
199 (message imenu-scanning-message pos)
200 (setq (, prevpos) pos)))))))
201
202
203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
204;;;;
205;;;; Some examples of functions utilizing the framework of this
206;;;; package.
207;;;;
208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
209
e064a4f9 210;; Return the current/previous sexp and the location of the sexp (its
615b306c
KH
211;; beginning) without moving the point.
212(defun imenu-example--name-and-position ()
213 (save-excursion
214 (forward-sexp -1)
215 (let ((beg (point))
216 (end (progn (forward-sexp) (point)))
217 (marker (make-marker)))
218 (set-marker marker beg)
219 (cons (buffer-substring beg end)
220 marker))))
221
222;;;
223;;; Lisp
224;;;
225
226(defun imenu-example--lisp-extract-index-name ()
227 ;; Example of a candidate for `imenu-extract-index-name-function'.
228 ;; This will generate a flat index of definitions in a lisp file.
229 (save-match-data
230 (and (looking-at "(def")
231 (condition-case nil
232 (progn
233 (down-list 1)
234 (forward-sexp 2)
235 (let ((beg (point))
236 (end (progn (forward-sexp -1) (point))))
237 (buffer-substring beg end)))
238 (error nil)))))
239
240(defun imenu-example--create-lisp-index ()
241 ;; Example of a candidate for `imenu-create-index-function'.
242 ;; It will generate a nested index of definitions.
243 (let ((index-alist '())
244 (index-var-alist '())
245 (index-type-alist '())
246 (index-unknown-alist '())
247 prev-pos)
248 (goto-char (point-max))
249 (imenu-progress-message prev-pos 0)
250 ;; Search for the function
251 (while (beginning-of-defun)
252 (imenu-progress-message prev-pos nil t)
253 (save-match-data
254 (and (looking-at "(def")
255 (save-excursion
256 (down-list 1)
257 (cond
258 ((looking-at "def\\(var\\|const\\)")
259 (forward-sexp 2)
260 (push (imenu-example--name-and-position)
261 index-var-alist))
262 ((looking-at "def\\(un\\|subst\\|macro\\|advice\\)")
263 (forward-sexp 2)
264 (push (imenu-example--name-and-position)
265 index-alist))
266 ((looking-at "def\\(type\\|struct\\|class\\|ine-condition\\)")
267 (forward-sexp 2)
268 (if (= (char-after (1- (point))) ?\))
269 (progn
270 (forward-sexp -1)
271 (down-list 1)
272 (forward-sexp 1)))
273 (push (imenu-example--name-and-position)
274 index-type-alist))
275 (t
276 (forward-sexp 2)
277 (push (imenu-example--name-and-position)
278 index-unknown-alist)))))))
279 (imenu-progress-message prev-pos 100)
280 (and index-var-alist
0c20ee61 281 (push (cons "Variables" index-var-alist)
615b306c
KH
282 index-alist))
283 (and index-type-alist
0c20ee61 284 (push (cons "Types" index-type-alist)
615b306c
KH
285 index-alist))
286 (and index-unknown-alist
0c20ee61 287 (push (cons "Syntax-unknown" index-unknown-alist)
615b306c
KH
288 index-alist))
289 index-alist))
290
615b306c
KH
291;; Regular expression to find C functions
292(defvar imenu-example--function-name-regexp-c
293 (concat
294 "^[a-zA-Z0-9]+[ \t]?" ; type specs; there can be no
295 "\\([a-zA-Z0-9_*]+[ \t]+\\)?" ; more than 3 tokens, right?
296 "\\([a-zA-Z0-9_*]+[ \t]+\\)?"
297 "\\([*&]+[ \t]*\\)?" ; pointer
298 "\\([a-zA-Z0-9_*]+\\)[ \t]*(" ; name
299 ))
300
301(defun imenu-example--create-c-index (&optional regexp)
302 (let ((index-alist '())
303 prev-pos char)
304 (goto-char (point-min))
305 (imenu-progress-message prev-pos 0)
306 ;; Search for the function
307 (save-match-data
308 (while (re-search-forward
309 (or regexp imenu-example--function-name-regexp-c)
310 nil t)
311 (imenu-progress-message prev-pos)
312 (backward-up-list 1)
313 (save-excursion
314 (goto-char (scan-sexps (point) 1))
315 (setq char (following-char)))
316 ;; Skip this function name if it is a prototype declaration.
317 (if (not (eq char ?\;))
318 (push (imenu-example--name-and-position) index-alist))))
319 (imenu-progress-message prev-pos 100)
320 (nreverse index-alist)))
321
2d24227e 322
0a688fd0
RS
323;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
324;;;
325;;; Internal variables
326;;;
327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
328
329;; The item to use in the index for rescanning the buffer.
330(defconst imenu--rescan-item '("*Rescan*" . -99))
331
332;; The latest buffer index.
333;; Buffer local.
334(defvar imenu--index-alist nil)
335(make-variable-buffer-local 'imenu--index-alist)
336
0a8e8bc6
KH
337;; The latest buffer index used to update the menu bar menu.
338(defvar imenu--last-menubar-index-alist nil)
339(make-variable-buffer-local 'imenu--last-menubar-index-alist)
340
0a688fd0 341;; History list for 'jump-to-function-in-buffer'.
6c1bf12b 342;; Making this buffer local caused it not to work!
0a688fd0 343(defvar imenu--history-list nil)
0a688fd0
RS
344
345;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
346;;;
347;;; Internal support functions
348;;;
349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
350
351;;;
352;;; Sort function
353;;; Sorts the items depending on their index name.
354;;; An item look like (NAME . POSITION).
355;;;
356(defun imenu--sort-by-name (item1 item2)
357 (string-lessp (car item1) (car item2)))
358
359(defun imenu--relative-position (&optional reverse)
360 ;; Support function to calculate relative position in buffer
361 ;; Beginning of buffer is 0 and end of buffer is 100
362 ;; If REVERSE is non-nil then the beginning is 100 and the end is 0.
363 (let ((pos (point))
364 (total (buffer-size)))
365 (and reverse (setq pos (- total pos)))
366 (if (> total 50000)
367 ;; Avoid overflow from multiplying by 100!
368 (/ (1- pos) (max (/ total 100) 1))
369 (/ (* 100 (1- pos)) (max total 1)))))
370
0a688fd0
RS
371;; Split LIST into sublists of max length N.
372;; Example (imenu--split '(1 2 3 4 5 6 7 8) 3)-> '((1 2 3) (4 5 6) (7 8))
373(defun imenu--split (list n)
374 (let ((remain list)
375 (result '())
376 (sublist '())
377 (i 0))
378 (while remain
379 (push (pop remain) sublist)
380 (incf i)
381 (and (= i n)
382 ;; We have finished a sublist
383 (progn (push (nreverse sublist) result)
384 (setq i 0)
385 (setq sublist '()))))
386 ;; There might be a sublist (if the length of LIST mod n is != 0)
387 ;; that has to be added to the result list.
388 (and sublist
389 (push (nreverse sublist) result))
390 (nreverse result)))
391
0c20ee61
RS
392;;; Split the alist MENULIST into a nested alist, if it is long enough.
393;;; In any case, add TITLE to the front of the alist.
0a688fd0 394(defun imenu--split-menu (menulist title)
0c20ee61
RS
395 (if (> (length menulist) imenu-max-items)
396 (let ((count 0))
397 (cons title
398 (mapcar
399 (function
400 (lambda (menu)
401 (cons (format "(%s-%d)" title (setq count (1+ count)))
402 menu)))
403 (imenu--split menulist imenu-max-items))))
404 (cons title menulist)))
405
406;;; Split up each long alist that are nested within ALIST
407;;; into nested alists.
408(defun imenu--split-submenus (alist)
409 (mapcar (function (lambda (elt)
410 (if (and (consp elt)
411 (stringp (car elt))
412 (listp (cdr elt)))
413 (imenu--split-menu (cdr elt) (car elt))
414 elt)))
415 alist))
0a688fd0
RS
416
417;;;
418;;; Find all items in this buffer that should be in the index.
419;;; Returns an alist on the form
420;;; ((NAME . POSITION) (NAME . POSITION) ...)
421;;;
422
0a8e8bc6 423(defun imenu--make-index-alist (&optional noerror)
0a688fd0 424 ;; Create a list for this buffer only when needed.
2d24227e
RS
425 (or (and imenu--index-alist
426 (or (not imenu-auto-rescan)
427 (and imenu-auto-rescan
428 (> (buffer-size) imenu-auto-rescan-maxout))))
0a688fd0
RS
429 ;; Get the index
430 (setq imenu--index-alist
431 (save-excursion
432 (funcall imenu-create-index-function))))
0a8e8bc6 433 (or imenu--index-alist noerror
6c1bf12b 434 (error "No items suitable for an index found in this buffer"))
0a8e8bc6
KH
435 (or imenu--index-alist
436 (setq imenu--index-alist (list nil)))
0a688fd0
RS
437 ;; Add a rescan option to the index.
438 (cons imenu--rescan-item imenu--index-alist))
5d3b0f18
RS
439;;;
440;;; Find all markers in alist and makes
441;;; them point nowhere.
442;;;
443(defun imenu--cleanup (&optional alist)
444 ;; Sets the markers in imenu--index-alist
445 ;; point nowhere.
446 ;; if alist is provided use that list.
4818d210
RS
447 (or alist
448 (setq alist imenu--index-alist))
449 (and alist
7804cd27 450 (mapcar
5d3b0f18
RS
451 (function
452 (lambda (item)
453 (cond
454 ((markerp (cdr item))
455 (set-marker (cdr item) nil))
4818d210 456 ((consp (cdr item))
5d3b0f18 457 (imenu--cleanup (cdr item))))))
4818d210 458 alist)
615b306c
KH
459 t))
460
0a8e8bc6 461(defun imenu--create-keymap-2 (alist counter &optional commands)
2d24227e
RS
462 (let ((map nil))
463 (mapcar
464 (function
465 (lambda (item)
466 (cond
467 ((listp (cdr item))
fc0ac20d
KH
468 (append (list (setq counter (1+ counter))
469 (car item) 'keymap (car item))
0a8e8bc6 470 (imenu--create-keymap-2 (cdr item) (+ counter 10) commands)))
2d24227e 471 (t
fc0ac20d
KH
472 (let ((end (if commands `(lambda () (interactive)
473 (imenu--menubar-select ',item))
0a8e8bc6 474 (cons '(nil) t))))
2d24227e
RS
475 (cons (car item)
476 (cons (car item) end))))
477 )))
478 alist)))
479
0a8e8bc6
KH
480;; If COMMANDS is non-nil, make a real keymap
481;; with a real command used as the definition.
482;; If it is nil, make something suitable for x-popup-menu.
483(defun imenu--create-keymap-1 (title alist &optional commands)
484 (append (list 'keymap title) (imenu--create-keymap-2 alist 0 commands)))
2d24227e
RS
485
486
487(defun imenu--in-alist (str alist)
488 "Check whether the string STR is contained in multi-level ALIST."
489 (let (elt head tail res)
490 (setq res nil)
491 (while alist
492 (setq elt (car alist)
493 tail (cdr elt)
494 alist (cdr alist)
495 head (car elt))
496 (if (string= str head)
497 (setq alist nil res elt)
498 (if (and (listp tail)
499 (setq res (imenu--in-alist str tail)))
500 (setq alist nil))))
501 res))
502
0a688fd0
RS
503(defun imenu-default-create-index-function ()
504 "*Wrapper for index searching functions.
505
506Moves point to end of buffer and then repeatedly calls
68e01f5a 507`imenu-prev-index-position-function' and `imenu-extract-index-name-function'.
0a688fd0 508Their results are gathered into an index alist."
3e062f78
RS
509 ;; These should really be done by setting imenu-create-index-function
510 ;; in these major modes. But save that change for later.
615b306c
KH
511 (cond ((and (fboundp imenu-prev-index-position-function)
512 (fboundp imenu-extract-index-name-function))
3e062f78 513 (let ((index-alist '())
615b306c 514 prev-pos name)
3e062f78 515 (goto-char (point-max))
7dea4e70 516 (imenu-progress-message prev-pos 0 t)
3e062f78
RS
517 ;; Search for the function
518 (while (funcall imenu-prev-index-position-function)
7dea4e70 519 (imenu-progress-message prev-pos nil t)
3e062f78
RS
520 (save-excursion
521 (setq name (funcall imenu-extract-index-name-function)))
522 (and (stringp name)
523 (push (cons name (point)) index-alist)))
7dea4e70 524 (imenu-progress-message prev-pos 100 t)
615b306c
KH
525 index-alist))
526 ;; Use generic expression if possible.
527 ((and imenu-generic-expression)
e064a4f9 528 (imenu--generic-function imenu-generic-expression))
615b306c
KH
529 (t
530 (error "The mode \"%s\" does not take full advantage of imenu.el yet."
531 mode-name))))
0a688fd0
RS
532
533(defun imenu--replace-spaces (name replacement)
534 ;; Replace all spaces in NAME with REPLACEMENT.
535 ;; That second argument should be a string.
536 (mapconcat
537 (function
538 (lambda (ch)
539 (if (char-equal ch ?\ )
540 replacement
541 (char-to-string ch))))
542 name
543 ""))
544
545(defun imenu--flatten-index-alist (index-alist &optional concat-names prefix)
546 ;; Takes a nested INDEX-ALIST and returns a flat index alist.
547 ;; If optional CONCAT-NAMES is non-nil, then a nested index has its
548 ;; name and a space concatenated to the names of the children.
549 ;; Third argument PREFIX is for internal use only.
550 (mapcan
551 (function
552 (lambda (item)
553 (let* ((name (car item))
554 (pos (cdr item))
555 (new-prefix (and concat-names
556 (if prefix
557 (concat prefix imenu-level-separator name)
558 name))))
559 (cond
5d3b0f18 560 ((or (markerp pos) (numberp pos))
0a688fd0
RS
561 (list (cons new-prefix pos)))
562 (t
563 (imenu--flatten-index-alist pos new-prefix))))))
564 index-alist))
565
615b306c
KH
566;;;
567;;; Generic index gathering function.
568;;;
2d24227e
RS
569
570(defun imenu--generic-function (patterns)
571;; Built on some ideas that Erik Naggum <erik@naggum.no> once posted
572;; to comp.emacs
573 "Return an index of the current buffer as an alist.
574
575PATTERN is an alist with elements that look like this: (MENU-TITLE
6c1bf12b 576REGEXP INDEX).
2d24227e
RS
577
578MENU-TITLE is a string used as the title for the submenu or nil if the
579entries are not nested.
580
581REGEXP is a regexp that should match a construct in the buffer that is
6c1bf12b
RS
582to be displayed in the menu; i.e., function or variable definitions,
583etc. It contains a substring which is the name to appear in the
584menu. See the info section on Regexps for more information.
2d24227e
RS
585
586INDEX points to the substring in REGEXP that contains the name (of the
587function, variable or type) that is to appear in the menu.
588
589For emacs-lisp-mode for example PATTERN would look like:
590
c30c8a0c
RS
591'((nil \"^\\\\s-*(def\\\\(un\\\\|subst\\\\|macro\\\\|advice\\\\)\\\\s-+\\\\([-A-Za-z0-9]+\\\\)\" 2)
592 (\"*Vars*\" \"^\\\\s-*(def\\\\(var\\\\|const\\\\)\\\\s-+\\\\([-A-Za-z0-9]+\\\\)\" 2)
593 (\"*Types*\" \"^\\\\s-*(def\\\\(type\\\\|struct\\\\|class\\\\|ine-condition\\\\)\\\\s-+\\\\([-A-Za-z0-9]+\\\\)\" 2))'
2d24227e 594
6c1bf12b
RS
595Returns an index of the current buffer as an alist. The elements in
596the alist look like: (INDEX-NAME . INDEX-POSITION). They may also be
2d24227e
RS
597nested index lists like (INDEX-NAME . INDEX-ALIST) depending on
598pattern.
599
600\(imenu--generic-function PATTERN\)."
601
602 (let ((index-alist (list 'dummy))
603 (found nil)
604 (global-regexp
605 (concat "\\("
606 (mapconcat
607 (function (lambda (pattern) (identity (cadr pattern))))
608 patterns "\\)\\|\\(")
609 "\\)"))
610 prev-pos)
611
615b306c
KH
612 (goto-char (point-max))
613 (imenu-progress-message prev-pos 0 t)
2d24227e
RS
614 (save-match-data
615 (while (re-search-backward global-regexp nil t)
616 (imenu-progress-message prev-pos nil t)
617 (setq found nil)
618 (save-excursion
619 (goto-char (match-beginning 0))
620 (mapcar
621 (function
622 (lambda (pat)
623 (let ((menu-title (car pat))
624 (regexp (cadr pat))
625 (index (caddr pat)))
626 (if (and (not found) ; Only allow one entry;
627 (looking-at regexp))
628 (let ((beg (match-beginning index))
629 (end (match-end index)))
630 (setq found t)
631 (push
e1de3014 632 (cons (buffer-substring-no-properties beg end) beg)
2d24227e 633 (cdr
0c20ee61 634 (or (assoc menu-title index-alist)
2d24227e 635 (car (push
0c20ee61 636 (cons menu-title '())
2d24227e 637 index-alist))))))))))
0c20ee61
RS
638 patterns))))
639 (imenu-progress-message prev-pos 100 t)
640 (let ((main-element (assq nil index-alist)))
641 (nconc (delq main-element (delq 'dummy index-alist)) main-element))))
615b306c 642
0a688fd0
RS
643;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
644;;;
645;;; The main functions for this package!
646;;;
647;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
648
649(defun imenu--completion-buffer (index-alist &optional prompt)
650 "Let the user select from INDEX-ALIST in a completion buffer with PROMPT.
651
652Returns t for rescan and otherwise a position number."
653 ;; Create a list for this buffer only when needed.
654 (let (name choice
615b306c
KH
655 (prepared-index-alist
656 (mapcar
657 (function
658 (lambda (item)
659 (cons (imenu--replace-spaces (car item) imenu-space-replacement)
660 (cdr item))))
661 index-alist)))
af447694
RS
662 (if (eq imenu-always-use-completion-buffer-p 'never)
663 (setq name (completing-read (or prompt "Index item: ")
664 prepared-index-alist
665 nil t nil 'imenu--history-list))
666 (save-window-excursion
667 ;; Display the completion buffer
668 (with-output-to-temp-buffer "*Completions*"
669 (display-completion-list
670 (all-completions "" prepared-index-alist )))
671 (let ((minibuffer-setup-hook
672 (function (lambda ()
673 (let ((buffer (current-buffer)))
674 (save-excursion
675 (set-buffer "*Completions*")
676 (setq completion-reference-buffer buffer)))))))
677 ;; Make a completion question
678 (setq name (completing-read (or prompt "Index item: ")
679 prepared-index-alist
680 nil t nil 'imenu--history-list)))))
3e062f78
RS
681 (cond ((not (stringp name))
682 nil)
683 ((string= name (car imenu--rescan-item))
684 t)
685 (t
686 (setq choice (assoc name prepared-index-alist))
687 (if (listp (cdr choice))
688 (imenu--completion-buffer (cdr choice) prompt)
689 choice)))))
68e01f5a 690
0a688fd0
RS
691(defun imenu--mouse-menu (index-alist event &optional title)
692 "Let the user select from a buffer index from a mouse menu.
693
694INDEX-ALIST is the buffer index and EVENT is a mouse event.
695
696Returns t for rescan and otherwise a position number."
0c20ee61 697 (setq index-alist (imenu--split-submenus index-alist))
0a688fd0
RS
698 (let* ((menu (imenu--split-menu
699 (if imenu-sort-function
0ee4f8ad
RS
700 (sort
701 (let ((res nil)
702 (oldlist index-alist))
703 ;; Copy list method from the cl package `copy-list'
704 (while (consp oldlist) (push (pop oldlist) res))
705 (prog1 (nreverse res) (setcdr res oldlist)))
706 imenu-sort-function)
0a688fd0
RS
707 index-alist)
708 (or title (buffer-name))))
709 position)
fdbf0fc7
RS
710 (setq menu (imenu--create-keymap-1 (car menu)
711 (if (< 1 (length (cdr menu)))
712 (cdr menu)
713 (cdr (cadr menu)))))
0a688fd0 714 (setq position (x-popup-menu event menu))
27f94c9b
RS
715 (cond ((and (listp position)
716 (numberp (car position))
717 (stringp (nth (1- (length position)) position)))
718 (setq position (nth (1- (length position)) position)))
719 ((and (stringp (car position))
720 (null (cdr position)))
721 (setq position (car position))))
722 (cond ((eq position nil)
723 position)
724 ((listp position)
725 (imenu--mouse-menu position event
726 (if title
727 (concat title imenu-level-separator
728 (car (rassq position index-alist)))
729 (car (rassq position index-alist)))))
730 ((stringp position)
731 (or (string= position (car imenu--rescan-item))
732 (imenu--in-alist position index-alist)))
733 ((or (= position (cdr imenu--rescan-item))
734 (and (stringp position)
735 (string= position (car imenu--rescan-item))))
736 t)
737 (t
738 (rassq position index-alist)))))
0a688fd0 739
26d6bb60 740(defun imenu-choose-buffer-index (&optional prompt alist)
0a688fd0
RS
741 "Let the user select from a buffer index and return the chosen index.
742
743If the user originally activated this function with the mouse, a mouse
0a688fd0
RS
744menu is used. Otherwise a completion buffer is used and the user is
745prompted with PROMPT.
746
26d6bb60
RS
747If you call this function with index alist ALIST, then it lets the user
748select from ALIST.
749
0ee4f8ad 750With no index alist ALIST, it calls `imenu--make-index-alist' to
26d6bb60
RS
751create the index alist.
752
0ee4f8ad 753If `imenu-always-use-completion-buffer-p' is non-nil, then the
0a688fd0
RS
754completion buffer is always used, no matter if the mouse was used or
755not.
756
757The returned value is on the form (INDEX-NAME . INDEX-POSITION)."
758 (let (index-alist
7dea4e70 759 (mouse-triggered (listp last-nonmenu-event))
0a688fd0
RS
760 (result t) )
761 ;; If selected by mouse, see to that the window where the mouse is
762 ;; really is selected.
763 (and mouse-triggered
4cde72b4 764 (not (equal last-nonmenu-event '(menu-bar)))
7dea4e70 765 (let ((window (posn-window (event-start last-nonmenu-event))))
4a840d8b 766 (or (framep window) (null window) (select-window window))))
0a688fd0
RS
767 ;; Create a list for this buffer only when needed.
768 (while (eq result t)
26d6bb60 769 (setq index-alist (if alist alist (imenu--make-index-alist)))
0a688fd0
RS
770 (setq result
771 (if (and mouse-triggered
772 (not imenu-always-use-completion-buffer-p))
7dea4e70 773 (imenu--mouse-menu index-alist last-nonmenu-event)
0a688fd0
RS
774 (imenu--completion-buffer index-alist prompt)))
775 (and (eq result t)
5d3b0f18 776 (imenu--cleanup)
0a688fd0
RS
777 (setq imenu--index-alist nil)))
778 result))
779
2d24227e 780;;;###autoload
5d3b0f18 781(defun imenu-add-to-menubar (name)
d1757026 782 "Adds an `imenu' entry to the menu bar for the current buffer.
0a8e8bc6 783NAME is a string used to name the menu bar item.
d1757026 784See the command `imenu' for more information."
0a8e8bc6 785 (interactive "sImenu menu item name: ")
d1757026
RS
786 (let ((newmap (make-sparse-keymap))
787 (menu-bar (lookup-key (current-local-map) [menu-bar])))
788 (define-key newmap [menu-bar]
789 (append (make-sparse-keymap) menu-bar))
790 (define-key newmap [menu-bar index]
791 (cons name (nconc (make-sparse-keymap "Imenu")
792 (make-sparse-keymap))))
793 (use-local-map (append newmap (current-local-map))))
0a8e8bc6
KH
794 (add-hook 'menu-bar-update-hook 'imenu-update-menubar))
795
6d7a4832
KH
796(defvar imenu-buffer-menubar nil)
797
0a8e8bc6
KH
798(defun imenu-update-menubar ()
799 (and (current-local-map)
800 (keymapp (lookup-key (current-local-map) [menu-bar index]))
801 (let ((index-alist (imenu--make-index-alist t)))
802 ;; Don't bother updating if the index-alist has not changed
803 ;; since the last time we did it.
804 (or (equal index-alist imenu--last-menubar-index-alist)
805 (let (menu menu1 old)
806 (setq imenu--last-menubar-index-alist index-alist)
0c20ee61 807 (setq index-alist (imenu--split-submenus index-alist))
0a8e8bc6
KH
808 (setq menu (imenu--split-menu
809 (if imenu-sort-function
810 (sort
811 (let ((res nil)
812 (oldlist index-alist))
813 ;; Copy list method from the cl package `copy-list'
814 (while (consp oldlist) (push (pop oldlist) res))
815 (prog1 (nreverse res) (setcdr res oldlist)))
816 imenu-sort-function)
817 index-alist)
818 (buffer-name)))
819 (setq menu1 (imenu--create-keymap-1 (car menu)
820 (if (< 1 (length (cdr menu)))
821 (cdr menu)
822 (cdr (car (cdr menu))))
823 t))
824 (setq old (lookup-key (current-local-map) [menu-bar index]))
825 (if (keymapp old)
826 (setcdr (nthcdr 2 old) menu1)))))))
827
828(defun imenu--menubar-select (item)
829 "Use Imenu to select the function or variable named in this menu item."
e63679b8
RS
830 (if (equal item '("*Rescan*" . -99))
831 (progn
832 (imenu--cleanup)
833 (setq imenu--index-alist nil)
834 (imenu-update-menubar))
835 (imenu item)))
5d3b0f18 836
68e01f5a 837;;;###autoload
6c1bf12b 838(defun imenu (index-item)
68e01f5a 839 "Jump to a place in the buffer chosen using a buffer menu or mouse menu.
0ee4f8ad 840See `imenu-choose-buffer-index' for more information."
6c1bf12b
RS
841 (interactive
842 (list (save-restriction
843 (widen)
880169e2 844 (imenu-choose-buffer-index))))
0a8e8bc6
KH
845 ;; Convert a string to an alist element.
846 (if (stringp index-item)
847 (setq index-item (assoc index-item (imenu--make-index-alist))))
6c1bf12b
RS
848 (and index-item
849 (progn
850 (push-mark)
851 (cond
852 ((markerp (cdr index-item))
853 (if (or ( > (marker-position (cdr index-item)) (point-min))
854 ( < (marker-position (cdr index-item)) (point-max)))
855 ;; widen if outside narrowing
856 (widen))
857 (goto-char (marker-position (cdr index-item))))
858 (t
859 (if (or ( > (cdr index-item) (point-min))
860 ( < (cdr index-item) (point-max)))
861 ;; widen if outside narrowing
862 (widen))
863 (goto-char (cdr index-item)))))))
5d3b0f18 864
0a688fd0
RS
865(provide 'imenu)
866
867;;; imenu.el ends here