1 ;;; imenu.el --- framework for mode-specific buffer indexes
3 ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Ake Stenhoff <etxaksf@aom.ericsson.se>
7 ;; Lars Lindberg <lli@sypro.cap.se>
10 ;; Keywords: tools convenience
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
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 ;; It is documented in the Emacs Lisp manual.
38 ;; A mode-specific function is called to generate the index. It is
39 ;; then presented to the user, who can choose from this index.
41 ;; The package comes with a set of example functions for how to
42 ;; utilize this package.
44 ;; There are *examples* for index gathering functions/regular
45 ;; expressions for C/C++ and Lisp/Emacs Lisp but it is easy to
46 ;; customize for other modes. A function for jumping to the chosen
47 ;; index position is also supplied.
51 ;; [simon] - Simon Leinen simon@lia.di.epfl.ch
52 ;; [dean] - Dean Andrews ada@unison.com
53 ;; [alon] - Alon Albert al@mercury.co.il
54 ;; [greg] - Greg Thompson gregt@porsche.visix.COM
55 ;; [wolfgang] - Wolfgang Bangerth zcg51122@rpool1.rus.uni-stuttgart.de
56 ;; [kai] - Kai Grossjohann grossjoh@linus.informatik.uni-dortmund.de
57 ;; [david] - David M. Smith dsmith@stats.adelaide.edu.au
58 ;; [christian] - Christian Egli Christian.Egli@hcsd.hac.com
59 ;; [karl] - Karl Fogel kfogel@floss.life.uiuc.edu
63 (eval-when-compile (require 'cl
))
65 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
67 ;;; Customizable variables
69 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
72 "Mode-specific buffer indexes."
76 :link
'(custom-manual "(elisp)Imenu"))
78 (defcustom imenu-use-markers t
79 "Non-nil means use markers instead of integers for Imenu buffer positions.
81 Setting this to nil makes Imenu work a little faster but editing the
82 buffer will make the generated index positions wrong.
84 This might not yet be honored by all index-building functions."
89 (defcustom imenu-max-item-length
60
90 "If a number, truncate Imenu entries to that length."
91 :type
'(choice integer
92 (const :tag
"Unlimited"))
95 (defcustom imenu-auto-rescan nil
96 "Non-nil means Imenu should always rescan the buffers."
100 (defcustom imenu-auto-rescan-maxout
60000
101 "Imenu auto-rescan is disabled in buffers larger than this size (in bytes).
102 This variable is buffer-local."
106 (defvar imenu-always-use-completion-buffer-p nil
)
107 (make-obsolete-variable 'imenu-always-use-completion-buffer-p
108 'imenu-use-popup-menu
"22.1")
110 (defcustom imenu-use-popup-menu
111 (if imenu-always-use-completion-buffer-p
112 (not (eq imenu-always-use-completion-buffer-p
'never
))
114 "Use a popup menu rather than a minibuffer prompt.
115 If nil, always use a minibuffer prompt.
116 If t, always use a popup menu,
117 If `on-mouse' use a popup menu when `imenu' was invoked with the mouse."
118 :type
'(choice (const :tag
"On Mouse" on-mouse
)
119 (const :tag
"Never" nil
)
120 (other :tag
"Always" t
))
123 (defcustom imenu-eager-completion-buffer
124 (not (eq imenu-always-use-completion-buffer-p
'never
))
125 "If non-nil, eagerly popup the completion buffer."
130 (defcustom imenu-after-jump-hook nil
131 "Hooks called after jumping to a place in the buffer.
133 Useful things to use here include `reposition-window', `recenter', and
134 \(lambda () (recenter 0)) to show at top of screen."
139 (defcustom imenu-sort-function nil
140 "The function to use for sorting the index mouse-menu.
142 Affects only the mouse index menu.
144 Set this to nil if you don't want any sorting (faster).
145 The items in the menu are then presented in the order they were found
148 Set it to `imenu--sort-by-name' if you want alphabetic sorting.
150 The function should take two arguments and return t if the first
151 element should come before the second. The arguments are cons cells;
152 \(NAME . POSITION). Look at `imenu--sort-by-name' for an example."
153 :type
'(choice (const :tag
"No sorting" nil
)
154 (const :tag
"Sort by name" imenu--sort-by-name
)
155 (function :tag
"Another function"))
158 (defcustom imenu-max-items
25
159 "Maximum number of elements in a mouse menu for Imenu."
163 ;; No longer used. KFS 2004-10-27
164 ;; (defcustom imenu-scanning-message "Scanning buffer for index (%3d%%)"
165 ;; "*Progress message during the index scanning of the buffer.
166 ;; If non-nil, user gets a message during the scanning of the buffer.
168 ;; Relevant only if the mode-specific function that creates the buffer
169 ;; index use `imenu-progress-message', and not useful if that is fast, in
170 ;; which case you might as well set this to nil."
171 ;; :type '(choice string
172 ;; (const :tag "None" nil))
175 (defcustom imenu-space-replacement
"."
176 "The replacement string for spaces in index names.
177 Used when presenting the index in a completion buffer to make the
178 names work as tokens."
179 :type
'(choice string
(const nil
))
182 (defcustom imenu-level-separator
":"
183 "The separator between index names of different levels.
184 Used for making mouse-menu titles and for flattening nested indexes
185 with name concatenation."
190 (defvar imenu-generic-expression nil
191 "The regex pattern to use for creating a buffer index.
193 If non-nil this pattern is passed to `imenu--generic-function' to
194 create a buffer index. Look there for the documentation of this
197 For example, see the value of `fortran-imenu-generic-expression' used by
198 `fortran-mode' with `imenu-syntax-alist' set locally to give the
199 characters which normally have \"symbol\" syntax \"word\" syntax
201 ;;;###autoload(put 'imenu-generic-expression 'risky-local-variable t)
204 (make-variable-buffer-local 'imenu-generic-expression
)
209 (defvar imenu-create-index-function
'imenu-default-create-index-function
210 "The function to use for creating an index alist of the current buffer.
212 It should be a function that takes no arguments and returns
213 an index alist of the current buffer. The function is
214 called within a `save-excursion'.
216 See `imenu--index-alist' for the format of the buffer index alist.")
218 (make-variable-buffer-local 'imenu-create-index-function
)
221 (defvar imenu-prev-index-position-function
'beginning-of-defun
222 "Function for finding the next index position.
224 If `imenu-create-index-function' is set to
225 `imenu-default-create-index-function', then you must set this variable
226 to a function that will find the next index, looking backwards in the
229 The function should leave point at the place to be connected to the
230 index and it should return nil when it doesn't find another index.")
232 (make-variable-buffer-local 'imenu-prev-index-position-function
)
235 (defvar imenu-extract-index-name-function nil
236 "Function for extracting the index item name, given a position.
238 This function is called after `imenu-prev-index-position-function'
239 finds a position for an index item, with point at that position.
240 It should return the name for that index item.")
242 (make-variable-buffer-local 'imenu-extract-index-name-function
)
245 (defvar imenu-name-lookup-function nil
246 "Function to compare string with index item.
248 This function will be called with two strings, and should return
249 non-nil if they match.
251 If nil, comparison is done with `string='.
252 Set this to some other function for more advanced comparisons,
253 such as \"begins with\" or \"name matches and number of
256 (make-variable-buffer-local 'imenu-name-lookup-function
)
259 (defvar imenu-default-goto-function
'imenu-default-goto-function
260 "The default function called when selecting an Imenu item.
261 The function in this variable is called when selecting a normal index-item.")
263 (make-variable-buffer-local 'imenu-default-goto-function
)
266 (defun imenu--subalist-p (item)
267 (and (consp (cdr item
)) (listp (cadr item
))
268 (not (eq (car (cadr item
)) 'lambda
))))
270 ;; Macro to display a progress message.
271 ;; RELPOS is the relative position to display.
272 ;; If RELPOS is nil, then the relative position in the buffer
274 ;; PREVPOS is the variable in which we store the last position displayed.
275 (defmacro imenu-progress-message
(prevpos &optional relpos reverse
)
277 ;; Made obsolete/empty, as computers are now faster than the eye, and
278 ;; it had problems updating the messages correctly, and could shadow
279 ;; more important messages/prompts in the minibuffer. KFS 2004-10-27.
282 ;; imenu-scanning-message
283 ;; (let ((pos ,(if relpos
285 ;; `(imenu--relative-position ,reverse))))
287 ;; `(> pos (+ 5 ,prevpos)))
289 ;; (message imenu-scanning-message pos)
290 ;; (setq ,prevpos pos)))))
294 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
296 ;;;; Some examples of functions utilizing the framework of this
299 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
301 ;; FIXME: This was the only imenu-example-* definition actually used,
302 ;; by cperl-mode.el. Now cperl-mode has its own copy, so these can
304 (defun imenu-example--name-and-position ()
305 "Return the current/previous sexp and its (beginning) location.
309 ;; [ydi] modified for imenu-use-markers
310 (let ((beg (if imenu-use-markers
(point-marker) (point)))
311 (end (progn (forward-sexp) (point))))
312 (cons (buffer-substring beg end
)
314 (make-obsolete 'imenu-example--name-and-position
315 "use your own function instead." "23.2")
321 (defun imenu-example--lisp-extract-index-name ()
322 ;; Example of a candidate for `imenu-extract-index-name-function'.
323 ;; This will generate a flat index of definitions in a lisp file.
325 (and (looking-at "(def")
331 (end (progn (forward-sexp -
1) (point))))
332 (buffer-substring beg end
)))
334 (make-obsolete 'imenu-example--lisp-extract-index-name
"your own" "23.2")
336 (defun imenu-example--create-lisp-index ()
337 ;; Example of a candidate for `imenu-create-index-function'.
338 ;; It will generate a nested index of definitions.
339 (let ((index-alist '())
340 (index-var-alist '())
341 (index-type-alist '())
342 (index-unknown-alist '())
344 (goto-char (point-max))
345 (imenu-progress-message prev-pos
0)
346 ;; Search for the function
347 (while (beginning-of-defun)
348 (imenu-progress-message prev-pos nil t
)
350 (and (looking-at "(def")
354 ((looking-at "def\\(var\\|const\\)")
356 (push (imenu-example--name-and-position)
358 ((looking-at "def\\(un\\|subst\\|macro\\|advice\\)")
360 (push (imenu-example--name-and-position)
362 ((looking-at "def\\(type\\|struct\\|class\\|ine-condition\\)")
364 (if (= (char-after (1- (point))) ?\
))
369 (push (imenu-example--name-and-position)
373 (push (imenu-example--name-and-position)
374 index-unknown-alist
)))))))
375 (imenu-progress-message prev-pos
100)
377 (push (cons "Variables" index-var-alist
)
379 (and index-type-alist
380 (push (cons "Types" index-type-alist
)
382 (and index-unknown-alist
383 (push (cons "Syntax-unknown" index-unknown-alist
)
386 (make-obsolete 'imenu-example--create-lisp-index
"your own" "23.2")
388 ;; Regular expression to find C functions
389 (defvar imenu-example--function-name-regexp-c
391 "^[a-zA-Z0-9]+[ \t]?" ; type specs; there can be no
392 "\\([a-zA-Z0-9_*]+[ \t]+\\)?" ; more than 3 tokens, right?
393 "\\([a-zA-Z0-9_*]+[ \t]+\\)?"
394 "\\([*&]+[ \t]*\\)?" ; pointer
395 "\\([a-zA-Z0-9_*]+\\)[ \t]*(" ; name
398 (defun imenu-example--create-c-index (&optional regexp
)
399 (let ((index-alist '())
401 (goto-char (point-min))
402 (imenu-progress-message prev-pos
0)
403 ;; Search for the function
405 (while (re-search-forward
406 (or regexp imenu-example--function-name-regexp-c
)
408 (imenu-progress-message prev-pos
)
411 (goto-char (scan-sexps (point) 1))
412 (setq char
(following-char)))
413 ;; Skip this function name if it is a prototype declaration.
414 (if (not (eq char ?\
;))
415 (push (imenu-example--name-and-position) index-alist
))))
416 (imenu-progress-message prev-pos
100)
417 (nreverse index-alist
)))
418 (make-obsolete 'imenu-example--create-c-index
"your own" "23.2")
420 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
422 ;;; Internal variables
424 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
426 ;; The item to use in the index for rescanning the buffer.
427 (defconst imenu--rescan-item
'("*Rescan*" . -
99))
429 ;; The latest buffer index.
431 (defvar imenu--index-alist nil
432 "The buffer index alist computed for this buffer in Imenu.
434 Simple elements in the alist look like (INDEX-NAME . POSITION).
435 POSITION is the buffer position of the item; to go to the item
436 is simply to move point to that position.
438 Special elements look like (INDEX-NAME POSITION FUNCTION ARGUMENTS...).
439 To \"go to\" a special element means applying FUNCTION
440 to INDEX-NAME, POSITION, and the ARGUMENTS.
442 A nested sub-alist element looks like (INDEX-NAME SUB-ALIST).
443 The function `imenu--subalist-p' tests an element and returns t
444 if it is a sub-alist.
446 There is one simple element with negative POSITION; selecting that
447 element recalculates the buffer's index alist.")
448 ;;;###autoload(put 'imenu--index-alist 'risky-local-variable t)
450 (make-variable-buffer-local 'imenu--index-alist
)
452 (defvar imenu--last-menubar-index-alist nil
453 "The latest buffer index alist used to update the menu bar menu.")
455 (make-variable-buffer-local 'imenu--last-menubar-index-alist
)
457 ;; History list for 'jump-to-function-in-buffer'.
458 ;; Making this buffer local caused it not to work!
459 (defvar imenu--history-list nil
)
461 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
463 ;;; Internal support functions
465 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
469 ;;; Sorts the items depending on their index name.
470 ;;; An item looks like (NAME . POSITION).
472 (defun imenu--sort-by-name (item1 item2
)
473 (string-lessp (car item1
) (car item2
)))
475 (defun imenu--sort-by-position (item1 item2
)
476 (< (cdr item1
) (cdr item2
)))
478 (defun imenu--relative-position (&optional reverse
)
479 ;; Support function to calculate relative position in buffer
480 ;; Beginning of buffer is 0 and end of buffer is 100
481 ;; If REVERSE is non-nil then the beginning is 100 and the end is 0.
483 (total (buffer-size)))
484 (and reverse
(setq pos
(- total pos
)))
486 ;; Avoid overflow from multiplying by 100!
487 (/ (1- pos
) (max (/ total
100) 1))
488 (/ (* 100 (1- pos
)) (max total
1)))))
490 ;; Split LIST into sublists of max length N.
491 ;; Example (imenu--split '(1 2 3 4 5 6 7 8) 3)-> '((1 2 3) (4 5 6) (7 8))
493 ;; The returned list DOES NOT share structure with LIST.
494 (defun imenu--split (list n
)
500 (push (pop remain
) sublist
)
503 ;; We have finished a sublist
504 (progn (push (nreverse sublist
) result
)
506 (setq sublist
'()))))
507 ;; There might be a sublist (if the length of LIST mod n is != 0)
508 ;; that has to be added to the result list.
510 (push (nreverse sublist
) result
))
513 ;;; Split the alist MENULIST into a nested alist, if it is long enough.
514 ;;; In any case, add TITLE to the front of the alist.
515 ;;; If IMENU--RESCAN-ITEM is present in MENULIST, it is moved to the
516 ;;; beginning of the returned alist.
518 ;;; The returned alist DOES NOT share structure with MENULIST.
519 (defun imenu--split-menu (menulist title
)
520 (let ((menulist (copy-sequence menulist
))
522 (if (memq imenu--rescan-item menulist
)
523 (setq keep-at-top
(list imenu--rescan-item
)
524 menulist
(delq imenu--rescan-item menulist
)))
527 (when (imenu--subalist-p item
)
528 (push item keep-at-top
)
529 (setq menulist
(delq item menulist
))))
530 (if imenu-sort-function
531 (setq menulist
(sort menulist imenu-sort-function
)))
532 (if (> (length menulist
) imenu-max-items
)
536 (cons (format "From: %s" (caar menu
)) menu
))
537 (imenu--split menulist imenu-max-items
))))
539 (nconc (nreverse keep-at-top
) menulist
))))
541 ;;; Split up each long alist that are nested within ALIST
542 ;;; into nested alists.
544 ;;; Return a split and sorted copy of ALIST. The returned alist DOES
545 ;;; NOT share structure with ALIST.
546 (defun imenu--split-submenus (alist)
552 (imenu--split-menu (cdr elt
) (car elt
))
556 ;;; Truncate all strings in MENULIST to imenu-max-item-length
557 (defun imenu--truncate-items (menulist)
562 (imenu--truncate-items (cdr item
)))
563 ;; truncate if necessary
564 ((and (numberp imenu-max-item-length
)
565 (> (length (car item
)) imenu-max-item-length
))
566 (setcar item
(substring (car item
) 0 imenu-max-item-length
))))))
570 (defun imenu--make-index-alist (&optional noerror
)
571 "Create an index alist for the definitions in the current buffer.
572 This works by using the hook function `imenu-create-index-function'.
573 Report an error if the list is empty unless NOERROR is supplied and
576 See `imenu--index-alist' for the format of the index alist."
577 (or (and imenu--index-alist
578 (or (not imenu-auto-rescan
)
579 (and imenu-auto-rescan
580 (> (buffer-size) imenu-auto-rescan-maxout
))))
581 ;; Get the index; truncate if necessary
583 (setq imenu--index-alist
587 (funcall imenu-create-index-function
))))
588 (imenu--truncate-items imenu--index-alist
)))
589 (or imenu--index-alist noerror
590 (error "No items suitable for an index found in this buffer"))
591 (or imenu--index-alist
592 (setq imenu--index-alist
(list nil
)))
593 ;; Add a rescan option to the index.
594 (cons imenu--rescan-item imenu--index-alist
))
596 ;;; Find all markers in alist and makes
597 ;;; them point nowhere.
598 ;;; The top-level call uses nil as the argument;
599 ;;; non-nil arguments are in recursive calls.
600 (defvar imenu--cleanup-seen
)
602 (defun imenu--cleanup (&optional alist
)
603 ;; If alist is provided use that list.
604 ;; If not, empty the table of lists already seen
605 ;; and use imenu--index-alist.
607 (setq imenu--cleanup-seen
(cons alist imenu--cleanup-seen
))
608 (setq alist imenu--index-alist imenu--cleanup-seen
(list alist
)))
614 ((markerp (cdr item
))
615 (set-marker (cdr item
) nil
))
616 ;; Don't process one alist twice.
617 ((memq (cdr item
) imenu--cleanup-seen
))
618 ((imenu--subalist-p item
)
619 (imenu--cleanup (cdr item
)))))
623 (defun imenu--create-keymap (title alist
&optional cmd
)
627 (list* (car item
) (car item
)
629 ((imenu--subalist-p item
)
630 (imenu--create-keymap (car item
) (cdr item
) cmd
))
632 `(lambda () (interactive)
633 ,(if cmd
`(,cmd
',item
) (list 'quote item
)))))))
636 (defun imenu--in-alist (str alist
)
637 "Check whether the string STR is contained in multi-level ALIST."
638 (let (elt head tail res
)
641 (setq elt
(car alist
)
645 ;; A nested ALIST element looks like
646 ;; (INDEX-NAME (INDEX-NAME . INDEX-POSITION) ...)
647 ;; while a bottom-level element looks like
648 ;; (INDEX-NAME . INDEX-POSITION)
649 ;; We are only interested in the bottom-level elements, so we need to
650 ;; recurse if TAIL is a list.
652 (if (setq res
(imenu--in-alist str tail
))
654 ((if imenu-name-lookup-function
655 (funcall imenu-name-lookup-function str head
)
657 (setq alist nil res elt
))))
660 (defvar imenu-syntax-alist nil
661 "Alist of syntax table modifiers to use while in `imenu--generic-function'.
663 The car of the assocs may be either a character or a string and the
664 cdr is a syntax description appropriate for `modify-syntax-entry'. For
665 a string, all the characters in the string get the specified syntax.
667 This is typically used to give word syntax to characters which
668 normally have symbol syntax to simplify `imenu-expression'
669 and speed-up matching.")
671 (make-variable-buffer-local 'imenu-syntax-alist
)
673 (defun imenu-default-create-index-function ()
674 "Default function to create an index alist of the current buffer.
676 The most general method is to move point to end of buffer, then repeatedly call
677 `imenu-prev-index-position-function' and `imenu-extract-index-name-function'.
678 All the results returned by the latter are gathered into an index alist.
679 This method is used if those two variables are non-nil.
681 The alternate method, which is the one most often used, is to call
682 `imenu--generic-function' with `imenu-generic-expression' as argument."
683 ;; These should really be done by setting imenu-create-index-function
684 ;; in these major modes. But save that change for later.
685 (cond ((and imenu-prev-index-position-function
686 imenu-extract-index-name-function
)
687 (let ((index-alist '()) (pos (point))
689 (goto-char (point-max))
690 (imenu-progress-message prev-pos
0 t
)
691 ;; Search for the function
692 (while (funcall imenu-prev-index-position-function
)
693 (when (= pos
(point))
694 (error "Infinite loop at %s:%d: imenu-prev-index-position-function does not move point" (buffer-name) pos
))
696 (imenu-progress-message prev-pos nil t
)
698 (setq name
(funcall imenu-extract-index-name-function
)))
700 ;; [ydi] updated for imenu-use-markers
701 (push (cons name
(if imenu-use-markers
(point-marker) (point)))
703 (imenu-progress-message prev-pos
100 t
)
705 ;; Use generic expression if possible.
706 ((and imenu-generic-expression
)
707 (imenu--generic-function imenu-generic-expression
))
709 (error "This buffer cannot use `imenu-default-create-index-function'"))))
712 ;;; Generic index gathering function.
715 (defvar imenu-case-fold-search t
716 "Defines whether `imenu--generic-function' should fold case when matching.
718 This variable should be set (only) by initialization code
719 for modes which use `imenu--generic-function'. If it is not set, but
720 `font-lock-defaults' is set, then font-lock's setting is used.")
722 (make-variable-buffer-local 'imenu-case-fold-search
)
724 ;; This function can be called with quitting disabled,
725 ;; so it needs to be careful never to loop!
726 (defun imenu--generic-function (patterns)
727 "Return an index alist of the current buffer based on PATTERNS.
729 PATTERNS is an alist with elements that look like this:
730 (MENU-TITLE REGEXP INDEX)
732 (MENU-TITLE REGEXP INDEX FUNCTION ARGUMENTS...)
733 with zero or more ARGUMENTS. The former format creates a simple
734 element in the index alist when it matches; the latter creates a
735 special element of the form (INDEX-NAME POSITION-MARKER FUNCTION
736 ARGUMENTS...) with FUNCTION and ARGUMENTS copied from PATTERNS.
738 MENU-TITLE is a string used as the title for the submenu or nil
739 if the entries are not nested.
741 REGEXP is a regexp that should match a construct in the buffer
742 that is to be displayed in the menu; i.e., function or variable
743 definitions, etc. It contains a substring which is the name to
744 appear in the menu. See the info section on Regexps for more
745 information. REGEXP may also be a function, called without
746 arguments. It is expected to search backwards. It shall return
747 true and set `match-data' if it finds another element.
749 INDEX points to the substring in REGEXP that contains the
750 name (of the function, variable or type) that is to appear in the
753 The variable `imenu-case-fold-search' determines whether or not the
754 regexp matches are case sensitive, and `imenu-syntax-alist' can be
755 used to alter the syntax table for the search.
757 See `lisp-imenu-generic-expression' for an example of PATTERNS.
759 Returns an index of the current buffer as an alist. The elements in
761 (INDEX-NAME . INDEX-POSITION)
763 (INDEX-NAME INDEX-POSITION FUNCTION ARGUMENTS...)
764 They may also be nested index alists like:
765 (INDEX-NAME . INDEX-ALIST)
766 depending on PATTERNS."
768 (let ((index-alist (list 'dummy
))
770 (case-fold-search (if (or (local-variable-p 'imenu-case-fold-search
)
771 (not (local-variable-p 'font-lock-defaults
)))
772 imenu-case-fold-search
773 (nth 2 font-lock-defaults
)))
774 (old-table (syntax-table))
775 (table (copy-syntax-table (syntax-table)))
776 (slist imenu-syntax-alist
))
777 ;; Modify the syntax table used while matching regexps.
779 ;; The character(s) to modify may be a single char or a string.
780 (if (numberp (car syn
))
781 (modify-syntax-entry (car syn
) (cdr syn
) table
)
783 (modify-syntax-entry c
(cdr syn
) table
))
785 (goto-char (point-max))
786 (imenu-progress-message prev-pos
0 t
)
787 (unwind-protect ; for syntax table
789 (set-syntax-table table
)
791 ;; map over the elements of imenu-generic-expression
792 ;; (typically functions, variables ...)
793 (dolist (pat patterns
)
794 (let ((menu-title (car pat
))
797 (function (nth 3 pat
))
798 (rest (nthcdr 4 pat
))
800 ;; Go backwards for convenience of adding items in order.
801 (goto-char (point-max))
802 (while (and (if (functionp regexp
)
804 (re-search-backward regexp nil t
))
805 ;; Exit the loop if we get an empty match,
806 ;; because it means a bad regexp was specified.
807 (not (= (match-beginning 0) (match-end 0))))
809 ;; Record the start of the line in which the match starts.
810 ;; That's the official position of this definition.
811 (goto-char (match-beginning index
))
814 (imenu-progress-message prev-pos nil t
)
815 ;; Add this sort of submenu only when we've found an
816 ;; item for it, avoiding empty, duff menus.
817 (unless (assoc menu-title index-alist
)
818 (push (list menu-title
) index-alist
))
819 (if imenu-use-markers
820 (setq beg
(copy-marker beg
)))
823 (nconc (list (match-string-no-properties index
)
826 (cons (match-string-no-properties index
)
828 ;; This is the desired submenu,
829 ;; starting with its title (or nil).
830 (menu (assoc menu-title index-alist
)))
831 ;; Insert the item unless it is already present.
832 (unless (member item
(cdr menu
))
834 (cons item
(cdr menu
)))))
835 ;; Go to the start of the match, to make sure we
836 ;; keep making progress backwards.
838 (set-syntax-table old-table
)))
839 (imenu-progress-message prev-pos
100 t
)
840 ;; Sort each submenu by position.
841 ;; This is in case one submenu gets items from two different regexps.
842 (dolist (item index-alist
)
844 (setcdr item
(sort (cdr item
) 'imenu--sort-by-position
))))
845 (let ((main-element (assq nil index-alist
)))
846 (nconc (delq main-element
(delq 'dummy index-alist
))
847 (cdr main-element
)))))
849 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
851 ;;; The main functions for this package!
853 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
855 ;; See also info-lookup-find-item
856 (defun imenu-find-default (guess completions
)
857 "Fuzzily find an item based on GUESS inside the alist COMPLETIONS."
859 (let ((case-fold-search t
))
860 (if (assoc guess completions
) guess
861 (dolist (re (list (concat "\\`" (regexp-quote guess
) "\\'")
862 (concat "\\`" (regexp-quote guess
))
863 (concat (regexp-quote guess
) "\\'")
864 (regexp-quote guess
)))
865 (dolist (x completions
)
866 (if (string-match re
(car x
)) (throw 'found
(car x
)))))))))
868 (defun imenu--completion-buffer (index-alist &optional prompt
)
869 "Let the user select from INDEX-ALIST in a completion buffer with PROMPT.
871 Return one of the entries in index-alist or nil."
872 ;; Create a list for this buffer only when needed.
873 (let ((name (thing-at-point 'symbol
))
875 (prepared-index-alist
876 (if (not imenu-space-replacement
) index-alist
879 (cons (subst-char-in-string ?\s
(aref imenu-space-replacement
0)
884 (setq name
(or (imenu-find-default name prepared-index-alist
) name
)))
886 ((and name
(imenu--in-alist name prepared-index-alist
))
887 (setq prompt
(format "Index item (default %s): " name
)))
888 (t (setq prompt
"Index item: ")))
889 (let ((minibuffer-setup-hook minibuffer-setup-hook
))
890 ;; Display the completion buffer.
891 (if (not imenu-eager-completion-buffer
)
892 (add-hook 'minibuffer-setup-hook
'minibuffer-completion-help
))
893 (setq name
(completing-read prompt
895 nil t nil
'imenu--history-list name
)))
898 (setq choice
(assoc name prepared-index-alist
))
899 (if (imenu--subalist-p choice
)
900 (imenu--completion-buffer (cdr choice
) prompt
)
903 (defun imenu--mouse-menu (index-alist event
&optional title
)
904 "Let the user select from a buffer index from a mouse menu.
906 INDEX-ALIST is the buffer index and EVENT is a mouse event.
908 Returns t for rescan and otherwise an element or subelement of INDEX-ALIST."
909 (setq index-alist
(imenu--split-submenus index-alist
))
910 (let* ((menu (imenu--split-menu index-alist
(or title
(buffer-name))))
911 (map (imenu--create-keymap (car menu
)
912 (cdr (if (< 1 (length (cdr menu
)))
914 (car (cdr menu
)))))))
915 (popup-menu map event
)))
917 (defun imenu-choose-buffer-index (&optional prompt alist
)
918 "Let the user select from a buffer index and return the chosen index.
920 If the user originally activated this function with the mouse, a mouse
921 menu is used. Otherwise a completion buffer is used and the user is
922 prompted with PROMPT.
924 If you call this function with index alist ALIST, then it lets the user
927 With no index alist ALIST, it calls `imenu--make-index-alist' to
928 create the index alist.
930 If `imenu-use-popup-menu' is nil, then the completion buffer
931 is always used, no matter if the mouse was used or not.
933 The returned value is of the form (INDEX-NAME . INDEX-POSITION)."
935 (mouse-triggered (listp last-nonmenu-event
))
937 ;; If selected by mouse, see to that the window where the mouse is
938 ;; really is selected.
940 (not (equal last-nonmenu-event
'(menu-bar)))
941 (let ((window (posn-window (event-start last-nonmenu-event
))))
942 (or (framep window
) (null window
) (select-window window
))))
943 ;; Create a list for this buffer only when needed.
945 (setq index-alist
(if alist alist
(imenu--make-index-alist)))
947 (if (and imenu-use-popup-menu
948 (or (eq imenu-use-popup-menu t
) mouse-triggered
))
949 (imenu--mouse-menu index-alist last-nonmenu-event
)
950 (imenu--completion-buffer index-alist prompt
)))
951 (and (equal result imenu--rescan-item
)
953 (setq result t imenu--index-alist nil
)))
957 (defun imenu-add-to-menubar (name)
958 "Add an `imenu' entry to the menu bar for the current buffer.
959 NAME is a string used to name the menu bar item.
960 See the command `imenu' for more information."
961 (interactive "sImenu menu item name: ")
962 (if (or (and imenu-prev-index-position-function
963 imenu-extract-index-name-function
)
964 imenu-generic-expression
965 (not (eq imenu-create-index-function
966 'imenu-default-create-index-function
)))
967 (let ((newmap (make-sparse-keymap)))
968 (set-keymap-parent newmap
(current-local-map))
969 (setq imenu--last-menubar-index-alist nil
)
970 (define-key newmap
[menu-bar index
]
971 `(menu-item ,name
,(make-sparse-keymap "Imenu")))
972 (use-local-map newmap
)
973 (add-hook 'menu-bar-update-hook
'imenu-update-menubar
))
974 (error "The mode `%s' does not support Imenu"
975 (format-mode-line mode-name
))))
978 (defun imenu-add-menubar-index ()
979 "Add an Imenu \"Index\" entry on the menu bar for the current buffer.
981 A trivial interface to `imenu-add-to-menubar' suitable for use in a hook."
983 (imenu-add-to-menubar "Index"))
985 (defvar imenu-buffer-menubar nil
)
987 (defvar imenu-menubar-modified-tick
0
988 "The value of (buffer-chars-modified-tick) as of the last call
989 to `imenu-update-menubar'.")
990 (make-variable-buffer-local 'imenu-menubar-modified-tick
)
992 (defun imenu-update-menubar ()
993 (when (and (current-local-map)
994 (keymapp (lookup-key (current-local-map) [menu-bar index
]))
995 (/= (buffer-chars-modified-tick) imenu-menubar-modified-tick
))
996 (setq imenu-menubar-modified-tick
(buffer-chars-modified-tick))
997 (let ((index-alist (imenu--make-index-alist t
)))
998 ;; Don't bother updating if the index-alist has not changed
999 ;; since the last time we did it.
1000 (unless (equal index-alist imenu--last-menubar-index-alist
)
1001 (let (menu menu1 old
)
1002 (setq imenu--last-menubar-index-alist index-alist
)
1003 (setq index-alist
(imenu--split-submenus index-alist
))
1004 (setq menu
(imenu--split-menu index-alist
1006 (setq menu1
(imenu--create-keymap (car menu
)
1007 (cdr (if (< 1 (length (cdr menu
)))
1010 'imenu--menubar-select
))
1011 (setq old
(lookup-key (current-local-map) [menu-bar index
]))
1012 (setcdr old
(cdr menu1
)))))))
1014 (defun imenu--menubar-select (item)
1015 "Use Imenu to select the function or variable named in this menu ITEM."
1016 (if (equal item imenu--rescan-item
)
1019 ;; Make sure imenu-update-menubar redoes everything.
1020 (setq imenu-menubar-modified-tick -
1)
1021 (setq imenu--index-alist nil
)
1022 (setq imenu--last-menubar-index-alist nil
)
1023 (imenu-update-menubar)
1028 (defun imenu-default-goto-function (name position
&optional rest
)
1029 "Move to the given position.
1031 NAME is ignored. POSITION is where to move. REST is also ignored.
1032 The ignored args just make this function have the same interface as a
1033 function placed in a special index-item."
1034 (if (or (< position
(point-min))
1035 (> position
(point-max)))
1036 ;; widen if outside narrowing
1038 (goto-char position
))
1041 (defun imenu (index-item)
1042 "Jump to a place in the buffer chosen using a buffer menu or mouse menu.
1043 INDEX-ITEM specifies the position. See `imenu-choose-buffer-index'
1044 for more information."
1045 (interactive (list (imenu-choose-buffer-index)))
1046 ;; Convert a string to an alist element.
1047 (if (stringp index-item
)
1048 (setq index-item
(assoc index-item
(imenu--make-index-alist))))
1051 (let* ((is-special-item (listp (cdr index-item
)))
1054 (nth 2 index-item
) imenu-default-goto-function
))
1055 (position (if is-special-item
1056 (cadr index-item
) (cdr index-item
)))
1057 (rest (if is-special-item
(cddr index-item
))))
1058 (apply function
(car index-item
) position rest
))
1059 (run-hooks 'imenu-after-jump-hook
)))
1062 '("^No items suitable for an index found in this buffer$"
1063 "^This buffer cannot use `imenu-default-create-index-function'$"
1064 "^The mode `.*' does not support Imenu$"))
1065 (add-to-list 'debug-ignored-errors mess
))
1069 ;; arch-tag: 98a2f5f5-4b91-4704-b18c-3aacf77d77a7
1070 ;;; imenu.el ends here