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