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