Mercurial > emacs
annotate lisp/progmodes/which-func.el @ 100545:a6f735b1f36f
Header format fix.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Fri, 19 Dec 2008 05:24:35 +0000 |
parents | 352e7f3ed660 |
children | a9dc0e7c3f2b |
rev | line source |
---|---|
51349 | 1 ;;; which-func.el --- print current function in mode line |
2 | |
98407
352e7f3ed660
(which-func-imenu-joiner-function): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
98406
diff
changeset
|
3 ;; Copyright (C) 1994, 1997, 1998, 2001, 2002, 2003, 2004, 2005, 2006 |
352e7f3ed660
(which-func-imenu-joiner-function): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
98406
diff
changeset
|
4 ;; 2007, 2008 Free Software Foundation, Inc. |
51349 | 5 |
6 ;; Author: Alex Rezinsky <alexr@msil.sps.mot.com> | |
7 ;; (doesn't seem to be responsive any more) | |
8 ;; Keywords: mode-line, imenu, tools | |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
51349 | 13 ;; it under the terms of the GNU General Public License as published by |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
15 ;; (at your option) any later version. |
51349 | 16 |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
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. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
94673
52b7a8c22af5
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
51349 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; This package prints name of function where your current point is | |
28 ;; located in mode line. It assumes that you work with imenu package | |
29 ;; and imenu--index-alist is up to date. | |
30 | |
31 ;; KNOWN BUGS | |
32 ;; ---------- | |
33 ;; Really this package shows not "function where the current point is | |
34 ;; located now", but "nearest function which defined above the current | |
35 ;; point". So if your current point is located after end of function | |
36 ;; FOO but before begin of function BAR, FOO will be displayed in mode | |
37 ;; line. | |
38 ;; - if two windows display the same buffer, both windows | |
39 ;; show the same `which-func' information. | |
40 | |
41 ;; TODO LIST | |
42 ;; --------- | |
43 ;; 1. Dependence on imenu package should be removed. Separate | |
44 ;; function determination mechanism should be used to determine the end | |
45 ;; of a function as well as the beginning of a function. | |
46 ;; 2. This package should be realized with the help of overlay | |
47 ;; properties instead of imenu--index-alist variable. | |
48 | |
49 ;;; History: | |
50 | |
51 ;; THANKS TO | |
52 ;; --------- | |
53 ;; Per Abrahamsen <abraham@iesd.auc.dk> | |
54 ;; Some ideas (inserting in mode-line, using of post-command hook | |
55 ;; and toggling this mode) have been borrowed from his package | |
56 ;; column.el | |
57 ;; Peter Eisenhauer <pipe@fzi.de> | |
58 ;; Bug fixing in case nested indexes. | |
59 ;; Terry Tateyama <ttt@ursa0.cs.utah.edu> | |
60 ;; Suggestion to use find-file-hook for first imenu | |
61 ;; index building. | |
62 | |
63 ;;; Code: | |
64 | |
65 ;; Variables for customization | |
66 ;; --------------------------- | |
67 ;; | |
68 (defvar which-func-unknown "???" | |
69 "String to display in the mode line when current function is unknown.") | |
70 | |
71 (defgroup which-func nil | |
72 "Mode to display the current function name in the modeline." | |
73 :group 'tools | |
74 :version "20.3") | |
75 | |
76 (defcustom which-func-modes | |
81825
69b5e2969dfe
(which-func-modes): Add `python-mode'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
77 '(emacs-lisp-mode c-mode c++-mode perl-mode cperl-mode python-mode |
84390
28620c3d5a1a
Added diff-mode to `which-func-modes'.
Masatake YAMATO <jet@gyve.org>
parents:
82365
diff
changeset
|
78 makefile-mode sh-mode fortran-mode f90-mode ada-mode |
28620c3d5a1a
Added diff-mode to `which-func-modes'.
Masatake YAMATO <jet@gyve.org>
parents:
82365
diff
changeset
|
79 diff-mode) |
51349 | 80 "List of major modes for which Which Function mode should be used. |
81 For other modes it is disabled. If this is equal to t, | |
82 then Which Function mode is enabled in any major mode that supports it." | |
83 :group 'which-func | |
84 :type '(choice (const :tag "All modes" t) | |
85 (repeat (symbol :tag "Major mode")))) | |
86 | |
87 (defcustom which-func-non-auto-modes nil | |
88 "List of major modes where Which Function mode is inactive till Imenu is used. | |
89 This means that Which Function mode won't really do anything | |
90 until you use Imenu, in these modes. Note that files | |
91 larger than `which-func-maxout' behave in this way too; | |
92 Which Function mode doesn't do anything until you use Imenu." | |
93 :group 'which-func | |
94 :type '(repeat (symbol :tag "Major mode"))) | |
95 | |
96 (defcustom which-func-maxout 500000 | |
97 "Don't automatically compute the Imenu menu if buffer is this big or bigger. | |
98 Zero means compute the Imenu menu regardless of size." | |
99 :group 'which-func | |
100 :type 'integer) | |
101 | |
56442
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
102 (defvar which-func-keymap |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
103 (let ((map (make-sparse-keymap))) |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
104 (define-key map [mode-line mouse-1] 'beginning-of-defun) |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
105 (define-key map [mode-line mouse-2] |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
106 (lambda () |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
107 (interactive) |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
108 (if (eq (point-min) 1) |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
109 (narrow-to-defun) |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
110 (widen)))) |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
111 (define-key map [mode-line mouse-3] 'end-of-defun) |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
112 map) |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
113 "Keymap to display on mode line which-func.") |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
114 |
63457
581fdd0b552d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-417
Miles Bader <miles@gnu.org>
parents:
62858
diff
changeset
|
115 (defface which-func |
63463
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
116 ;; Whether `font-lock-function-name-face' is an appropriate face to |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
117 ;; inherit depends on the mode-line face; define several variants based |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
118 ;; on the default mode-line face. |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
119 '(;; The default mode-line face on a high-color display is a relatively |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
120 ;; light color ("grey75"), and only the light-background variant of |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
121 ;; `font-lock-function-name-face' is visible against it. |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
122 (((class color) (min-colors 88) (background light)) |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
123 :inherit font-lock-function-name-face) |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
124 ;; The default mode-line face on other display types is inverse-video; |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
125 ;; it seems that only in the dark-background case is |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
126 ;; `font-lock-function-name-face' visible against it. |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
127 (((class grayscale mono) (background dark)) |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
128 :inherit font-lock-function-name-face) |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
129 (((class color) (background light)) |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
130 :inherit font-lock-function-name-face) |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
131 ;; If none of the above cases, use an explicit color chosen to contrast |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
132 ;; well with the default mode-line face. |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
133 (((class color) (min-colors 88) (background dark)) |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
134 :foreground "Blue1") |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
135 (((background dark)) |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
136 :foreground "Blue1") |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
137 (t |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
138 :foreground "LightSkyBlue")) |
ad343539d42b
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-421
Miles Bader <miles@gnu.org>
parents:
63457
diff
changeset
|
139 "Face used to highlight mode line function names." |
56442
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
140 :group 'which-func) |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
141 |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
142 (defcustom which-func-format |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
143 `("[" |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
144 (:propertize which-func-current |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
145 local-map ,which-func-keymap |
63457
581fdd0b552d
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-417
Miles Bader <miles@gnu.org>
parents:
62858
diff
changeset
|
146 face which-func |
56442
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
147 ;;mouse-face highlight ; currently not evaluated :-( |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
148 help-echo "mouse-1: go to beginning, mouse-2: toggle rest visibility, mouse-3: go to end") |
e8032355ca23
(which-func-keymap): New var.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53618
diff
changeset
|
149 "]") |
51349 | 150 "Format for displaying the function in the mode line." |
151 :group 'which-func | |
152 :type 'sexp) | |
153 ;;;###autoload (put 'which-func-format 'risky-local-variable t) | |
154 | |
98406
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
155 (defvar which-func-imenu-joiner-function #'last |
98407
352e7f3ed660
(which-func-imenu-joiner-function): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
98406
diff
changeset
|
156 "Function to join together multiple levels of imenu nomenclature. |
352e7f3ed660
(which-func-imenu-joiner-function): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
98406
diff
changeset
|
157 Called with a single argument, a list of strings giving the names |
352e7f3ed660
(which-func-imenu-joiner-function): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
98406
diff
changeset
|
158 of the menus we had to traverse to get to the item. Returns a |
352e7f3ed660
(which-func-imenu-joiner-function): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
98406
diff
changeset
|
159 single string, the new name of the item.") |
98406
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
160 |
51349 | 161 (defvar which-func-cleanup-function nil |
162 "Function to transform a string before displaying it in the mode line. | |
163 The function is called with one argument, the string to display. | |
164 Its return value is displayed in the modeline. | |
165 If nil, no function is called. The default value is nil. | |
166 | |
167 This feature can be useful if Imenu is set up to make more | |
168 detailed entries (e.g., containing the argument list of a function), | |
169 and you want to simplify them for the mode line | |
170 \(e.g., removing the parameter list to just have the function name.)") | |
171 | |
172 ;;; Code, nothing to customize below here | |
173 ;;; ------------------------------------- | |
174 ;;; | |
175 (require 'imenu) | |
176 | |
177 (defvar which-func-table (make-hash-table :test 'eq :weakness 'key)) | |
178 | |
179 (defconst which-func-current | |
180 '(:eval (gethash (selected-window) which-func-table which-func-unknown))) | |
181 ;;;###autoload (put 'which-func-current 'risky-local-variable t) | |
182 | |
183 (defvar which-func-mode nil | |
184 "Non-nil means display current function name in mode line. | |
185 This makes a difference only if `which-function-mode' is non-nil.") | |
186 (make-variable-buffer-local 'which-func-mode) | |
187 ;;(put 'which-func-mode 'permanent-local t) | |
188 | |
189 (add-hook 'find-file-hook 'which-func-ff-hook t) | |
190 | |
191 (defun which-func-ff-hook () | |
192 "File find hook for Which Function mode. | |
193 It creates the Imenu index for the buffer, if necessary." | |
194 (setq which-func-mode | |
195 (and which-function-mode | |
196 (or (eq which-func-modes t) | |
197 (member major-mode which-func-modes)))) | |
198 | |
199 (condition-case nil | |
200 (if (and which-func-mode | |
201 (not (member major-mode which-func-non-auto-modes)) | |
202 (or (null which-func-maxout) | |
203 (< buffer-saved-size which-func-maxout) | |
204 (= which-func-maxout 0))) | |
205 (setq imenu--index-alist | |
206 (save-excursion (funcall imenu-create-index-function)))) | |
207 (error | |
208 (setq which-func-mode nil)))) | |
209 | |
210 (defun which-func-update () | |
211 ;; "Update the Which-Function mode display for all windows." | |
212 ;; (walk-windows 'which-func-update-1 nil 'visible)) | |
213 (which-func-update-1 (selected-window))) | |
214 | |
215 (defun which-func-update-1 (window) | |
56689
f54e121491eb
(which-func-update-1): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
56442
diff
changeset
|
216 "Update the Which Function mode display for window WINDOW." |
51349 | 217 (with-selected-window window |
218 (when which-func-mode | |
219 (condition-case info | |
220 (let ((current (which-function))) | |
221 (unless (equal current (gethash window which-func-table)) | |
222 (puthash window current which-func-table) | |
223 (force-mode-line-update))) | |
224 (error | |
62858
c23f28be371c
(which-func-update-1): Turn the mode
Richard M. Stallman <rms@gnu.org>
parents:
61089
diff
changeset
|
225 (setq which-func-mode nil) |
51349 | 226 (error "Error in which-func-update: %s" info)))))) |
227 | |
228 ;;;###autoload | |
229 (defalias 'which-func-mode 'which-function-mode) | |
230 | |
231 (defvar which-func-update-timer nil) | |
232 | |
233 ;; This is the name people would normally expect. | |
234 ;;;###autoload | |
235 (define-minor-mode which-function-mode | |
236 "Toggle Which Function mode, globally. | |
237 When Which Function mode is enabled, the current function name is | |
238 continuously displayed in the mode line, in certain major modes. | |
239 | |
78487
419c5c316b51
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78234
diff
changeset
|
240 With prefix ARG, turn Which Function mode on if arg is positive, |
51349 | 241 and off otherwise." |
242 :global t :group 'which-func | |
243 (if which-function-mode | |
244 ;;Turn it on | |
245 (progn | |
246 (setq which-func-update-timer | |
247 (run-with-idle-timer idle-update-delay t 'which-func-update)) | |
248 (dolist (buf (buffer-list)) | |
249 (with-current-buffer buf | |
250 (setq which-func-mode | |
251 (or (eq which-func-modes t) | |
252 (member major-mode which-func-modes)))))) | |
253 ;; Turn it off | |
53618
bd715b02e44e
David Ponce <david@dponce.com>
Glenn Morris <rgm@gnu.org>
parents:
52691
diff
changeset
|
254 (when (timerp which-func-update-timer) |
bd715b02e44e
David Ponce <david@dponce.com>
Glenn Morris <rgm@gnu.org>
parents:
52691
diff
changeset
|
255 (cancel-timer which-func-update-timer)) |
51349 | 256 (setq which-func-update-timer nil) |
257 (dolist (buf (buffer-list)) | |
258 (with-current-buffer buf (setq which-func-mode nil))))) | |
259 | |
260 (defvar which-function-imenu-failed nil | |
261 "Locally t in a buffer if `imenu--make-index-alist' found nothing there.") | |
262 | |
52691
ccda1b53b035
(which-func-modes): Add ada-mode.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
263 (defvar which-func-functions nil |
ccda1b53b035
(which-func-modes): Add ada-mode.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
264 "List of functions for `which-function' to call with no arguments. |
ccda1b53b035
(which-func-modes): Add ada-mode.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
265 It calls them sequentially, and if any returns non-nil, |
ccda1b53b035
(which-func-modes): Add ada-mode.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
266 `which-function' uses that name and stops looking for the name.") |
ccda1b53b035
(which-func-modes): Add ada-mode.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
267 |
51349 | 268 (defun which-function () |
269 "Return current function name based on point. | |
72144
2824d0383afd
(which-function): Fix documentation/comment typo.
Nick Roberts <nickrob@snap.net.nz>
parents:
68773
diff
changeset
|
270 Uses `which-func-functions', `imenu--index-alist' |
52691
ccda1b53b035
(which-func-modes): Add ada-mode.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
271 or `add-log-current-defun-function'. |
51349 | 272 If no function name is found, return nil." |
58774 | 273 (let ((name |
72144
2824d0383afd
(which-function): Fix documentation/comment typo.
Nick Roberts <nickrob@snap.net.nz>
parents:
68773
diff
changeset
|
274 ;; Try the `which-func-functions' functions first. |
58774 | 275 (run-hook-with-args-until-success 'which-func-functions))) |
52691
ccda1b53b035
(which-func-modes): Add ada-mode.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
276 |
51349 | 277 ;; If Imenu is loaded, try to make an index alist with it. |
52691
ccda1b53b035
(which-func-modes): Add ada-mode.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
278 (when (and (null name) |
ccda1b53b035
(which-func-modes): Add ada-mode.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
279 (boundp 'imenu--index-alist) (null imenu--index-alist) |
51349 | 280 (null which-function-imenu-failed)) |
61089
dc55bf752d7c
(which-function): Be robust in the face of an
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58774
diff
changeset
|
281 (imenu--make-index-alist t) |
51349 | 282 (unless imenu--index-alist |
283 (make-local-variable 'which-function-imenu-failed) | |
284 (setq which-function-imenu-failed t))) | |
285 ;; If we have an index alist, use it. | |
52691
ccda1b53b035
(which-func-modes): Add ada-mode.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
286 (when (and (null name) |
ccda1b53b035
(which-func-modes): Add ada-mode.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
287 (boundp 'imenu--index-alist) imenu--index-alist) |
51349 | 288 (let ((alist imenu--index-alist) |
289 (minoffset (point-max)) | |
98406
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
290 offset pair mark imstack namestack) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
291 ;; Elements of alist are either ("name" . marker), or |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
292 ;; ("submenu" ("name" . marker) ... ). The list can be |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
293 ;; arbitrarily nested. |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
294 (while (or alist imstack) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
295 (if alist |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
296 (progn |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
297 (setq pair (car-safe alist) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
298 alist (cdr-safe alist)) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
299 |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
300 (cond ((atom pair)) ; skip anything not a cons |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
301 |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
302 ((imenu--subalist-p pair) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
303 (setq imstack (cons alist imstack) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
304 namestack (cons (car pair) namestack) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
305 alist (cdr pair))) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
306 |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
307 ((number-or-marker-p (setq mark (cdr pair))) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
308 (if (>= (setq offset (- (point) mark)) 0) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
309 (if (< offset minoffset) ; find the closest item |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
310 (setq minoffset offset |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
311 name (funcall |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
312 which-func-imenu-joiner-function |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
313 (reverse (cons (car pair) namestack))))) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
314 ;; Entries in order, so can skip all those after point. |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
315 (setq alist nil |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
316 imstack nil))))) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
317 |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
318 (setq alist (car imstack) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
319 namestack (cdr namestack) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
320 imstack (cdr imstack)))))) |
6d3479368dfd
Daniel Colascione <danc at merrillpress.com>
Glenn Morris <rgm@gnu.org>
parents:
94673
diff
changeset
|
321 |
51349 | 322 ;; Try using add-log support. |
323 (when (and (null name) (boundp 'add-log-current-defun-function) | |
324 add-log-current-defun-function) | |
325 (setq name (funcall add-log-current-defun-function))) | |
326 ;; Filter the name if requested. | |
327 (when name | |
328 (if which-func-cleanup-function | |
329 (funcall which-func-cleanup-function name) | |
330 name)))) | |
331 | |
332 (provide 'which-func) | |
333 | |
61089
dc55bf752d7c
(which-function): Be robust in the face of an
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58774
diff
changeset
|
334 ;; arch-tag: fa8a55c7-bfe3-4ffc-95ab-01bf21796827 |
51349 | 335 ;;; which-func.el ends here |