Initial revision
[emacs.git] / lisp / imenu.el
blob876f6f2f06154a903ea9676de82015f2995d89d6
1 ;;; imenu.el --- Framework for mode-specific buffer indexes.
3 ;; Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
5 ;; Author: Ake Stenhoff <etxaksf@aom.ericsson.se>
6 ;; Lars Lindberg <lli@sypro.cap.se>
7 ;; Created: 8 Feb 1994
8 ;; Keywords: tools
10 ;; This file is part of GNU Emacs.
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
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
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.
22 ;; You should have received a copy of the GNU General Public License
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.
27 ;;; Commentary:
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.
34 ;; How it works:
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.
39 ;; The package comes with a set of example functions for how to
40 ;; utilize this package.
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.
47 ;;; Thanks goes to
48 ;; [simon] - Simon Leinen simon@lia.di.epfl.ch
49 ;; [dean] - Dean Andrews ada@unison.com
50 ;; [alon] - Alon Albert al@mercury.co.il
51 ;; [greg] - Greg Thompson gregt@porsche.visix.COM
52 ;; [wolfgang] - Wolfgang Bangerth zcg51122@rpool1.rus.uni-stuttgart.de
53 ;; [kai] - Kai Grossjohann grossjoh@linus.informatik.uni-dortmund.de
54 ;; [david] - David M. Smith dsmith@stats.adelaide.edu.au
55 ;; [christian] - Christian Egli Christian.Egli@hcsd.hac.com
56 ;; [karl] - Karl Fogel kfogel@floss.life.uiuc.edu
58 ;;; Code
60 (eval-when-compile (require 'cl))
62 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
63 ;;;
64 ;;; Customizable variables
65 ;;;
66 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
68 (defvar imenu-auto-rescan nil
69 "*Non-nil means Imenu should always rescan the buffers.")
71 (defvar imenu-auto-rescan-maxout 60000
72 "* auto-rescan is disabled in buffers larger than this.
73 This variable is buffer-local.")
75 (defvar imenu-always-use-completion-buffer-p nil
76 "*Set this to non-nil for displaying the index in a completion buffer.
78 Non-nil means always display the index in a completion buffer.
79 Nil means display the index as a mouse menu when the mouse was
80 used to invoke `imenu'.
81 `never' means never automatically display a listing of any kind.")
83 (defvar imenu-sort-function nil
84 "*The function to use for sorting the index mouse-menu.
86 Affects only the mouse index menu.
88 Set this to nil if you don't want any sorting (faster).
89 The items in the menu are then presented in the order they were found
90 in the buffer.
92 Set it to `imenu--sort-by-name' if you want alphabetic sorting.
94 The function should take two arguments and return T if the first
95 element should come before the second. The arguments are cons cells;
96 \(NAME . POSITION). Look at `imenu--sort-by-name' for an example.")
98 (defvar imenu-max-items 25
99 "*Maximum number of elements in an mouse menu for Imenu.")
101 (defvar imenu-scanning-message "Scanning buffer for index (%3d%%)"
102 "*Progress message during the index scanning of the buffer.
103 If non-nil, user gets a message during the scanning of the buffer
105 Relevant only if the mode-specific function that creates the buffer
106 index use `imenu-progress-message'.")
108 (defvar imenu-space-replacement "^"
109 "*The replacement string for spaces in index names.
110 Used when presenting the index in a completion-buffer to make the
111 names work as tokens.")
113 (defvar imenu-level-separator ":"
114 "*The separator between index names of different levels.
115 Used for making mouse-menu titles and for flattening nested indexes
116 with name concatenation.")
118 ;;;###autoload
119 (defvar imenu-generic-expression nil
120 "The regex pattern to use for creating a buffer index.
122 If non-nil this pattern is passed to `imenu-create-index-with-pattern'
123 to create a buffer index.
125 It is an alist with elements that look like this: (MENU-TITLE
126 REGEXP INDEX).
128 MENU-TITLE is a string used as the title for the submenu or nil if the
129 entries are not nested.
131 REGEXP is a regexp that should match a construct in the buffer that is
132 to be displayed in the menu; i.e., function or variable definitions,
133 etc. It contains a substring which is the name to appear in the
134 menu. See the info section on Regexps for more information.
136 INDEX points to the substring in REGEXP that contains the name (of the
137 function, variable or type) that is to appear in the menu.
139 For emacs-lisp-mode for example PATTERN would look like:
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))
145 The variable is buffer-local.")
147 ;;;###autoload
148 (make-variable-buffer-local 'imenu-generic-expression)
150 ;;;; Hooks
152 (defvar imenu-create-index-function 'imenu-default-create-index-function
153 "The function to use for creating a buffer index.
155 It should be a function that takes no arguments and returns an index
156 of the current buffer as an alist. The elements in the alist look
157 like: (INDEX-NAME . INDEX-POSITION). You may also nest index list like
158 \(INDEX-NAME . INDEX-ALIST).
160 This function is called within a `save-excursion'.
162 The variable is buffer-local.")
163 (make-variable-buffer-local 'imenu-create-index-function)
165 (defvar imenu-prev-index-position-function 'beginning-of-defun
166 "Function for finding the next index position.
168 If `imenu-create-index-function' is set to
169 `imenu-default-create-index-function', then you must set this variable
170 to a function that will find the next index, looking backwards in the
171 file.
173 The function should leave point at the place to be connected to the
174 index and it should return nil when it doesn't find another index.")
175 (make-variable-buffer-local 'imenu-prev-index-position-function)
177 (defvar imenu-extract-index-name-function nil
178 "Function for extracting the index name.
180 This function is called after the function pointed out by
181 `imenu-prev-index-position-function'.")
182 (make-variable-buffer-local 'imenu-extract-index-name-function)
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)))))))
203 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
204 ;;;;
205 ;;;; Some examples of functions utilizing the framework of this
206 ;;;; package.
207 ;;;;
208 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
210 ;; Return the current/previous sexp and the location of the sexp (its
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))))
223 ;;; Lisp
224 ;;;
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)))))
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))
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
281 (push (cons "Variables" index-var-alist)
282 index-alist))
283 (and index-type-alist
284 (push (cons "Types" index-type-alist)
285 index-alist))
286 (and index-unknown-alist
287 (push (cons "Syntax-unknown" index-unknown-alist)
288 index-alist))
289 index-alist))
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
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)))
323 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
325 ;;; Internal variables
327 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
329 ;; The item to use in the index for rescanning the buffer.
330 (defconst imenu--rescan-item '("*Rescan*" . -99))
332 ;; The latest buffer index.
333 ;; Buffer local.
334 (defvar imenu--index-alist nil)
335 (make-variable-buffer-local 'imenu--index-alist)
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)
341 ;; History list for 'jump-to-function-in-buffer'.
342 ;; Making this buffer local caused it not to work!
343 (defvar imenu--history-list nil)
345 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
347 ;;; Internal support functions
349 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
352 ;;; Sort function
353 ;;; Sorts the items depending on their index name.
354 ;;; An item look like (NAME . POSITION).
356 (defun imenu--sort-by-name (item1 item2)
357 (string-lessp (car item1) (car item2)))
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)))))
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)))
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.
394 (defun imenu--split-menu (menulist title)
395 (if imenu-sort-function
396 (setq menulist
397 (sort
398 (let ((res nil)
399 (oldlist menulist))
400 ;; Copy list method from the cl package `copy-list'
401 (while (consp oldlist) (push (pop oldlist) res))
402 (prog1 (nreverse res) (setcdr res oldlist)))
403 imenu-sort-function)))
404 (if (> (length menulist) imenu-max-items)
405 (let ((count 0))
406 (cons title
407 (mapcar
408 (function
409 (lambda (menu)
410 (cons (format "(%s-%d)" title (setq count (1+ count)))
411 menu)))
412 (imenu--split menulist imenu-max-items))))
413 (cons title menulist)))
415 ;;; Split up each long alist that are nested within ALIST
416 ;;; into nested alists.
417 (defun imenu--split-submenus (alist)
418 (mapcar (function (lambda (elt)
419 (if (and (consp elt)
420 (stringp (car elt))
421 (listp (cdr elt)))
422 (imenu--split-menu (cdr elt) (car elt))
423 elt)))
424 alist))
427 ;;; Find all items in this buffer that should be in the index.
428 ;;; Returns an alist on the form
429 ;;; ((NAME . POSITION) (NAME . POSITION) ...)
432 (defun imenu--make-index-alist (&optional noerror)
433 ;; Create a list for this buffer only when needed.
434 (or (and imenu--index-alist
435 (or (not imenu-auto-rescan)
436 (and imenu-auto-rescan
437 (> (buffer-size) imenu-auto-rescan-maxout))))
438 ;; Get the index
439 (setq imenu--index-alist
440 (save-excursion
441 (funcall imenu-create-index-function))))
442 (or imenu--index-alist noerror
443 (error "No items suitable for an index found in this buffer"))
444 (or imenu--index-alist
445 (setq imenu--index-alist (list nil)))
446 ;; Add a rescan option to the index.
447 (cons imenu--rescan-item imenu--index-alist))
449 ;;; Find all markers in alist and makes
450 ;;; them point nowhere.
452 (defun imenu--cleanup (&optional alist)
453 ;; Sets the markers in imenu--index-alist
454 ;; point nowhere.
455 ;; if alist is provided use that list.
456 (or alist
457 (setq alist imenu--index-alist))
458 (and alist
459 (mapcar
460 (function
461 (lambda (item)
462 (cond
463 ((markerp (cdr item))
464 (set-marker (cdr item) nil))
465 ((consp (cdr item))
466 (imenu--cleanup (cdr item))))))
467 alist)
470 (defun imenu--create-keymap-2 (alist counter &optional commands)
471 (let ((map nil))
472 (mapcar
473 (function
474 (lambda (item)
475 (cond
476 ((listp (cdr item))
477 (append (list (setq counter (1+ counter))
478 (car item) 'keymap (car item))
479 (imenu--create-keymap-2 (cdr item) (+ counter 10) commands)))
481 (let ((end (if commands `(lambda () (interactive)
482 (imenu--menubar-select ',item))
483 (cons '(nil) item))))
484 (cons (car item)
485 (cons (car item) end))))
487 alist)))
489 ;; If COMMANDS is non-nil, make a real keymap
490 ;; with a real command used as the definition.
491 ;; If it is nil, make something suitable for x-popup-menu.
492 (defun imenu--create-keymap-1 (title alist &optional commands)
493 (append (list 'keymap title) (imenu--create-keymap-2 alist 0 commands)))
496 (defun imenu--in-alist (str alist)
497 "Check whether the string STR is contained in multi-level ALIST."
498 (let (elt head tail res)
499 (setq res nil)
500 (while alist
501 (setq elt (car alist)
502 tail (cdr elt)
503 alist (cdr alist)
504 head (car elt))
505 ;; A nested ALIST element looks like
506 ;; (INDEX-NAME (INDEX-NAME . INDEX-POSITION) ...)
507 ;; while a bottom-level element looks like
508 ;; (INDEX-NAME . INDEX-POSITION)
509 ;; We are only interested in the bottom-level elements, so we need to
510 ;; recurse if TAIL is a list.
511 (cond ((listp tail)
512 (if (setq res (imenu--in-alist str tail))
513 (setq alist nil)))
514 ((string= str head)
515 (setq alist nil res elt))))
516 res))
518 (defun imenu-default-create-index-function ()
519 "*Wrapper for index searching functions.
521 Moves point to end of buffer and then repeatedly calls
522 `imenu-prev-index-position-function' and `imenu-extract-index-name-function'.
523 Their results are gathered into an index alist."
524 ;; These should really be done by setting imenu-create-index-function
525 ;; in these major modes. But save that change for later.
526 (cond ((and (fboundp imenu-prev-index-position-function)
527 (fboundp imenu-extract-index-name-function))
528 (let ((index-alist '())
529 prev-pos name)
530 (goto-char (point-max))
531 (imenu-progress-message prev-pos 0 t)
532 ;; Search for the function
533 (while (funcall imenu-prev-index-position-function)
534 (imenu-progress-message prev-pos nil t)
535 (save-excursion
536 (setq name (funcall imenu-extract-index-name-function)))
537 (and (stringp name)
538 (push (cons name (point)) index-alist)))
539 (imenu-progress-message prev-pos 100 t)
540 index-alist))
541 ;; Use generic expression if possible.
542 ((and imenu-generic-expression)
543 (imenu--generic-function imenu-generic-expression))
545 (error "The mode \"%s\" does not take full advantage of imenu.el yet."
546 mode-name))))
548 (defun imenu--replace-spaces (name replacement)
549 ;; Replace all spaces in NAME with REPLACEMENT.
550 ;; That second argument should be a string.
551 (mapconcat
552 (function
553 (lambda (ch)
554 (if (char-equal ch ?\ )
555 replacement
556 (char-to-string ch))))
557 name
558 ""))
560 (defun imenu--flatten-index-alist (index-alist &optional concat-names prefix)
561 ;; Takes a nested INDEX-ALIST and returns a flat index alist.
562 ;; If optional CONCAT-NAMES is non-nil, then a nested index has its
563 ;; name and a space concatenated to the names of the children.
564 ;; Third argument PREFIX is for internal use only.
565 (mapcan
566 (function
567 (lambda (item)
568 (let* ((name (car item))
569 (pos (cdr item))
570 (new-prefix (and concat-names
571 (if prefix
572 (concat prefix imenu-level-separator name)
573 name))))
574 (cond
575 ((or (markerp pos) (numberp pos))
576 (list (cons new-prefix pos)))
578 (imenu--flatten-index-alist pos new-prefix))))))
579 index-alist))
582 ;;; Generic index gathering function.
585 (defun imenu--generic-function (patterns)
586 ;; Built on some ideas that Erik Naggum <erik@naggum.no> once posted
587 ;; to comp.emacs
588 "Return an index of the current buffer as an alist.
590 PATTERN is an alist with elements that look like this: (MENU-TITLE
591 REGEXP INDEX).
593 MENU-TITLE is a string used as the title for the submenu or nil if the
594 entries are not nested.
596 REGEXP is a regexp that should match a construct in the buffer that is
597 to be displayed in the menu; i.e., function or variable definitions,
598 etc. It contains a substring which is the name to appear in the
599 menu. See the info section on Regexps for more information.
601 INDEX points to the substring in REGEXP that contains the name (of the
602 function, variable or type) that is to appear in the menu.
604 For emacs-lisp-mode for example PATTERN would look like:
606 '((nil \"^\\\\s-*(def\\\\(un\\\\|subst\\\\|macro\\\\|advice\\\\)\\\\s-+\\\\([-A-Za-z0-9]+\\\\)\" 2)
607 (\"*Vars*\" \"^\\\\s-*(def\\\\(var\\\\|const\\\\)\\\\s-+\\\\([-A-Za-z0-9]+\\\\)\" 2)
608 (\"*Types*\" \"^\\\\s-*(def\\\\(type\\\\|struct\\\\|class\\\\|ine-condition\\\\)\\\\s-+\\\\([-A-Za-z0-9]+\\\\)\" 2))'
610 Returns an index of the current buffer as an alist. The elements in
611 the alist look like: (INDEX-NAME . INDEX-POSITION). They may also be
612 nested index lists like (INDEX-NAME . INDEX-ALIST) depending on
613 pattern.
615 \(imenu--generic-function PATTERN\)."
617 (let ((index-alist (list 'dummy))
618 (found nil)
619 (global-regexp
620 (concat "\\("
621 (mapconcat
622 (function (lambda (pattern) (identity (cadr pattern))))
623 patterns "\\)\\|\\(")
624 "\\)"))
625 prev-pos)
627 (goto-char (point-max))
628 (imenu-progress-message prev-pos 0 t)
629 (save-match-data
630 (while (re-search-backward global-regexp nil t)
631 (imenu-progress-message prev-pos nil t)
632 (setq found nil)
633 (save-excursion
634 (goto-char (match-beginning 0))
635 (mapcar
636 (function
637 (lambda (pat)
638 (let ((menu-title (car pat))
639 (regexp (cadr pat))
640 (index (caddr pat)))
641 (if (and (not found) ; Only allow one entry;
642 (looking-at regexp))
643 (let ((beg (make-marker))
644 (end (match-end index)))
645 (set-marker beg (match-beginning index))
646 (setq found t)
647 (push
648 (cons (buffer-substring-no-properties beg end) beg)
649 (cdr
650 (or (assoc menu-title index-alist)
651 (car (push
652 (cons menu-title '())
653 index-alist))))))))))
654 patterns))))
655 (imenu-progress-message prev-pos 100 t)
656 (let ((main-element (assq nil index-alist)))
657 (nconc (delq main-element (delq 'dummy index-alist)) main-element))))
659 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
661 ;;; The main functions for this package!
663 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
665 (defun imenu--completion-buffer (index-alist &optional prompt)
666 "Let the user select from INDEX-ALIST in a completion buffer with PROMPT.
668 Returns t for rescan and otherwise a position number."
669 ;; Create a list for this buffer only when needed.
670 (let (name choice
671 (prepared-index-alist
672 (mapcar
673 (function
674 (lambda (item)
675 (cons (imenu--replace-spaces (car item) imenu-space-replacement)
676 (cdr item))))
677 index-alist)))
678 (if (eq imenu-always-use-completion-buffer-p 'never)
679 (setq name (completing-read (or prompt "Index item: ")
680 prepared-index-alist
681 nil t nil 'imenu--history-list))
682 (save-window-excursion
683 ;; Display the completion buffer
684 (with-output-to-temp-buffer "*Completions*"
685 (display-completion-list
686 (all-completions "" prepared-index-alist )))
687 (let ((minibuffer-setup-hook
688 (function (lambda ()
689 (let ((buffer (current-buffer)))
690 (save-excursion
691 (set-buffer "*Completions*")
692 (setq completion-reference-buffer buffer)))))))
693 ;; Make a completion question
694 (setq name (completing-read (or prompt "Index item: ")
695 prepared-index-alist
696 nil t nil 'imenu--history-list)))))
697 (cond ((not (stringp name))
698 nil)
699 ((string= name (car imenu--rescan-item))
702 (setq choice (assoc name prepared-index-alist))
703 (if (listp (cdr choice))
704 (imenu--completion-buffer (cdr choice) prompt)
705 choice)))))
707 (defun imenu--mouse-menu (index-alist event &optional title)
708 "Let the user select from a buffer index from a mouse menu.
710 INDEX-ALIST is the buffer index and EVENT is a mouse event.
712 Returns t for rescan and otherwise an element or subelement of INDEX-ALIST."
713 (setq index-alist (imenu--split-submenus index-alist))
714 (let* ((menu (imenu--split-menu index-alist
715 (or title (buffer-name))))
716 position)
717 (setq menu (imenu--create-keymap-1 (car menu)
718 (if (< 1 (length (cdr menu)))
719 (cdr menu)
720 (cdr (car (cdr menu))))))
721 (setq position (x-popup-menu event menu))
722 (cond ((eq position nil)
723 position)
724 ;; If one call to x-popup-menu handled the nested menus,
725 ;; find the result by looking down the menus here.
726 ((and (listp position)
727 (numberp (car position))
728 (stringp (nth (1- (length position)) position)))
729 (let ((final menu))
730 (while position
731 (setq final (assoc (car position) final))
732 (setq position (cdr position)))
733 (or (string= (car final) (car imenu--rescan-item))
734 (cdr (cdr (cdr final))))))
735 ;; If x-popup-menu went just one level and found a leaf item,
736 ;; return the INDEX-ALIST element for that.
737 ((and (consp position)
738 (stringp (car position))
739 (null (cdr position)))
740 (or (string= (car position) (car imenu--rescan-item))
741 (assq (car position) index-alist)))
742 ;; If x-popup-menu went just one level
743 ;; and found a non-leaf item (a submenu),
744 ;; recurse to handle the rest.
745 ((listp position)
746 (imenu--mouse-menu position event
747 (if title
748 (concat title imenu-level-separator
749 (car (rassq position index-alist)))
750 (car (rassq position index-alist))))))))
752 (defun imenu-choose-buffer-index (&optional prompt alist)
753 "Let the user select from a buffer index and return the chosen index.
755 If the user originally activated this function with the mouse, a mouse
756 menu is used. Otherwise a completion buffer is used and the user is
757 prompted with PROMPT.
759 If you call this function with index alist ALIST, then it lets the user
760 select from ALIST.
762 With no index alist ALIST, it calls `imenu--make-index-alist' to
763 create the index alist.
765 If `imenu-always-use-completion-buffer-p' is non-nil, then the
766 completion buffer is always used, no matter if the mouse was used or
767 not.
769 The returned value is on the form (INDEX-NAME . INDEX-POSITION)."
770 (let (index-alist
771 (mouse-triggered (listp last-nonmenu-event))
772 (result t) )
773 ;; If selected by mouse, see to that the window where the mouse is
774 ;; really is selected.
775 (and mouse-triggered
776 (not (equal last-nonmenu-event '(menu-bar)))
777 (let ((window (posn-window (event-start last-nonmenu-event))))
778 (or (framep window) (null window) (select-window window))))
779 ;; Create a list for this buffer only when needed.
780 (while (eq result t)
781 (setq index-alist (if alist alist (imenu--make-index-alist)))
782 (setq result
783 (if (and mouse-triggered
784 (not imenu-always-use-completion-buffer-p))
785 (imenu--mouse-menu index-alist last-nonmenu-event)
786 (imenu--completion-buffer index-alist prompt)))
787 (and (eq result t)
788 (imenu--cleanup)
789 (setq imenu--index-alist nil)))
790 result))
792 ;;;###autoload
793 (defun imenu-add-to-menubar (name)
794 "Adds an `imenu' entry to the menu bar for the current buffer.
795 NAME is a string used to name the menu bar item.
796 See the command `imenu' for more information."
797 (interactive "sImenu menu item name: ")
798 (let ((newmap (make-sparse-keymap))
799 (menu-bar (lookup-key (current-local-map) [menu-bar])))
800 (define-key newmap [menu-bar]
801 (append (make-sparse-keymap) menu-bar))
802 (define-key newmap [menu-bar index]
803 (cons name (nconc (make-sparse-keymap "Imenu")
804 (make-sparse-keymap))))
805 (use-local-map (append newmap (current-local-map))))
806 (add-hook 'menu-bar-update-hook 'imenu-update-menubar))
808 (defvar imenu-buffer-menubar nil)
810 (defun imenu-update-menubar ()
811 (and (current-local-map)
812 (keymapp (lookup-key (current-local-map) [menu-bar index]))
813 (let ((index-alist (imenu--make-index-alist t)))
814 ;; Don't bother updating if the index-alist has not changed
815 ;; since the last time we did it.
816 (or (equal index-alist imenu--last-menubar-index-alist)
817 (let (menu menu1 old)
818 (setq imenu--last-menubar-index-alist index-alist)
819 (setq index-alist (imenu--split-submenus index-alist))
820 (setq menu (imenu--split-menu index-alist
821 (buffer-name)))
822 (setq menu1 (imenu--create-keymap-1 (car menu)
823 (if (< 1 (length (cdr menu)))
824 (cdr menu)
825 (cdr (car (cdr menu))))
827 (setq old (lookup-key (current-local-map) [menu-bar index]))
828 (setcdr old (cdr menu1)))))))
830 (defun imenu--menubar-select (item)
831 "Use Imenu to select the function or variable named in this menu item."
832 (if (equal item '("*Rescan*" . -99))
833 (progn
834 (imenu--cleanup)
835 (setq imenu--index-alist nil)
836 (imenu-update-menubar))
837 (imenu item)))
839 ;;;###autoload
840 (defun imenu (index-item)
841 "Jump to a place in the buffer chosen using a buffer menu or mouse menu.
842 See `imenu-choose-buffer-index' for more information."
843 (interactive
844 (list (save-restriction
845 (widen)
846 (imenu-choose-buffer-index))))
847 ;; Convert a string to an alist element.
848 (if (stringp index-item)
849 (setq index-item (assoc index-item (imenu--make-index-alist))))
850 (and index-item
851 (progn
852 (push-mark)
853 (cond
854 ((markerp (cdr index-item))
855 (if (or (< (marker-position (cdr index-item)) (point-min))
856 (> (marker-position (cdr index-item)) (point-max)))
857 ;; widen if outside narrowing
858 (widen))
859 (goto-char (marker-position (cdr index-item))))
861 (if (or (< (cdr index-item) (point-min))
862 (> (cdr index-item) (point-max)))
863 ;; widen if outside narrowing
864 (widen))
865 (goto-char (cdr index-item)))))))
867 (provide 'imenu)
869 ;;; imenu.el ends here