Export get_pos_property to Elisp.
[bpt/emacs.git] / lisp / imenu.el
CommitLineData
07d00b56 1;;; imenu.el --- framework for mode-specific buffer indexes -*- lexical-binding: t -*-
0a688fd0 2
ab422c4d 3;; Copyright (C) 1994-1998, 2001-2013 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
f58e0fd5 62(eval-when-compile (require 'cl-lib))
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
b7ccbdc2
CY
190 "List of definition matchers for creating an Imenu index.
191Each element of this list should have the form
192
193 (MENU-TITLE REGEXP INDEX [FUNCTION] [ARGUMENTS...])
194
195MENU-TITLE should be nil (in which case the matches for this
196element are put in the top level of the buffer index) or a
197string (which specifies the title of a submenu into which the
198matches are put).
199REGEXP is a regular expression matching a definition construct
200which is to be displayed in the menu. REGEXP may also be a
201function, called without arguments. It is expected to search
202backwards. It must return true and set `match-data' if it finds
203another element.
204INDEX is an integer specifying which subexpression of REGEXP
205matches the definition's name; this subexpression is displayed as
206the menu item.
207FUNCTION, if present, specifies a function to call when the index
208item is selected by the user. This function is called with
209arguments consisting of the item name, the buffer position, and
210the ARGUMENTS.
211
212The variable `imenu-case-fold-search' determines whether or not
213the regexp matches are case sensitive, and `imenu-syntax-alist'
214can be used to alter the syntax table for the search.
2d24227e 215
fb50d1e9 216If non-nil this pattern is passed to `imenu--generic-function' to
b7ccbdc2 217create a buffer index.
fe2908be 218
b7ccbdc2
CY
219For example, see the value of `fortran-imenu-generic-expression'
220used by `fortran-mode' with `imenu-syntax-alist' set locally to
221give the characters which normally have \"symbol\" syntax
222\"word\" syntax during matching.")
6dc3311d 223;;;###autoload(put 'imenu-generic-expression 'risky-local-variable t)
2d24227e 224
af5eb153 225;;;###autoload
6c1bf12b 226(make-variable-buffer-local 'imenu-generic-expression)
615b306c 227
0a688fd0
RS
228;;;; Hooks
229
31f2a064 230;;;###autoload
0a688fd0 231(defvar imenu-create-index-function 'imenu-default-create-index-function
98639288 232 "The function to use for creating an index alist of the current buffer.
0a688fd0 233
98639288
RS
234It should be a function that takes no arguments and returns
235an index alist of the current buffer. The function is
236called within a `save-excursion'.
215b077e 237
98639288 238See `imenu--index-alist' for the format of the buffer index alist.")
31f2a064 239;;;###autoload
0a688fd0
RS
240(make-variable-buffer-local 'imenu-create-index-function)
241
31f2a064 242;;;###autoload
68e01f5a 243(defvar imenu-prev-index-position-function 'beginning-of-defun
0a688fd0
RS
244 "Function for finding the next index position.
245
0ee4f8ad
RS
246If `imenu-create-index-function' is set to
247`imenu-default-create-index-function', then you must set this variable
0a688fd0
RS
248to a function that will find the next index, looking backwards in the
249file.
250
251The function should leave point at the place to be connected to the
38357a23 252index and it should return nil when it doesn't find another index.")
31f2a064 253;;;###autoload
68e01f5a 254(make-variable-buffer-local 'imenu-prev-index-position-function)
0a688fd0 255
31f2a064 256;;;###autoload
68e01f5a 257(defvar imenu-extract-index-name-function nil
fe2908be 258 "Function for extracting the index item name, given a position.
35c8b898
RS
259
260This function is called after `imenu-prev-index-position-function'
261finds a position for an index item, with point at that position.
38357a23 262It should return the name for that index item.")
31f2a064 263;;;###autoload
68e01f5a 264(make-variable-buffer-local 'imenu-extract-index-name-function)
0a688fd0 265
020e8fdf
PR
266;;;###autoload
267(defvar imenu-name-lookup-function nil
268 "Function to compare string with index item.
269
270This function will be called with two strings, and should return
271non-nil if they match.
272
273If nil, comparison is done with `string='.
274Set this to some other function for more advanced comparisons,
275such as \"begins with\" or \"name matches and number of
38357a23 276arguments match\".")
020e8fdf
PR
277;;;###autoload
278(make-variable-buffer-local 'imenu-name-lookup-function)
279
31f2a064 280;;;###autoload
37954a9a
RS
281(defvar imenu-default-goto-function 'imenu-default-goto-function
282 "The default function called when selecting an Imenu item.
283The function in this variable is called when selecting a normal index-item.")
31f2a064 284;;;###autoload
37954a9a
RS
285(make-variable-buffer-local 'imenu-default-goto-function)
286
287
215b077e
RS
288(defun imenu--subalist-p (item)
289 (and (consp (cdr item)) (listp (cadr item))
fe2908be 290 (not (eq (car (cadr item)) 'lambda))))
215b077e 291
07d00b56
SM
292(defmacro imenu-progress-message (_prevpos &optional _relpos _reverse)
293 "Macro to display a progress message.
294RELPOS is the relative position to display.
295If RELPOS is nil, then the relative position in the buffer
296is calculated.
297PREVPOS is the variable in which we store the last position displayed."
5b01685c
JB
298
299;; Made obsolete/empty, as computers are now faster than the eye, and
300;; it had problems updating the messages correctly, and could shadow
301;; more important messages/prompts in the minibuffer. KFS 2004-10-27.
302
303;; `(and
304;; imenu-scanning-message
305;; (let ((pos ,(if relpos
306;; relpos
307;; `(imenu--relative-position ,reverse))))
308;; (if ,(if relpos t
309;; `(> pos (+ 5 ,prevpos)))
310;; (progn
311;; (message imenu-scanning-message pos)
312;; (setq ,prevpos pos)))))
313)
314
615b306c
KH
315
316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
317;;;;
318;;;; Some examples of functions utilizing the framework of this
319;;;; package.
320;;;;
321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
322
1c319e77
GM
323;; FIXME: This was the only imenu-example-* definition actually used,
324;; by cperl-mode.el. Now cperl-mode has its own copy, so these can
325;; all be removed.
615b306c 326(defun imenu-example--name-and-position ()
bfbc9ea9
SM
327 "Return the current/previous sexp and its (beginning) location.
328Don't move point."
59f7af81 329 (declare (obsolete "use your own function instead." "23.2"))
615b306c
KH
330 (save-excursion
331 (forward-sexp -1)
e7c8378c
RS
332 ;; [ydi] modified for imenu-use-markers
333 (let ((beg (if imenu-use-markers (point-marker) (point)))
334 (end (progn (forward-sexp) (point))))
615b306c 335 (cons (buffer-substring beg end)
e7c8378c 336 beg))))
615b306c
KH
337
338;;;
339;;; Lisp
fe2908be 340;;;
615b306c
KH
341
342(defun imenu-example--lisp-extract-index-name ()
343 ;; Example of a candidate for `imenu-extract-index-name-function'.
344 ;; This will generate a flat index of definitions in a lisp file.
59f7af81 345 (declare (obsolete nil "23.2"))
615b306c
KH
346 (save-match-data
347 (and (looking-at "(def")
348 (condition-case nil
349 (progn
350 (down-list 1)
351 (forward-sexp 2)
352 (let ((beg (point))
353 (end (progn (forward-sexp -1) (point))))
354 (buffer-substring beg end)))
355 (error nil)))))
356
357(defun imenu-example--create-lisp-index ()
358 ;; Example of a candidate for `imenu-create-index-function'.
359 ;; It will generate a nested index of definitions.
59f7af81 360 (declare (obsolete nil "23.2"))
615b306c
KH
361 (let ((index-alist '())
362 (index-var-alist '())
363 (index-type-alist '())
4d6769e1 364 (index-unknown-alist '()))
615b306c 365 (goto-char (point-max))
615b306c
KH
366 ;; Search for the function
367 (while (beginning-of-defun)
fe2908be
RS
368 (save-match-data
369 (and (looking-at "(def")
370 (save-excursion
615b306c 371 (down-list 1)
fe2908be 372 (cond
615b306c 373 ((looking-at "def\\(var\\|const\\)")
fe2908be
RS
374 (forward-sexp 2)
375 (push (imenu-example--name-and-position)
376 index-var-alist))
615b306c 377 ((looking-at "def\\(un\\|subst\\|macro\\|advice\\)")
fe2908be
RS
378 (forward-sexp 2)
379 (push (imenu-example--name-and-position)
380 index-alist))
615b306c 381 ((looking-at "def\\(type\\|struct\\|class\\|ine-condition\\)")
fe2908be 382 (forward-sexp 2)
615b306c 383 (if (= (char-after (1- (point))) ?\))
fe2908be 384 (progn
615b306c 385 (forward-sexp -1)
fe2908be 386 (down-list 1)
615b306c 387 (forward-sexp 1)))
fe2908be
RS
388 (push (imenu-example--name-and-position)
389 index-type-alist))
390 (t
391 (forward-sexp 2)
392 (push (imenu-example--name-and-position)
615b306c 393 index-unknown-alist)))))))
615b306c 394 (and index-var-alist
0c20ee61 395 (push (cons "Variables" index-var-alist)
615b306c
KH
396 index-alist))
397 (and index-type-alist
0c20ee61 398 (push (cons "Types" index-type-alist)
615b306c
KH
399 index-alist))
400 (and index-unknown-alist
0c20ee61 401 (push (cons "Syntax-unknown" index-unknown-alist)
615b306c
KH
402 index-alist))
403 index-alist))
404
615b306c
KH
405;; Regular expression to find C functions
406(defvar imenu-example--function-name-regexp-c
fe2908be 407 (concat
930de676 408 "^[a-zA-Z0-9]+[ \t]?" ; Type specs; there can be no
615b306c
KH
409 "\\([a-zA-Z0-9_*]+[ \t]+\\)?" ; more than 3 tokens, right?
410 "\\([a-zA-Z0-9_*]+[ \t]+\\)?"
930de676
SM
411 "\\([*&]+[ \t]*\\)?" ; Pointer.
412 "\\([a-zA-Z0-9_*]+\\)[ \t]*(" ; Name.
615b306c
KH
413 ))
414
415(defun imenu-example--create-c-index (&optional regexp)
59f7af81 416 (declare (obsolete nil "23.2"))
615b306c 417 (let ((index-alist '())
4d6769e1 418 char)
615b306c 419 (goto-char (point-min))
615b306c
KH
420 ;; Search for the function
421 (save-match-data
422 (while (re-search-forward
423 (or regexp imenu-example--function-name-regexp-c)
424 nil t)
615b306c
KH
425 (backward-up-list 1)
426 (save-excursion
427 (goto-char (scan-sexps (point) 1))
428 (setq char (following-char)))
429 ;; Skip this function name if it is a prototype declaration.
430 (if (not (eq char ?\;))
431 (push (imenu-example--name-and-position) index-alist))))
615b306c 432 (nreverse index-alist)))
2d24227e 433
0a688fd0
RS
434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
435;;;
436;;; Internal variables
437;;;
438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
439
440;; The item to use in the index for rescanning the buffer.
441(defconst imenu--rescan-item '("*Rescan*" . -99))
442
443;; The latest buffer index.
07d00b56 444(defvar-local imenu--index-alist nil
98639288
RS
445 "The buffer index alist computed for this buffer in Imenu.
446
447Simple elements in the alist look like (INDEX-NAME . POSITION).
448POSITION is the buffer position of the item; to go to the item
449is simply to move point to that position.
e6ed8f08
FL
450POSITION is passed to `imenu-default-goto-function', so it can be a non-number
451if that variable has been changed (e.g. Semantic uses overlays for POSITIONs).
98639288
RS
452
453Special elements look like (INDEX-NAME POSITION FUNCTION ARGUMENTS...).
454To \"go to\" a special element means applying FUNCTION
455to INDEX-NAME, POSITION, and the ARGUMENTS.
456
457A nested sub-alist element looks like (INDEX-NAME SUB-ALIST).
458The function `imenu--subalist-p' tests an element and returns t
459if it is a sub-alist.
460
461There is one simple element with negative POSITION; selecting that
f5aefd63 462element recalculates the buffer's index alist.")
6dc3311d 463;;;###autoload(put 'imenu--index-alist 'risky-local-variable t)
35c8b898 464
07d00b56 465(defvar-local imenu--last-menubar-index-alist nil
98639288 466 "The latest buffer index alist used to update the menu bar menu.")
0cff96e7 467
07d00b56
SM
468(defvar imenu--history-list nil
469 ;; Making this buffer local caused it not to work!
470 "History list for 'jump-to-function-in-buffer'.")
0a688fd0
RS
471
472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
473;;;
474;;; Internal support functions
475;;;
476;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
477
0a688fd0 478(defun imenu--sort-by-name (item1 item2)
07d00b56
SM
479 "Comparison function to sort items depending on their index name.
480An item looks like (NAME . POSITION)."
0a688fd0
RS
481 (string-lessp (car item1) (car item2)))
482
c01ee596
KH
483(defun imenu--sort-by-position (item1 item2)
484 (< (cdr item1) (cdr item2)))
485
0a688fd0 486(defun imenu--relative-position (&optional reverse)
07d00b56
SM
487 "Support function to calculate relative position in buffer.
488Beginning of buffer is 0 and end of buffer is 100
489If REVERSE is non-nil then the beginning is 100 and the end is 0."
0a688fd0
RS
490 (let ((pos (point))
491 (total (buffer-size)))
492 (and reverse (setq pos (- total pos)))
493 (if (> total 50000)
494 ;; Avoid overflow from multiplying by 100!
495 (/ (1- pos) (max (/ total 100) 1))
496 (/ (* 100 (1- pos)) (max total 1)))))
497
0a688fd0 498(defun imenu--split (list n)
07d00b56
SM
499 "Split LIST into sublists of max length N.
500Example (imenu--split '(1 2 3 4 5 6 7 8) 3)-> '((1 2 3) (4 5 6) (7 8))
501The returned list DOES NOT share structure with LIST."
0a688fd0
RS
502 (let ((remain list)
503 (result '())
504 (sublist '())
505 (i 0))
506 (while remain
507 (push (pop remain) sublist)
f58e0fd5 508 (cl-incf i)
0a688fd0
RS
509 (and (= i n)
510 ;; We have finished a sublist
511 (progn (push (nreverse sublist) result)
512 (setq i 0)
513 (setq sublist '()))))
514 ;; There might be a sublist (if the length of LIST mod n is != 0)
515 ;; that has to be added to the result list.
516 (and sublist
517 (push (nreverse sublist) result))
518 (nreverse result)))
519
0a688fd0 520(defun imenu--split-menu (menulist title)
07d00b56
SM
521 "Split the alist MENULIST into a nested alist, if it is long enough.
522In any case, add TITLE to the front of the alist.
523If IMENU--RESCAN-ITEM is present in MENULIST, it is moved to the
524beginning of the returned alist.
525The returned alist DOES NOT share structure with MENULIST."
c27c178c 526 (let ((menulist (copy-sequence menulist))
07d00b56 527 keep-at-top)
7ebea144 528 (if (memq imenu--rescan-item menulist)
c27c178c 529 (setq keep-at-top (list imenu--rescan-item)
7ebea144 530 menulist (delq imenu--rescan-item menulist)))
07d00b56 531 (dolist (item menulist)
dd631e8a
SM
532 (when (imenu--subalist-p item)
533 (push item keep-at-top)
534 (setq menulist (delq item menulist))))
7ebea144 535 (if imenu-sort-function
c27c178c 536 (setq menulist (sort menulist imenu-sort-function)))
7ebea144 537 (if (> (length menulist) imenu-max-items)
dd631e8a
SM
538 (setq menulist
539 (mapcar
540 (lambda (menu)
541 (cons (format "From: %s" (caar menu)) menu))
542 (imenu--split menulist imenu-max-items))))
7ebea144
RS
543 (cons title
544 (nconc (nreverse keep-at-top) menulist))))
0c20ee61 545
0c20ee61 546(defun imenu--split-submenus (alist)
07d00b56
SM
547 "Split up each long alist that are nested within ALIST into nested alists.
548Return a split and sorted copy of ALIST. The returned alist DOES
549NOT share structure with ALIST."
550 (mapcar (lambda (elt)
875ce3a7 551 (if (imenu--subalist-p elt)
07d00b56
SM
552 (imenu--split-menu (cdr elt) (car elt))
553 elt))
0c20ee61 554 alist))
0a688fd0 555
e7c8378c 556(defun imenu--truncate-items (menulist)
07d00b56 557 "Truncate all strings in MENULIST to `imenu-max-item-length'."
dd331297 558 (mapc (lambda (item)
930de676 559 ;; Truncate if necessary.
dd331297
LL
560 (when (and (numberp imenu-max-item-length)
561 (> (length (car item)) imenu-max-item-length))
562 (setcar item (substring (car item) 0 imenu-max-item-length)))
563 (when (imenu--subalist-p item)
564 (imenu--truncate-items (cdr item))))
565 menulist))
e7c8378c 566
0a8e8bc6 567(defun imenu--make-index-alist (&optional noerror)
98639288
RS
568 "Create an index alist for the definitions in the current buffer.
569This works by using the hook function `imenu-create-index-function'.
fe2908be
RS
570Report an error if the list is empty unless NOERROR is supplied and
571non-nil.
572
98639288 573See `imenu--index-alist' for the format of the index alist."
2d24227e
RS
574 (or (and imenu--index-alist
575 (or (not imenu-auto-rescan)
576 (and imenu-auto-rescan
577 (> (buffer-size) imenu-auto-rescan-maxout))))
930de676 578 ;; Get the index; truncate if necessary.
e7c8378c
RS
579 (progn
580 (setq imenu--index-alist
581 (save-excursion
582 (save-restriction
583 (widen)
584 (funcall imenu-create-index-function))))
585 (imenu--truncate-items imenu--index-alist)))
0a8e8bc6 586 (or imenu--index-alist noerror
71873e2b 587 (user-error "No items suitable for an index found in this buffer"))
0a8e8bc6
KH
588 (or imenu--index-alist
589 (setq imenu--index-alist (list nil)))
0a688fd0
RS
590 ;; Add a rescan option to the index.
591 (cons imenu--rescan-item imenu--index-alist))
79e098ca 592
07d00b56 593(defvar imenu--cleanup-seen nil)
79e098ca 594
5d3b0f18 595(defun imenu--cleanup (&optional alist)
07d00b56
SM
596 "Find all markers in ALIST and make them point nowhere.
597If ALIST is nil (the normal case), use `imenu--index-alist'.
598Non-nil arguments are in recursive calls."
fe2908be 599 ;; If alist is provided use that list.
79e098ca
RS
600 ;; If not, empty the table of lists already seen
601 ;; and use imenu--index-alist.
602 (if alist
603 (setq imenu--cleanup-seen (cons alist imenu--cleanup-seen))
604 (setq alist imenu--index-alist imenu--cleanup-seen (list alist)))
605
07d00b56
SM
606 (when alist
607 (dolist (item alist)
608 (cond
609 ((markerp (cdr item)) (set-marker (cdr item) nil))
610 ;; Don't process one alist twice.
611 ((memq (cdr item) imenu--cleanup-seen))
612 ((imenu--subalist-p item) (imenu--cleanup (cdr item)))))
613 t))
615b306c 614
dd631e8a 615(defun imenu--create-keymap (title alist &optional cmd)
f58e0fd5
SM
616 `(keymap ,title
617 ,@(mapcar
618 (lambda (item)
619 `(,(car item) ,(car item)
620 ,@(cond
621 ((imenu--subalist-p item)
622 (imenu--create-keymap (car item) (cdr item) cmd))
623 (t
624 `(lambda () (interactive)
625 ,(if cmd `(,cmd ',item) (list 'quote item)))))))
626 alist)))
2d24227e 627
2d24227e
RS
628(defun imenu--in-alist (str alist)
629 "Check whether the string STR is contained in multi-level ALIST."
630 (let (elt head tail res)
631 (setq res nil)
632 (while alist
fe2908be 633 (setq elt (car alist)
2d24227e 634 tail (cdr elt)
fe2908be
RS
635 alist (cdr alist)
636 head (car elt))
8396299d
RS
637 ;; A nested ALIST element looks like
638 ;; (INDEX-NAME (INDEX-NAME . INDEX-POSITION) ...)
639 ;; while a bottom-level element looks like
640 ;; (INDEX-NAME . INDEX-POSITION)
641 ;; We are only interested in the bottom-level elements, so we need to
642 ;; recurse if TAIL is a list.
643 (cond ((listp tail)
644 (if (setq res (imenu--in-alist str tail))
645 (setq alist nil)))
020e8fdf
PR
646 ((if imenu-name-lookup-function
647 (funcall imenu-name-lookup-function str head)
648 (string= str head))
8396299d 649 (setq alist nil res elt))))
2d24227e
RS
650 res))
651
fea79780 652(defvar imenu-syntax-alist nil
0cdb3baa 653 "Alist of syntax table modifiers to use while in `imenu--generic-function'.
fea79780
DL
654
655The car of the assocs may be either a character or a string and the
23d468da 656cdr is a syntax description appropriate for `modify-syntax-entry'. For
fea79780
DL
657a string, all the characters in the string get the specified syntax.
658
659This is typically used to give word syntax to characters which
90806abc 660normally have symbol syntax to simplify `imenu-expression'
fea79780 661and speed-up matching.")
005913e4 662;;;###autoload
fea79780
DL
663(make-variable-buffer-local 'imenu-syntax-alist)
664
0a688fd0 665(defun imenu-default-create-index-function ()
9201cc28 666 "Default function to create an index alist of the current buffer.
0a688fd0 667
98639288 668The most general method is to move point to end of buffer, then repeatedly call
68e01f5a 669`imenu-prev-index-position-function' and `imenu-extract-index-name-function'.
98639288
RS
670All the results returned by the latter are gathered into an index alist.
671This method is used if those two variables are non-nil.
672
673The alternate method, which is the one most often used, is to call
674`imenu--generic-function' with `imenu-generic-expression' as argument."
3e062f78
RS
675 ;; These should really be done by setting imenu-create-index-function
676 ;; in these major modes. But save that change for later.
e536ef56
KH
677 (cond ((and imenu-prev-index-position-function
678 imenu-extract-index-name-function)
48c828b9 679 (let ((index-alist '()) (pos (point-max))
4d6769e1 680 name)
48c828b9 681 (goto-char pos)
3e062f78 682 ;; Search for the function
fe2908be 683 (while (funcall imenu-prev-index-position-function)
48c828b9 684 (unless (< (point) pos)
1886a16d 685 (error "Infinite loop at %s:%d: imenu-prev-index-position-function does not move point" (buffer-name) pos))
d8b8451f 686 (setq pos (point))
3e062f78
RS
687 (save-excursion
688 (setq name (funcall imenu-extract-index-name-function)))
689 (and (stringp name)
930de676
SM
690 ;; [ydi] Updated for imenu-use-markers.
691 (push (cons name
692 (if imenu-use-markers (point-marker) (point)))
e7c8378c 693 index-alist)))
615b306c
KH
694 index-alist))
695 ;; Use generic expression if possible.
696 ((and imenu-generic-expression)
fe2908be 697 (imenu--generic-function imenu-generic-expression))
615b306c 698 (t
71873e2b 699 (user-error "This buffer cannot use `imenu-default-create-index-function'"))))
0a688fd0 700
615b306c
KH
701;;;
702;;; Generic index gathering function.
703;;;
2d24227e 704
73f48953
DL
705(defvar imenu-case-fold-search t
706 "Defines whether `imenu--generic-function' should fold case when matching.
707
0cdb3baa 708This variable should be set (only) by initialization code
95e60ff9
SM
709for modes which use `imenu--generic-function'. If it is not set, but
710`font-lock-defaults' is set, then font-lock's setting is used.")
fe2908be 711;;;###autoload
73f48953
DL
712(make-variable-buffer-local 'imenu-case-fold-search)
713
71eb6308
RS
714;; This function can be called with quitting disabled,
715;; so it needs to be careful never to loop!
2d24227e 716(defun imenu--generic-function (patterns)
98639288 717 "Return an index alist of the current buffer based on PATTERNS.
b7ccbdc2
CY
718PATTERNS should be an alist which has the same form as
719`imenu-generic-expression'.
2d24227e 720
b7ccbdc2 721The return value is an alist of the form
61567afa 722 (INDEX-NAME . INDEX-POSITION)
b7ccbdc2 723or
61567afa 724 (INDEX-NAME INDEX-POSITION FUNCTION ARGUMENTS...)
b7ccbdc2 725The return value may also consist of nested index alists like:
61567afa
LK
726 (INDEX-NAME . INDEX-ALIST)
727depending on PATTERNS."
2d24227e 728 (let ((index-alist (list 'dummy))
95e60ff9
SM
729 (case-fold-search (if (or (local-variable-p 'imenu-case-fold-search)
730 (not (local-variable-p 'font-lock-defaults)))
731 imenu-case-fold-search
732 (nth 2 font-lock-defaults)))
fea79780
DL
733 (old-table (syntax-table))
734 (table (copy-syntax-table (syntax-table)))
735 (slist imenu-syntax-alist))
736 ;; Modify the syntax table used while matching regexps.
0cdb3baa 737 (dolist (syn slist)
fe2908be 738 ;; The character(s) to modify may be a single char or a string.
0cdb3baa
SM
739 (if (numberp (car syn))
740 (modify-syntax-entry (car syn) (cdr syn) table)
5b89a8c9
GM
741 (mapc (lambda (c)
742 (modify-syntax-entry c (cdr syn) table))
743 (car syn))))
615b306c 744 (goto-char (point-max))
930de676 745 (unwind-protect ; For syntax table.
fe2908be
RS
746 (save-match-data
747 (set-syntax-table table)
71eb6308 748
930de676
SM
749 ;; Map over the elements of imenu-generic-expression
750 ;; (typically functions, variables ...).
0cdb3baa
SM
751 (dolist (pat patterns)
752 (let ((menu-title (car pat))
753 (regexp (nth 1 pat))
754 (index (nth 2 pat))
755 (function (nth 3 pat))
8522009e 756 (rest (nthcdr 4 pat))
1cade2b6 757 start beg)
0cdb3baa
SM
758 ;; Go backwards for convenience of adding items in order.
759 (goto-char (point-max))
fb50d1e9
DP
760 (while (and (if (functionp regexp)
761 (funcall regexp)
d333dc4c
DA
762 (and
763 (re-search-backward regexp nil t)
764 ;; Do not count invisible definitions.
765 (let ((invis (invisible-p (point))))
766 (or (not invis)
767 (progn
768 (while (and invis
769 (not (bobp)))
770 (setq invis (not (re-search-backward
771 regexp nil 'move))))
772 (not invis))))))
71eb6308
RS
773 ;; Exit the loop if we get an empty match,
774 ;; because it means a bad regexp was specified.
775 (not (= (match-beginning 0) (match-end 0))))
58b00d47 776 (setq start (point))
1cade2b6 777 ;; Record the start of the line in which the match starts.
5f7bccda 778 ;; That's the official position of this definition.
1cade2b6
RS
779 (goto-char (match-beginning index))
780 (beginning-of-line)
781 (setq beg (point))
237470e8
RS
782 ;; Add this sort of submenu only when we've found an
783 ;; item for it, avoiding empty, duff menus.
784 (unless (assoc menu-title index-alist)
785 (push (list menu-title) index-alist))
786 (if imenu-use-markers
1cade2b6 787 (setq beg (copy-marker beg)))
237470e8
RS
788 (let ((item
789 (if function
790 (nconc (list (match-string-no-properties index)
1cade2b6 791 beg function)
237470e8
RS
792 rest)
793 (cons (match-string-no-properties index)
1cade2b6 794 beg)))
237470e8
RS
795 ;; This is the desired submenu,
796 ;; starting with its title (or nil).
797 (menu (assoc menu-title index-alist)))
798 ;; Insert the item unless it is already present.
799 (unless (member item (cdr menu))
800 (setcdr menu
1cade2b6
RS
801 (cons item (cdr menu)))))
802 ;; Go to the start of the match, to make sure we
803 ;; keep making progress backwards.
804 (goto-char start))))
fe2908be 805 (set-syntax-table old-table)))
c01ee596
KH
806 ;; Sort each submenu by position.
807 ;; This is in case one submenu gets items from two different regexps.
0cdb3baa
SM
808 (dolist (item index-alist)
809 (when (listp item)
810 (setcdr item (sort (cdr item) 'imenu--sort-by-position))))
0c20ee61 811 (let ((main-element (assq nil index-alist)))
7ebea144
RS
812 (nconc (delq main-element (delq 'dummy index-alist))
813 (cdr main-element)))))
615b306c 814
0a688fd0
RS
815;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
816;;;
817;;; The main functions for this package!
818;;;
819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
820
0cdb3baa
SM
821;; See also info-lookup-find-item
822(defun imenu-find-default (guess completions)
823 "Fuzzily find an item based on GUESS inside the alist COMPLETIONS."
824 (catch 'found
825 (let ((case-fold-search t))
826 (if (assoc guess completions) guess
827 (dolist (re (list (concat "\\`" (regexp-quote guess) "\\'")
828 (concat "\\`" (regexp-quote guess))
829 (concat (regexp-quote guess) "\\'")
830 (regexp-quote guess)))
831 (dolist (x completions)
832 (if (string-match re (car x)) (throw 'found (car x)))))))))
833
0a688fd0
RS
834(defun imenu--completion-buffer (index-alist &optional prompt)
835 "Let the user select from INDEX-ALIST in a completion buffer with PROMPT.
836
bfbc9ea9 837Return one of the entries in index-alist or nil."
0a688fd0 838 ;; Create a list for this buffer only when needed.
fe2908be
RS
839 (let ((name (thing-at-point 'symbol))
840 choice
841 (prepared-index-alist
5988bd27
SM
842 (if (not imenu-space-replacement) index-alist
843 (mapcar
844 (lambda (item)
ebf944d7 845 (cons (subst-char-in-string ?\s (aref imenu-space-replacement 0)
5988bd27
SM
846 (car item))
847 (cdr item)))
848 index-alist))))
0cdb3baa
SM
849 (when (stringp name)
850 (setq name (or (imenu-find-default name prepared-index-alist) name)))
fe2908be
RS
851 (cond (prompt)
852 ((and name (imenu--in-alist name prepared-index-alist))
853 (setq prompt (format "Index item (default %s): " name)))
854 (t (setq prompt "Index item: ")))
5988bd27
SM
855 (let ((minibuffer-setup-hook minibuffer-setup-hook))
856 ;; Display the completion buffer.
857 (if (not imenu-eager-completion-buffer)
858 (add-hook 'minibuffer-setup-hook 'minibuffer-completion-help))
859 (setq name (completing-read prompt
860 prepared-index-alist
861 nil t nil 'imenu--history-list name)))
bcaa1cef 862
bfbc9ea9
SM
863 (when (stringp name)
864 (setq choice (assoc name prepared-index-alist))
865 (if (imenu--subalist-p choice)
866 (imenu--completion-buffer (cdr choice) prompt)
867 choice))))
68e01f5a 868
0a688fd0
RS
869(defun imenu--mouse-menu (index-alist event &optional title)
870 "Let the user select from a buffer index from a mouse menu.
871
872INDEX-ALIST is the buffer index and EVENT is a mouse event.
873
32c1a22e 874Returns t for rescan and otherwise an element or subelement of INDEX-ALIST."
0c20ee61 875 (setq index-alist (imenu--split-submenus index-alist))
0cdb3baa 876 (let* ((menu (imenu--split-menu index-alist (or title (buffer-name))))
dd631e8a
SM
877 (map (imenu--create-keymap (car menu)
878 (cdr (if (< 1 (length (cdr menu)))
879 menu
880 (car (cdr menu)))))))
0cdb3baa 881 (popup-menu map event)))
0a688fd0 882
26d6bb60 883(defun imenu-choose-buffer-index (&optional prompt alist)
0a688fd0
RS
884 "Let the user select from a buffer index and return the chosen index.
885
886If the user originally activated this function with the mouse, a mouse
0a688fd0
RS
887menu is used. Otherwise a completion buffer is used and the user is
888prompted with PROMPT.
889
26d6bb60
RS
890If you call this function with index alist ALIST, then it lets the user
891select from ALIST.
892
0ee4f8ad 893With no index alist ALIST, it calls `imenu--make-index-alist' to
26d6bb60
RS
894create the index alist.
895
4b21e5f3
RS
896If `imenu-use-popup-menu' is nil, then the completion buffer
897is always used, no matter if the mouse was used or not.
0a688fd0 898
7e563e04 899The returned value is of the form (INDEX-NAME . INDEX-POSITION)."
0a688fd0 900 (let (index-alist
7dea4e70 901 (mouse-triggered (listp last-nonmenu-event))
0cdb3baa 902 (result t))
0a688fd0
RS
903 ;; If selected by mouse, see to that the window where the mouse is
904 ;; really is selected.
905 (and mouse-triggered
4cde72b4 906 (not (equal last-nonmenu-event '(menu-bar)))
7dea4e70 907 (let ((window (posn-window (event-start last-nonmenu-event))))
4a840d8b 908 (or (framep window) (null window) (select-window window))))
0a688fd0
RS
909 ;; Create a list for this buffer only when needed.
910 (while (eq result t)
26d6bb60 911 (setq index-alist (if alist alist (imenu--make-index-alist)))
0a688fd0 912 (setq result
5988bd27
SM
913 (if (and imenu-use-popup-menu
914 (or (eq imenu-use-popup-menu t) mouse-triggered))
7dea4e70 915 (imenu--mouse-menu index-alist last-nonmenu-event)
0a688fd0 916 (imenu--completion-buffer index-alist prompt)))
bfbc9ea9 917 (and (equal result imenu--rescan-item)
5d3b0f18 918 (imenu--cleanup)
bfbc9ea9 919 (setq result t imenu--index-alist nil)))
0a688fd0
RS
920 result))
921
2d24227e 922;;;###autoload
5d3b0f18 923(defun imenu-add-to-menubar (name)
fe2908be 924 "Add an `imenu' entry to the menu bar for the current buffer.
0a8e8bc6 925NAME is a string used to name the menu bar item.
d1757026 926See the command `imenu' for more information."
0a8e8bc6 927 (interactive "sImenu menu item name: ")
e536ef56
KH
928 (if (or (and imenu-prev-index-position-function
929 imenu-extract-index-name-function)
930 imenu-generic-expression
931 (not (eq imenu-create-index-function
932 'imenu-default-create-index-function)))
6622e416
SM
933 (unless (and (current-local-map)
934 (keymapp (lookup-key (current-local-map) [menu-bar index])))
103af3fe
SM
935 (let ((newmap (make-sparse-keymap)))
936 (set-keymap-parent newmap (current-local-map))
937 (setq imenu--last-menubar-index-alist nil)
938 (define-key newmap [menu-bar index]
939 `(menu-item ,name ,(make-sparse-keymap "Imenu")))
940 (use-local-map newmap)
941 (add-hook 'menu-bar-update-hook 'imenu-update-menubar)))
71873e2b
SM
942 (user-error "The mode `%s' does not support Imenu"
943 (format-mode-line mode-name))))
0a8e8bc6 944
fe2908be
RS
945;;;###autoload
946(defun imenu-add-menubar-index ()
947 "Add an Imenu \"Index\" entry on the menu bar for the current buffer.
948
949A trivial interface to `imenu-add-to-menubar' suitable for use in a hook."
950 (interactive)
951 (imenu-add-to-menubar "Index"))
952
6d7a4832
KH
953(defvar imenu-buffer-menubar nil)
954
07d00b56 955(defvar-local imenu-menubar-modified-tick 0
8c707380
CY
956 "The value of (buffer-chars-modified-tick) as of the last call
957to `imenu-update-menubar'.")
a3841d3b 958
0a8e8bc6 959(defun imenu-update-menubar ()
9fb980fc
RS
960 (when (and (current-local-map)
961 (keymapp (lookup-key (current-local-map) [menu-bar index]))
8c707380
CY
962 (/= (buffer-chars-modified-tick) imenu-menubar-modified-tick))
963 (setq imenu-menubar-modified-tick (buffer-chars-modified-tick))
9fb980fc
RS
964 (let ((index-alist (imenu--make-index-alist t)))
965 ;; Don't bother updating if the index-alist has not changed
966 ;; since the last time we did it.
967 (unless (equal index-alist imenu--last-menubar-index-alist)
968 (let (menu menu1 old)
969 (setq imenu--last-menubar-index-alist index-alist)
970 (setq index-alist (imenu--split-submenus index-alist))
971 (setq menu (imenu--split-menu index-alist
972 (buffer-name)))
dd631e8a
SM
973 (setq menu1 (imenu--create-keymap (car menu)
974 (cdr (if (< 1 (length (cdr menu)))
975 menu
976 (car (cdr menu))))
977 'imenu--menubar-select))
9fb980fc 978 (setq old (lookup-key (current-local-map) [menu-bar index]))
103af3fe
SM
979 ;; This should never happen, but in some odd cases, potentially,
980 ;; lookup-key may return a dynamically composed keymap.
981 (if (keymapp (cadr old)) (setq old (cadr old)))
9fb980fc 982 (setcdr old (cdr menu1)))))))
0a8e8bc6
KH
983
984(defun imenu--menubar-select (item)
0cdb3baa 985 "Use Imenu to select the function or variable named in this menu ITEM."
37954a9a 986 (if (equal item imenu--rescan-item)
e63679b8
RS
987 (progn
988 (imenu--cleanup)
bcaa1cef
RS
989 ;; Make sure imenu-update-menubar redoes everything.
990 (setq imenu-menubar-modified-tick -1)
e63679b8 991 (setq imenu--index-alist nil)
bcaa1cef 992 (setq imenu--last-menubar-index-alist nil)
0cdb3baa
SM
993 (imenu-update-menubar)
994 t)
995 (imenu item)
996 nil))
5d3b0f18 997
4d6769e1 998(defun imenu-default-goto-function (_name position &optional _rest)
bfbc9ea9 999 "Move to the given position.
fe2908be
RS
1000
1001NAME is ignored. POSITION is where to move. REST is also ignored.
1002The ignored args just make this function have the same interface as a
1003function placed in a special index-item."
e7c8378c
RS
1004 (if (or (< position (point-min))
1005 (> position (point-max)))
930de676 1006 ;; Widen if outside narrowing.
37954a9a 1007 (widen))
e7c8378c 1008 (goto-char position))
37954a9a 1009
68e01f5a 1010;;;###autoload
6c1bf12b 1011(defun imenu (index-item)
68e01f5a 1012 "Jump to a place in the buffer chosen using a buffer menu or mouse menu.
fe2908be
RS
1013INDEX-ITEM specifies the position. See `imenu-choose-buffer-index'
1014for more information."
01e980fb 1015 (interactive (list (imenu-choose-buffer-index)))
0a8e8bc6
KH
1016 ;; Convert a string to an alist element.
1017 (if (stringp index-item)
1018 (setq index-item (assoc index-item (imenu--make-index-alist))))
0cdb3baa 1019 (when index-item
1913c5f5 1020 (push-mark nil t)
0cdb3baa
SM
1021 (let* ((is-special-item (listp (cdr index-item)))
1022 (function
1023 (if is-special-item
1024 (nth 2 index-item) imenu-default-goto-function))
1025 (position (if is-special-item
1026 (cadr index-item) (cdr index-item)))
1027 (rest (if is-special-item (cddr index-item))))
1028 (apply function (car index-item) position rest))
1029 (run-hooks 'imenu-after-jump-hook)))
5d3b0f18 1030
0a688fd0
RS
1031(provide 'imenu)
1032
1033;;; imenu.el ends here