* lisp/subr.el (read-passwd): Use read-string.
[bpt/emacs.git] / lisp / imenu.el
CommitLineData
55535639 1;;; imenu.el --- framework for mode-specific buffer indexes
0a688fd0 2
acaf905b 3;; Copyright (C) 1994-1998, 2001-2012 Free Software Foundation, Inc.
0a688fd0
RS
4
5;; Author: Ake Stenhoff <etxaksf@aom.ericsson.se>
6;; Lars Lindberg <lli@sypro.cap.se>
e4874521 7;; Maintainer: FSF
0a688fd0 8;; Created: 8 Feb 1994
f5f727f8 9;; Keywords: tools convenience
b578f267
EN
10
11;; This file is part of GNU Emacs.
12
eb3fa2cf 13;; GNU Emacs is free software: you can redistribute it and/or modify
0a688fd0 14;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
b578f267
EN
17
18;; GNU Emacs is distributed in the hope that it will be useful,
0a688fd0
RS
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
b578f267 22
0a688fd0 23;; You should have received a copy of the GNU General Public License
eb3fa2cf 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
0a688fd0
RS
25
26;;; Commentary:
b578f267 27
0a688fd0
RS
28;; Purpose of this package:
29;; To present a framework for mode-specific buffer indexes.
30;; A buffer index is an alist of names and buffer positions.
31;; For instance all functions in a C-file and their positions.
32;;
fe2908be
RS
33;; It is documented in the Emacs Lisp manual.
34;;
0a688fd0
RS
35;; How it works:
36
37;; A mode-specific function is called to generate the index. It is
38;; then presented to the user, who can choose from this index.
39;;
40;; The package comes with a set of example functions for how to
41;; utilize this package.
42
2d24227e
RS
43;; There are *examples* for index gathering functions/regular
44;; expressions for C/C++ and Lisp/Emacs Lisp but it is easy to
45;; customize for other modes. A function for jumping to the chosen
46;; index position is also supplied.
0a688fd0 47
fe2908be
RS
48;;; History:
49;; Thanks go to
26d6bb60
RS
50;; [simon] - Simon Leinen simon@lia.di.epfl.ch
51;; [dean] - Dean Andrews ada@unison.com
fe2908be 52;; [alon] - Alon Albert al@mercury.co.il
7804cd27 53;; [greg] - Greg Thompson gregt@porsche.visix.COM
615b306c 54;; [wolfgang] - Wolfgang Bangerth zcg51122@rpool1.rus.uni-stuttgart.de
056ab244 55;; [kai] - Kai Grossjohann grossjoh@linus.informatik.uni-dortmund.de
af447694 56;; [david] - David M. Smith dsmith@stats.adelaide.edu.au
2d24227e
RS
57;; [christian] - Christian Egli Christian.Egli@hcsd.hac.com
58;; [karl] - Karl Fogel kfogel@floss.life.uiuc.edu
59
55535639 60;;; Code:
b578f267 61
0ee4f8ad 62(eval-when-compile (require 'cl))
0a688fd0
RS
63
64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
65;;;
66;;; Customizable variables
67;;;
68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2d24227e 69
94114394
RS
70(defgroup imenu nil
71 "Mode-specific buffer indexes."
72 :group 'matching
fe2908be 73 :group 'frames
f5f727f8 74 :group 'convenience
fe2908be 75 :link '(custom-manual "(elisp)Imenu"))
94114394
RS
76
77(defcustom imenu-use-markers t
9201cc28 78 "Non-nil means use markers instead of integers for Imenu buffer positions.
fe2908be
RS
79
80Setting this to nil makes Imenu work a little faster but editing the
81buffer will make the generated index positions wrong.
e7c8378c 82
94114394
RS
83This might not yet be honored by all index-building functions."
84 :type 'boolean
85 :group 'imenu)
86
e7c8378c 87
94114394 88(defcustom imenu-max-item-length 60
9201cc28 89 "If a number, truncate Imenu entries to that length."
fe2908be
RS
90 :type '(choice integer
91 (const :tag "Unlimited"))
94114394 92 :group 'imenu)
e7c8378c 93
9df23821 94(defcustom imenu-auto-rescan nil
9201cc28 95 "Non-nil means Imenu should always rescan the buffers."
94114394
RS
96 :type 'boolean
97 :group 'imenu)
2d24227e 98
fe2908be 99(defcustom imenu-auto-rescan-maxout 60000
9201cc28 100 "Imenu auto-rescan is disabled in buffers larger than this size (in bytes).
94114394
RS
101This variable is buffer-local."
102 :type 'integer
103 :group 'imenu)
0a688fd0 104
5988bd27
SM
105(defvar imenu-always-use-completion-buffer-p nil)
106(make-obsolete-variable 'imenu-always-use-completion-buffer-p
bf247b6e 107 'imenu-use-popup-menu "22.1")
5988bd27
SM
108
109(defcustom imenu-use-popup-menu
110 (if imenu-always-use-completion-buffer-p
111 (not (eq imenu-always-use-completion-buffer-p 'never))
112 'on-mouse)
113 "Use a popup menu rather than a minibuffer prompt.
114If nil, always use a minibuffer prompt.
115If t, always use a popup menu,
116If `on-mouse' use a popup menu when `imenu' was invoked with the mouse."
117 :type '(choice (const :tag "On Mouse" on-mouse)
118 (const :tag "Never" nil)
f5307782
JB
119 (other :tag "Always" t))
120 :group 'imenu)
5988bd27
SM
121
122(defcustom imenu-eager-completion-buffer
123 (not (eq imenu-always-use-completion-buffer-p 'never))
124 "If non-nil, eagerly popup the completion buffer."
977bbd4d
RS
125 :type 'boolean
126 :group 'imenu
bf247b6e 127 :version "22.1")
0a688fd0 128
020e8fdf 129(defcustom imenu-after-jump-hook nil
9201cc28 130 "Hooks called after jumping to a place in the buffer.
020e8fdf
PR
131
132Useful things to use here include `reposition-window', `recenter', and
133\(lambda () (recenter 0)) to show at top of screen."
134 :type 'hook
135 :group 'imenu)
136
31f2a064 137;;;###autoload
94114394 138(defcustom imenu-sort-function nil
9201cc28 139 "The function to use for sorting the index mouse-menu.
0a688fd0
RS
140
141Affects only the mouse index menu.
142
143Set this to nil if you don't want any sorting (faster).
144The items in the menu are then presented in the order they were found
145in the buffer.
146
0ee4f8ad 147Set it to `imenu--sort-by-name' if you want alphabetic sorting.
0a688fd0 148
c01ee596 149The function should take two arguments and return t if the first
0a688fd0 150element should come before the second. The arguments are cons cells;
94114394 151\(NAME . POSITION). Look at `imenu--sort-by-name' for an example."
fe2908be 152 :type '(choice (const :tag "No sorting" nil)
df90db13 153 (const :tag "Sort by name" imenu--sort-by-name)
fe2908be 154 (function :tag "Another function"))
94114394 155 :group 'imenu)
0a688fd0 156
94114394 157(defcustom imenu-max-items 25
9201cc28 158 "Maximum number of elements in a mouse menu for Imenu."
94114394
RS
159 :type 'integer
160 :group 'imenu)
0a688fd0 161
9d4af4c7
KS
162;; No longer used. KFS 2004-10-27
163;; (defcustom imenu-scanning-message "Scanning buffer for index (%3d%%)"
9a7cfdb8 164;; "Progress message during the index scanning of the buffer.
9d4af4c7
KS
165;; If non-nil, user gets a message during the scanning of the buffer.
166;;
167;; Relevant only if the mode-specific function that creates the buffer
168;; index use `imenu-progress-message', and not useful if that is fast, in
169;; which case you might as well set this to nil."
170;; :type '(choice string
171;; (const :tag "None" nil))
172;; :group 'imenu)
0a688fd0 173
a742f6cc 174(defcustom imenu-space-replacement "."
9201cc28 175 "The replacement string for spaces in index names.
a742f6cc 176Used when presenting the index in a completion buffer to make the
94114394 177names work as tokens."
5988bd27 178 :type '(choice string (const nil))
94114394 179 :group 'imenu)
0a688fd0 180
94114394 181(defcustom imenu-level-separator ":"
9201cc28 182 "The separator between index names of different levels.
0a688fd0 183Used for making mouse-menu titles and for flattening nested indexes
94114394
RS
184with name concatenation."
185 :type 'string
186 :group 'imenu)
0a688fd0 187
2d24227e 188;;;###autoload
615b306c 189(defvar imenu-generic-expression nil
2d24227e
RS
190 "The regex pattern to use for creating a buffer index.
191
fb50d1e9
DP
192If non-nil this pattern is passed to `imenu--generic-function' to
193create a buffer index. Look there for the documentation of this
194pattern's structure.
fe2908be 195
0cdb3baa 196For example, see the value of `fortran-imenu-generic-expression' used by
1447c4b1
DL
197`fortran-mode' with `imenu-syntax-alist' set locally to give the
198characters which normally have \"symbol\" syntax \"word\" syntax
199during matching.")
6dc3311d 200;;;###autoload(put 'imenu-generic-expression 'risky-local-variable t)
2d24227e 201
af5eb153 202;;;###autoload
6c1bf12b 203(make-variable-buffer-local 'imenu-generic-expression)
615b306c 204
0a688fd0
RS
205;;;; Hooks
206
31f2a064 207;;;###autoload
0a688fd0 208(defvar imenu-create-index-function 'imenu-default-create-index-function
98639288 209 "The function to use for creating an index alist of the current buffer.
0a688fd0 210
98639288
RS
211It should be a function that takes no arguments and returns
212an index alist of the current buffer. The function is
213called within a `save-excursion'.
215b077e 214
98639288 215See `imenu--index-alist' for the format of the buffer index alist.")
31f2a064 216;;;###autoload
0a688fd0
RS
217(make-variable-buffer-local 'imenu-create-index-function)
218
31f2a064 219;;;###autoload
68e01f5a 220(defvar imenu-prev-index-position-function 'beginning-of-defun
0a688fd0
RS
221 "Function for finding the next index position.
222
0ee4f8ad
RS
223If `imenu-create-index-function' is set to
224`imenu-default-create-index-function', then you must set this variable
0a688fd0
RS
225to a function that will find the next index, looking backwards in the
226file.
227
228The function should leave point at the place to be connected to the
38357a23 229index and it should return nil when it doesn't find another index.")
31f2a064 230;;;###autoload
68e01f5a 231(make-variable-buffer-local 'imenu-prev-index-position-function)
0a688fd0 232
31f2a064 233;;;###autoload
68e01f5a 234(defvar imenu-extract-index-name-function nil
fe2908be 235 "Function for extracting the index item name, given a position.
35c8b898
RS
236
237This function is called after `imenu-prev-index-position-function'
238finds a position for an index item, with point at that position.
38357a23 239It should return the name for that index item.")
31f2a064 240;;;###autoload
68e01f5a 241(make-variable-buffer-local 'imenu-extract-index-name-function)
0a688fd0 242
020e8fdf
PR
243;;;###autoload
244(defvar imenu-name-lookup-function nil
245 "Function to compare string with index item.
246
247This function will be called with two strings, and should return
248non-nil if they match.
249
250If nil, comparison is done with `string='.
251Set this to some other function for more advanced comparisons,
252such as \"begins with\" or \"name matches and number of
38357a23 253arguments match\".")
020e8fdf
PR
254;;;###autoload
255(make-variable-buffer-local 'imenu-name-lookup-function)
256
31f2a064 257;;;###autoload
37954a9a
RS
258(defvar imenu-default-goto-function 'imenu-default-goto-function
259 "The default function called when selecting an Imenu item.
260The function in this variable is called when selecting a normal index-item.")
31f2a064 261;;;###autoload
37954a9a
RS
262(make-variable-buffer-local 'imenu-default-goto-function)
263
264
215b077e
RS
265(defun imenu--subalist-p (item)
266 (and (consp (cdr item)) (listp (cadr item))
fe2908be 267 (not (eq (car (cadr item)) 'lambda))))
215b077e 268
fe2908be
RS
269;; Macro to display a progress message.
270;; RELPOS is the relative position to display.
271;; If RELPOS is nil, then the relative position in the buffer
272;; is calculated.
273;; PREVPOS is the variable in which we store the last position displayed.
615b306c 274(defmacro imenu-progress-message (prevpos &optional relpos reverse)
9d4af4c7
KS
275
276;; Made obsolete/empty, as computers are now faster than the eye, and
277;; it had problems updating the messages correctly, and could shadow
278;; more important messages/prompts in the minibuffer. KFS 2004-10-27.
279
280;; `(and
281;; imenu-scanning-message
282;; (let ((pos ,(if relpos
283;; relpos
284;; `(imenu--relative-position ,reverse))))
285;; (if ,(if relpos t
286;; `(> pos (+ 5 ,prevpos)))
287;; (progn
288;; (message imenu-scanning-message pos)
289;; (setq ,prevpos pos)))))
290)
615b306c
KH
291
292
293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
294;;;;
295;;;; Some examples of functions utilizing the framework of this
296;;;; package.
297;;;;
298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
299
1c319e77
GM
300;; FIXME: This was the only imenu-example-* definition actually used,
301;; by cperl-mode.el. Now cperl-mode has its own copy, so these can
302;; all be removed.
615b306c 303(defun imenu-example--name-and-position ()
bfbc9ea9
SM
304 "Return the current/previous sexp and its (beginning) location.
305Don't move point."
615b306c
KH
306 (save-excursion
307 (forward-sexp -1)
e7c8378c
RS
308 ;; [ydi] modified for imenu-use-markers
309 (let ((beg (if imenu-use-markers (point-marker) (point)))
310 (end (progn (forward-sexp) (point))))
615b306c 311 (cons (buffer-substring beg end)
e7c8378c 312 beg))))
ce86eeb5
GM
313(make-obsolete 'imenu-example--name-and-position
314 "use your own function instead." "23.2")
615b306c
KH
315
316;;;
317;;; Lisp
fe2908be 318;;;
615b306c
KH
319
320(defun imenu-example--lisp-extract-index-name ()
321 ;; Example of a candidate for `imenu-extract-index-name-function'.
322 ;; This will generate a flat index of definitions in a lisp file.
323 (save-match-data
324 (and (looking-at "(def")
325 (condition-case nil
326 (progn
327 (down-list 1)
328 (forward-sexp 2)
329 (let ((beg (point))
330 (end (progn (forward-sexp -1) (point))))
331 (buffer-substring beg end)))
332 (error nil)))))
1b700bca 333(make-obsolete 'imenu-example--lisp-extract-index-name "your own" "23.2")
615b306c
KH
334
335(defun imenu-example--create-lisp-index ()
336 ;; Example of a candidate for `imenu-create-index-function'.
337 ;; It will generate a nested index of definitions.
338 (let ((index-alist '())
339 (index-var-alist '())
340 (index-type-alist '())
341 (index-unknown-alist '())
342 prev-pos)
343 (goto-char (point-max))
344 (imenu-progress-message prev-pos 0)
345 ;; Search for the function
346 (while (beginning-of-defun)
347 (imenu-progress-message prev-pos nil t)
fe2908be
RS
348 (save-match-data
349 (and (looking-at "(def")
350 (save-excursion
615b306c 351 (down-list 1)
fe2908be 352 (cond
615b306c 353 ((looking-at "def\\(var\\|const\\)")
fe2908be
RS
354 (forward-sexp 2)
355 (push (imenu-example--name-and-position)
356 index-var-alist))
615b306c 357 ((looking-at "def\\(un\\|subst\\|macro\\|advice\\)")
fe2908be
RS
358 (forward-sexp 2)
359 (push (imenu-example--name-and-position)
360 index-alist))
615b306c 361 ((looking-at "def\\(type\\|struct\\|class\\|ine-condition\\)")
fe2908be 362 (forward-sexp 2)
615b306c 363 (if (= (char-after (1- (point))) ?\))
fe2908be 364 (progn
615b306c 365 (forward-sexp -1)
fe2908be 366 (down-list 1)
615b306c 367 (forward-sexp 1)))
fe2908be
RS
368 (push (imenu-example--name-and-position)
369 index-type-alist))
370 (t
371 (forward-sexp 2)
372 (push (imenu-example--name-and-position)
615b306c
KH
373 index-unknown-alist)))))))
374 (imenu-progress-message prev-pos 100)
375 (and index-var-alist
0c20ee61 376 (push (cons "Variables" index-var-alist)
615b306c
KH
377 index-alist))
378 (and index-type-alist
0c20ee61 379 (push (cons "Types" index-type-alist)
615b306c
KH
380 index-alist))
381 (and index-unknown-alist
0c20ee61 382 (push (cons "Syntax-unknown" index-unknown-alist)
615b306c
KH
383 index-alist))
384 index-alist))
1b700bca 385(make-obsolete 'imenu-example--create-lisp-index "your own" "23.2")
615b306c 386
615b306c
KH
387;; Regular expression to find C functions
388(defvar imenu-example--function-name-regexp-c
fe2908be 389 (concat
615b306c
KH
390 "^[a-zA-Z0-9]+[ \t]?" ; type specs; there can be no
391 "\\([a-zA-Z0-9_*]+[ \t]+\\)?" ; more than 3 tokens, right?
392 "\\([a-zA-Z0-9_*]+[ \t]+\\)?"
393 "\\([*&]+[ \t]*\\)?" ; pointer
394 "\\([a-zA-Z0-9_*]+\\)[ \t]*(" ; name
395 ))
396
397(defun imenu-example--create-c-index (&optional regexp)
398 (let ((index-alist '())
399 prev-pos char)
400 (goto-char (point-min))
401 (imenu-progress-message prev-pos 0)
402 ;; Search for the function
403 (save-match-data
404 (while (re-search-forward
405 (or regexp imenu-example--function-name-regexp-c)
406 nil t)
407 (imenu-progress-message prev-pos)
408 (backward-up-list 1)
409 (save-excursion
410 (goto-char (scan-sexps (point) 1))
411 (setq char (following-char)))
412 ;; Skip this function name if it is a prototype declaration.
413 (if (not (eq char ?\;))
414 (push (imenu-example--name-and-position) index-alist))))
415 (imenu-progress-message prev-pos 100)
416 (nreverse index-alist)))
1b700bca 417(make-obsolete 'imenu-example--create-c-index "your own" "23.2")
2d24227e 418
0a688fd0
RS
419;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
420;;;
421;;; Internal variables
422;;;
423;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
424
425;; The item to use in the index for rescanning the buffer.
426(defconst imenu--rescan-item '("*Rescan*" . -99))
427
428;; The latest buffer index.
429;; Buffer local.
35c8b898 430(defvar imenu--index-alist nil
98639288
RS
431 "The buffer index alist computed for this buffer in Imenu.
432
433Simple elements in the alist look like (INDEX-NAME . POSITION).
434POSITION is the buffer position of the item; to go to the item
435is simply to move point to that position.
436
437Special elements look like (INDEX-NAME POSITION FUNCTION ARGUMENTS...).
438To \"go to\" a special element means applying FUNCTION
439to INDEX-NAME, POSITION, and the ARGUMENTS.
440
441A nested sub-alist element looks like (INDEX-NAME SUB-ALIST).
442The function `imenu--subalist-p' tests an element and returns t
443if it is a sub-alist.
444
445There is one simple element with negative POSITION; selecting that
f5aefd63 446element recalculates the buffer's index alist.")
6dc3311d 447;;;###autoload(put 'imenu--index-alist 'risky-local-variable t)
35c8b898 448
0a688fd0
RS
449(make-variable-buffer-local 'imenu--index-alist)
450
0cff96e7 451(defvar imenu--last-menubar-index-alist nil
98639288 452 "The latest buffer index alist used to update the menu bar menu.")
0cff96e7 453
0a8e8bc6
KH
454(make-variable-buffer-local 'imenu--last-menubar-index-alist)
455
0a688fd0 456;; History list for 'jump-to-function-in-buffer'.
6c1bf12b 457;; Making this buffer local caused it not to work!
0a688fd0 458(defvar imenu--history-list nil)
0a688fd0
RS
459
460;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
461;;;
462;;; Internal support functions
463;;;
464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
465
466;;;
467;;; Sort function
468;;; Sorts the items depending on their index name.
c01ee596 469;;; An item looks like (NAME . POSITION).
0a688fd0
RS
470;;;
471(defun imenu--sort-by-name (item1 item2)
472 (string-lessp (car item1) (car item2)))
473
c01ee596
KH
474(defun imenu--sort-by-position (item1 item2)
475 (< (cdr item1) (cdr item2)))
476
0a688fd0
RS
477(defun imenu--relative-position (&optional reverse)
478 ;; Support function to calculate relative position in buffer
479 ;; Beginning of buffer is 0 and end of buffer is 100
480 ;; If REVERSE is non-nil then the beginning is 100 and the end is 0.
481 (let ((pos (point))
482 (total (buffer-size)))
483 (and reverse (setq pos (- total pos)))
484 (if (> total 50000)
485 ;; Avoid overflow from multiplying by 100!
486 (/ (1- pos) (max (/ total 100) 1))
487 (/ (* 100 (1- pos)) (max total 1)))))
488
0a688fd0
RS
489;; Split LIST into sublists of max length N.
490;; Example (imenu--split '(1 2 3 4 5 6 7 8) 3)-> '((1 2 3) (4 5 6) (7 8))
c27c178c
GM
491;;
492;; The returned list DOES NOT share structure with LIST.
0a688fd0
RS
493(defun imenu--split (list n)
494 (let ((remain list)
495 (result '())
496 (sublist '())
497 (i 0))
498 (while remain
499 (push (pop remain) sublist)
500 (incf i)
501 (and (= i n)
502 ;; We have finished a sublist
503 (progn (push (nreverse sublist) result)
504 (setq i 0)
505 (setq sublist '()))))
506 ;; There might be a sublist (if the length of LIST mod n is != 0)
507 ;; that has to be added to the result list.
508 (and sublist
509 (push (nreverse sublist) result))
510 (nreverse result)))
511
0c20ee61
RS
512;;; Split the alist MENULIST into a nested alist, if it is long enough.
513;;; In any case, add TITLE to the front of the alist.
c27c178c
GM
514;;; If IMENU--RESCAN-ITEM is present in MENULIST, it is moved to the
515;;; beginning of the returned alist.
516;;;
517;;; The returned alist DOES NOT share structure with MENULIST.
0a688fd0 518(defun imenu--split-menu (menulist title)
c27c178c
GM
519 (let ((menulist (copy-sequence menulist))
520 keep-at-top tail)
7ebea144 521 (if (memq imenu--rescan-item menulist)
c27c178c 522 (setq keep-at-top (list imenu--rescan-item)
7ebea144
RS
523 menulist (delq imenu--rescan-item menulist)))
524 (setq tail menulist)
0cdb3baa 525 (dolist (item tail)
dd631e8a
SM
526 (when (imenu--subalist-p item)
527 (push item keep-at-top)
528 (setq menulist (delq item menulist))))
7ebea144 529 (if imenu-sort-function
c27c178c 530 (setq menulist (sort menulist imenu-sort-function)))
7ebea144 531 (if (> (length menulist) imenu-max-items)
dd631e8a
SM
532 (setq menulist
533 (mapcar
534 (lambda (menu)
535 (cons (format "From: %s" (caar menu)) menu))
536 (imenu--split menulist imenu-max-items))))
7ebea144
RS
537 (cons title
538 (nconc (nreverse keep-at-top) menulist))))
0c20ee61
RS
539
540;;; Split up each long alist that are nested within ALIST
541;;; into nested alists.
c27c178c
GM
542;;;
543;;; Return a split and sorted copy of ALIST. The returned alist DOES
544;;; NOT share structure with ALIST.
0c20ee61 545(defun imenu--split-submenus (alist)
fe2908be
RS
546 (mapcar (function
547 (lambda (elt)
548 (if (and (consp elt)
549 (stringp (car elt))
550 (listp (cdr elt)))
551 (imenu--split-menu (cdr elt) (car elt))
552 elt)))
0c20ee61 553 alist))
0a688fd0 554
e7c8378c
RS
555;;; Truncate all strings in MENULIST to imenu-max-item-length
556(defun imenu--truncate-items (menulist)
117be359
DL
557 (mapcar (function
558 (lambda (item)
559 (cond
560 ((consp (cdr item))
561 (imenu--truncate-items (cdr item)))
bfbc9ea9
SM
562 ;; truncate if necessary
563 ((and (numberp imenu-max-item-length)
564 (> (length (car item)) imenu-max-item-length))
565 (setcar item (substring (car item) 0 imenu-max-item-length))))))
117be359 566 menulist))
e7c8378c
RS
567
568
0a8e8bc6 569(defun imenu--make-index-alist (&optional noerror)
98639288
RS
570 "Create an index alist for the definitions in the current buffer.
571This works by using the hook function `imenu-create-index-function'.
fe2908be
RS
572Report an error if the list is empty unless NOERROR is supplied and
573non-nil.
574
98639288 575See `imenu--index-alist' for the format of the index alist."
2d24227e
RS
576 (or (and imenu--index-alist
577 (or (not imenu-auto-rescan)
578 (and imenu-auto-rescan
579 (> (buffer-size) imenu-auto-rescan-maxout))))
e7c8378c
RS
580 ;; Get the index; truncate if necessary
581 (progn
582 (setq imenu--index-alist
583 (save-excursion
584 (save-restriction
585 (widen)
586 (funcall imenu-create-index-function))))
587 (imenu--truncate-items imenu--index-alist)))
0a8e8bc6 588 (or imenu--index-alist noerror
6c1bf12b 589 (error "No items suitable for an index found in this buffer"))
0a8e8bc6
KH
590 (or imenu--index-alist
591 (setq imenu--index-alist (list nil)))
0a688fd0
RS
592 ;; Add a rescan option to the index.
593 (cons imenu--rescan-item imenu--index-alist))
79e098ca 594
5d3b0f18
RS
595;;; Find all markers in alist and makes
596;;; them point nowhere.
79e098ca 597;;; The top-level call uses nil as the argument;
d8b8451f 598;;; non-nil arguments are in recursive calls.
79e098ca
RS
599(defvar imenu--cleanup-seen)
600
5d3b0f18 601(defun imenu--cleanup (&optional alist)
fe2908be 602 ;; If alist is provided use that list.
79e098ca
RS
603 ;; If not, empty the table of lists already seen
604 ;; and use imenu--index-alist.
605 (if alist
606 (setq imenu--cleanup-seen (cons alist imenu--cleanup-seen))
607 (setq alist imenu--index-alist imenu--cleanup-seen (list alist)))
608
4818d210 609 (and alist
e26b2a28
DL
610 (mapc
611 (lambda (item)
612 (cond
613 ((markerp (cdr item))
614 (set-marker (cdr item) nil))
615 ;; Don't process one alist twice.
616 ((memq (cdr item) imenu--cleanup-seen))
617 ((imenu--subalist-p item)
618 (imenu--cleanup (cdr item)))))
4818d210 619 alist)
615b306c
KH
620 t))
621
dd631e8a
SM
622(defun imenu--create-keymap (title alist &optional cmd)
623 (list* 'keymap title
624 (mapcar
625 (lambda (item)
626 (list* (car item) (car item)
627 (cond
628 ((imenu--subalist-p item)
629 (imenu--create-keymap (car item) (cdr item) cmd))
630 (t
631 `(lambda () (interactive)
632 ,(if cmd `(,cmd ',item) (list 'quote item)))))))
633 alist)))
2d24227e 634
2d24227e
RS
635(defun imenu--in-alist (str alist)
636 "Check whether the string STR is contained in multi-level ALIST."
637 (let (elt head tail res)
638 (setq res nil)
639 (while alist
fe2908be 640 (setq elt (car alist)
2d24227e 641 tail (cdr elt)
fe2908be
RS
642 alist (cdr alist)
643 head (car elt))
8396299d
RS
644 ;; A nested ALIST element looks like
645 ;; (INDEX-NAME (INDEX-NAME . INDEX-POSITION) ...)
646 ;; while a bottom-level element looks like
647 ;; (INDEX-NAME . INDEX-POSITION)
648 ;; We are only interested in the bottom-level elements, so we need to
649 ;; recurse if TAIL is a list.
650 (cond ((listp tail)
651 (if (setq res (imenu--in-alist str tail))
652 (setq alist nil)))
020e8fdf
PR
653 ((if imenu-name-lookup-function
654 (funcall imenu-name-lookup-function str head)
655 (string= str head))
8396299d 656 (setq alist nil res elt))))
2d24227e
RS
657 res))
658
fea79780 659(defvar imenu-syntax-alist nil
0cdb3baa 660 "Alist of syntax table modifiers to use while in `imenu--generic-function'.
fea79780
DL
661
662The car of the assocs may be either a character or a string and the
23d468da 663cdr is a syntax description appropriate for `modify-syntax-entry'. For
fea79780
DL
664a string, all the characters in the string get the specified syntax.
665
666This is typically used to give word syntax to characters which
90806abc 667normally have symbol syntax to simplify `imenu-expression'
fea79780 668and speed-up matching.")
005913e4 669;;;###autoload
fea79780
DL
670(make-variable-buffer-local 'imenu-syntax-alist)
671
0a688fd0 672(defun imenu-default-create-index-function ()
9201cc28 673 "Default function to create an index alist of the current buffer.
0a688fd0 674
98639288 675The most general method is to move point to end of buffer, then repeatedly call
68e01f5a 676`imenu-prev-index-position-function' and `imenu-extract-index-name-function'.
98639288
RS
677All the results returned by the latter are gathered into an index alist.
678This method is used if those two variables are non-nil.
679
680The alternate method, which is the one most often used, is to call
681`imenu--generic-function' with `imenu-generic-expression' as argument."
3e062f78
RS
682 ;; These should really be done by setting imenu-create-index-function
683 ;; in these major modes. But save that change for later.
e536ef56
KH
684 (cond ((and imenu-prev-index-position-function
685 imenu-extract-index-name-function)
d8b8451f 686 (let ((index-alist '()) (pos (point))
615b306c 687 prev-pos name)
3e062f78 688 (goto-char (point-max))
7dea4e70 689 (imenu-progress-message prev-pos 0 t)
3e062f78 690 ;; Search for the function
fe2908be 691 (while (funcall imenu-prev-index-position-function)
d8b8451f
SS
692 (when (= pos (point))
693 (error "Infinite loop at %s:%d: imenu-prev-index-position-function does not move point" (buffer-name) pos))
694 (setq pos (point))
7dea4e70 695 (imenu-progress-message prev-pos nil t)
3e062f78
RS
696 (save-excursion
697 (setq name (funcall imenu-extract-index-name-function)))
698 (and (stringp name)
e7c8378c
RS
699 ;; [ydi] updated for imenu-use-markers
700 (push (cons name (if imenu-use-markers (point-marker) (point)))
701 index-alist)))
7dea4e70 702 (imenu-progress-message prev-pos 100 t)
615b306c
KH
703 index-alist))
704 ;; Use generic expression if possible.
705 ((and imenu-generic-expression)
fe2908be 706 (imenu--generic-function imenu-generic-expression))
615b306c 707 (t
e7c8378c 708 (error "This buffer cannot use `imenu-default-create-index-function'"))))
0a688fd0 709
615b306c
KH
710;;;
711;;; Generic index gathering function.
712;;;
2d24227e 713
73f48953
DL
714(defvar imenu-case-fold-search t
715 "Defines whether `imenu--generic-function' should fold case when matching.
716
0cdb3baa 717This variable should be set (only) by initialization code
95e60ff9
SM
718for modes which use `imenu--generic-function'. If it is not set, but
719`font-lock-defaults' is set, then font-lock's setting is used.")
fe2908be 720;;;###autoload
73f48953
DL
721(make-variable-buffer-local 'imenu-case-fold-search)
722
71eb6308
RS
723;; This function can be called with quitting disabled,
724;; so it needs to be careful never to loop!
2d24227e 725(defun imenu--generic-function (patterns)
98639288 726 "Return an index alist of the current buffer based on PATTERNS.
2d24227e 727
fe2908be 728PATTERNS is an alist with elements that look like this:
fb50d1e9 729 (MENU-TITLE REGEXP INDEX)
61567afa
LK
730or like this:
731 (MENU-TITLE REGEXP INDEX FUNCTION ARGUMENTS...)
fb50d1e9
DP
732with zero or more ARGUMENTS. The former format creates a simple
733element in the index alist when it matches; the latter creates a
98639288
RS
734special element of the form (INDEX-NAME POSITION-MARKER FUNCTION
735ARGUMENTS...) with FUNCTION and ARGUMENTS copied from PATTERNS.
fb50d1e9
DP
736
737MENU-TITLE is a string used as the title for the submenu or nil
738if the entries are not nested.
739
740REGEXP is a regexp that should match a construct in the buffer
741that is to be displayed in the menu; i.e., function or variable
742definitions, etc. It contains a substring which is the name to
743appear in the menu. See the info section on Regexps for more
744information. REGEXP may also be a function, called without
745arguments. It is expected to search backwards. It shall return
4837b516 746true and set `match-data' if it finds another element.
fb50d1e9
DP
747
748INDEX points to the substring in REGEXP that contains the
749name (of the function, variable or type) that is to appear in the
750menu.
2d24227e 751
fb50d1e9
DP
752The variable `imenu-case-fold-search' determines whether or not the
753regexp matches are case sensitive, and `imenu-syntax-alist' can be
754used to alter the syntax table for the search.
2d24227e 755
fe2908be 756See `lisp-imenu-generic-expression' for an example of PATTERNS.
2d24227e 757
6c1bf12b 758Returns an index of the current buffer as an alist. The elements in
61567afa
LK
759the alist look like:
760 (INDEX-NAME . INDEX-POSITION)
761or like:
762 (INDEX-NAME INDEX-POSITION FUNCTION ARGUMENTS...)
9d4af4c7 763They may also be nested index alists like:
61567afa
LK
764 (INDEX-NAME . INDEX-ALIST)
765depending on PATTERNS."
2d24227e
RS
766
767 (let ((index-alist (list 'dummy))
1cade2b6 768 prev-pos
95e60ff9
SM
769 (case-fold-search (if (or (local-variable-p 'imenu-case-fold-search)
770 (not (local-variable-p 'font-lock-defaults)))
771 imenu-case-fold-search
772 (nth 2 font-lock-defaults)))
fea79780
DL
773 (old-table (syntax-table))
774 (table (copy-syntax-table (syntax-table)))
775 (slist imenu-syntax-alist))
776 ;; Modify the syntax table used while matching regexps.
0cdb3baa 777 (dolist (syn slist)
fe2908be 778 ;; The character(s) to modify may be a single char or a string.
0cdb3baa
SM
779 (if (numberp (car syn))
780 (modify-syntax-entry (car syn) (cdr syn) table)
5b89a8c9
GM
781 (mapc (lambda (c)
782 (modify-syntax-entry c (cdr syn) table))
783 (car syn))))
615b306c
KH
784 (goto-char (point-max))
785 (imenu-progress-message prev-pos 0 t)
fe2908be
RS
786 (unwind-protect ; for syntax table
787 (save-match-data
788 (set-syntax-table table)
71eb6308 789
fe2908be
RS
790 ;; map over the elements of imenu-generic-expression
791 ;; (typically functions, variables ...)
0cdb3baa
SM
792 (dolist (pat patterns)
793 (let ((menu-title (car pat))
794 (regexp (nth 1 pat))
795 (index (nth 2 pat))
796 (function (nth 3 pat))
8522009e 797 (rest (nthcdr 4 pat))
1cade2b6 798 start beg)
0cdb3baa
SM
799 ;; Go backwards for convenience of adding items in order.
800 (goto-char (point-max))
fb50d1e9
DP
801 (while (and (if (functionp regexp)
802 (funcall regexp)
803 (re-search-backward regexp nil t))
71eb6308
RS
804 ;; Exit the loop if we get an empty match,
805 ;; because it means a bad regexp was specified.
806 (not (= (match-beginning 0) (match-end 0))))
58b00d47 807 (setq start (point))
1cade2b6 808 ;; Record the start of the line in which the match starts.
5f7bccda 809 ;; That's the official position of this definition.
1cade2b6
RS
810 (goto-char (match-beginning index))
811 (beginning-of-line)
812 (setq beg (point))
237470e8
RS
813 (imenu-progress-message prev-pos nil t)
814 ;; Add this sort of submenu only when we've found an
815 ;; item for it, avoiding empty, duff menus.
816 (unless (assoc menu-title index-alist)
817 (push (list menu-title) index-alist))
818 (if imenu-use-markers
1cade2b6 819 (setq beg (copy-marker beg)))
237470e8
RS
820 (let ((item
821 (if function
822 (nconc (list (match-string-no-properties index)
1cade2b6 823 beg function)
237470e8
RS
824 rest)
825 (cons (match-string-no-properties index)
1cade2b6 826 beg)))
237470e8
RS
827 ;; This is the desired submenu,
828 ;; starting with its title (or nil).
829 (menu (assoc menu-title index-alist)))
830 ;; Insert the item unless it is already present.
831 (unless (member item (cdr menu))
832 (setcdr menu
1cade2b6
RS
833 (cons item (cdr menu)))))
834 ;; Go to the start of the match, to make sure we
835 ;; keep making progress backwards.
836 (goto-char start))))
fe2908be 837 (set-syntax-table old-table)))
0c20ee61 838 (imenu-progress-message prev-pos 100 t)
c01ee596
KH
839 ;; Sort each submenu by position.
840 ;; This is in case one submenu gets items from two different regexps.
0cdb3baa
SM
841 (dolist (item index-alist)
842 (when (listp item)
843 (setcdr item (sort (cdr item) 'imenu--sort-by-position))))
0c20ee61 844 (let ((main-element (assq nil index-alist)))
7ebea144
RS
845 (nconc (delq main-element (delq 'dummy index-alist))
846 (cdr main-element)))))
615b306c 847
0a688fd0
RS
848;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
849;;;
850;;; The main functions for this package!
851;;;
852;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
853
0cdb3baa
SM
854;; See also info-lookup-find-item
855(defun imenu-find-default (guess completions)
856 "Fuzzily find an item based on GUESS inside the alist COMPLETIONS."
857 (catch 'found
858 (let ((case-fold-search t))
859 (if (assoc guess completions) guess
860 (dolist (re (list (concat "\\`" (regexp-quote guess) "\\'")
861 (concat "\\`" (regexp-quote guess))
862 (concat (regexp-quote guess) "\\'")
863 (regexp-quote guess)))
864 (dolist (x completions)
865 (if (string-match re (car x)) (throw 'found (car x)))))))))
866
0a688fd0
RS
867(defun imenu--completion-buffer (index-alist &optional prompt)
868 "Let the user select from INDEX-ALIST in a completion buffer with PROMPT.
869
bfbc9ea9 870Return one of the entries in index-alist or nil."
0a688fd0 871 ;; Create a list for this buffer only when needed.
fe2908be
RS
872 (let ((name (thing-at-point 'symbol))
873 choice
874 (prepared-index-alist
5988bd27
SM
875 (if (not imenu-space-replacement) index-alist
876 (mapcar
877 (lambda (item)
ebf944d7 878 (cons (subst-char-in-string ?\s (aref imenu-space-replacement 0)
5988bd27
SM
879 (car item))
880 (cdr item)))
881 index-alist))))
0cdb3baa
SM
882 (when (stringp name)
883 (setq name (or (imenu-find-default name prepared-index-alist) name)))
fe2908be
RS
884 (cond (prompt)
885 ((and name (imenu--in-alist name prepared-index-alist))
886 (setq prompt (format "Index item (default %s): " name)))
887 (t (setq prompt "Index item: ")))
5988bd27
SM
888 (let ((minibuffer-setup-hook minibuffer-setup-hook))
889 ;; Display the completion buffer.
890 (if (not imenu-eager-completion-buffer)
891 (add-hook 'minibuffer-setup-hook 'minibuffer-completion-help))
892 (setq name (completing-read prompt
893 prepared-index-alist
894 nil t nil 'imenu--history-list name)))
bcaa1cef 895
bfbc9ea9
SM
896 (when (stringp name)
897 (setq choice (assoc name prepared-index-alist))
898 (if (imenu--subalist-p choice)
899 (imenu--completion-buffer (cdr choice) prompt)
900 choice))))
68e01f5a 901
0a688fd0
RS
902(defun imenu--mouse-menu (index-alist event &optional title)
903 "Let the user select from a buffer index from a mouse menu.
904
905INDEX-ALIST is the buffer index and EVENT is a mouse event.
906
32c1a22e 907Returns t for rescan and otherwise an element or subelement of INDEX-ALIST."
0c20ee61 908 (setq index-alist (imenu--split-submenus index-alist))
0cdb3baa 909 (let* ((menu (imenu--split-menu index-alist (or title (buffer-name))))
dd631e8a
SM
910 (map (imenu--create-keymap (car menu)
911 (cdr (if (< 1 (length (cdr menu)))
912 menu
913 (car (cdr menu)))))))
0cdb3baa 914 (popup-menu map event)))
0a688fd0 915
26d6bb60 916(defun imenu-choose-buffer-index (&optional prompt alist)
0a688fd0
RS
917 "Let the user select from a buffer index and return the chosen index.
918
919If the user originally activated this function with the mouse, a mouse
0a688fd0
RS
920menu is used. Otherwise a completion buffer is used and the user is
921prompted with PROMPT.
922
26d6bb60
RS
923If you call this function with index alist ALIST, then it lets the user
924select from ALIST.
925
0ee4f8ad 926With no index alist ALIST, it calls `imenu--make-index-alist' to
26d6bb60
RS
927create the index alist.
928
4b21e5f3
RS
929If `imenu-use-popup-menu' is nil, then the completion buffer
930is always used, no matter if the mouse was used or not.
0a688fd0 931
7e563e04 932The returned value is of the form (INDEX-NAME . INDEX-POSITION)."
0a688fd0 933 (let (index-alist
7dea4e70 934 (mouse-triggered (listp last-nonmenu-event))
0cdb3baa 935 (result t))
0a688fd0
RS
936 ;; If selected by mouse, see to that the window where the mouse is
937 ;; really is selected.
938 (and mouse-triggered
4cde72b4 939 (not (equal last-nonmenu-event '(menu-bar)))
7dea4e70 940 (let ((window (posn-window (event-start last-nonmenu-event))))
4a840d8b 941 (or (framep window) (null window) (select-window window))))
0a688fd0
RS
942 ;; Create a list for this buffer only when needed.
943 (while (eq result t)
26d6bb60 944 (setq index-alist (if alist alist (imenu--make-index-alist)))
0a688fd0 945 (setq result
5988bd27
SM
946 (if (and imenu-use-popup-menu
947 (or (eq imenu-use-popup-menu t) mouse-triggered))
7dea4e70 948 (imenu--mouse-menu index-alist last-nonmenu-event)
0a688fd0 949 (imenu--completion-buffer index-alist prompt)))
bfbc9ea9 950 (and (equal result imenu--rescan-item)
5d3b0f18 951 (imenu--cleanup)
bfbc9ea9 952 (setq result t imenu--index-alist nil)))
0a688fd0
RS
953 result))
954
2d24227e 955;;;###autoload
5d3b0f18 956(defun imenu-add-to-menubar (name)
fe2908be 957 "Add an `imenu' entry to the menu bar for the current buffer.
0a8e8bc6 958NAME is a string used to name the menu bar item.
d1757026 959See the command `imenu' for more information."
0a8e8bc6 960 (interactive "sImenu menu item name: ")
e536ef56
KH
961 (if (or (and imenu-prev-index-position-function
962 imenu-extract-index-name-function)
963 imenu-generic-expression
964 (not (eq imenu-create-index-function
965 'imenu-default-create-index-function)))
103af3fe
SM
966 (unless (keymapp (lookup-key (current-local-map) [menu-bar index]))
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)))
48d33090
SM
974 (error "The mode `%s' does not support Imenu"
975 (format-mode-line mode-name))))
0a8e8bc6 976
fe2908be
RS
977;;;###autoload
978(defun imenu-add-menubar-index ()
979 "Add an Imenu \"Index\" entry on the menu bar for the current buffer.
980
981A trivial interface to `imenu-add-to-menubar' suitable for use in a hook."
982 (interactive)
983 (imenu-add-to-menubar "Index"))
984
6d7a4832
KH
985(defvar imenu-buffer-menubar nil)
986
9fb980fc 987(defvar imenu-menubar-modified-tick 0
8c707380
CY
988 "The value of (buffer-chars-modified-tick) as of the last call
989to `imenu-update-menubar'.")
9fb980fc 990(make-variable-buffer-local 'imenu-menubar-modified-tick)
a3841d3b 991
0a8e8bc6 992(defun imenu-update-menubar ()
9fb980fc
RS
993 (when (and (current-local-map)
994 (keymapp (lookup-key (current-local-map) [menu-bar index]))
8c707380
CY
995 (/= (buffer-chars-modified-tick) imenu-menubar-modified-tick))
996 (setq imenu-menubar-modified-tick (buffer-chars-modified-tick))
9fb980fc
RS
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
1005 (buffer-name)))
dd631e8a
SM
1006 (setq menu1 (imenu--create-keymap (car menu)
1007 (cdr (if (< 1 (length (cdr menu)))
1008 menu
1009 (car (cdr menu))))
1010 'imenu--menubar-select))
9fb980fc 1011 (setq old (lookup-key (current-local-map) [menu-bar index]))
103af3fe
SM
1012 ;; This should never happen, but in some odd cases, potentially,
1013 ;; lookup-key may return a dynamically composed keymap.
1014 (if (keymapp (cadr old)) (setq old (cadr old)))
9fb980fc 1015 (setcdr old (cdr menu1)))))))
0a8e8bc6
KH
1016
1017(defun imenu--menubar-select (item)
0cdb3baa 1018 "Use Imenu to select the function or variable named in this menu ITEM."
37954a9a 1019 (if (equal item imenu--rescan-item)
e63679b8
RS
1020 (progn
1021 (imenu--cleanup)
bcaa1cef
RS
1022 ;; Make sure imenu-update-menubar redoes everything.
1023 (setq imenu-menubar-modified-tick -1)
e63679b8 1024 (setq imenu--index-alist nil)
bcaa1cef 1025 (setq imenu--last-menubar-index-alist nil)
0cdb3baa
SM
1026 (imenu-update-menubar)
1027 t)
1028 (imenu item)
1029 nil))
5d3b0f18 1030
37954a9a 1031(defun imenu-default-goto-function (name position &optional rest)
bfbc9ea9 1032 "Move to the given position.
fe2908be
RS
1033
1034NAME is ignored. POSITION is where to move. REST is also ignored.
1035The ignored args just make this function have the same interface as a
1036function placed in a special index-item."
e7c8378c
RS
1037 (if (or (< position (point-min))
1038 (> position (point-max)))
37954a9a
RS
1039 ;; widen if outside narrowing
1040 (widen))
e7c8378c 1041 (goto-char position))
37954a9a 1042
68e01f5a 1043;;;###autoload
6c1bf12b 1044(defun imenu (index-item)
68e01f5a 1045 "Jump to a place in the buffer chosen using a buffer menu or mouse menu.
fe2908be
RS
1046INDEX-ITEM specifies the position. See `imenu-choose-buffer-index'
1047for more information."
01e980fb 1048 (interactive (list (imenu-choose-buffer-index)))
0a8e8bc6
KH
1049 ;; Convert a string to an alist element.
1050 (if (stringp index-item)
1051 (setq index-item (assoc index-item (imenu--make-index-alist))))
0cdb3baa
SM
1052 (when index-item
1053 (push-mark)
1054 (let* ((is-special-item (listp (cdr index-item)))
1055 (function
1056 (if is-special-item
1057 (nth 2 index-item) imenu-default-goto-function))
1058 (position (if is-special-item
1059 (cadr index-item) (cdr index-item)))
1060 (rest (if is-special-item (cddr index-item))))
1061 (apply function (car index-item) position rest))
1062 (run-hooks 'imenu-after-jump-hook)))
5d3b0f18 1063
f1ed9461
DL
1064(dolist (mess
1065 '("^No items suitable for an index found in this buffer$"
1066 "^This buffer cannot use `imenu-default-create-index-function'$"
1067 "^The mode `.*' does not support Imenu$"))
1068 (add-to-list 'debug-ignored-errors mess))
1069
0a688fd0
RS
1070(provide 'imenu)
1071
1072;;; imenu.el ends here