Fix more minor mode docstrings.
[emacs.git] / lisp / progmodes / which-func.el
blobe27d07854c86e19aa4f321bde81c50ca4ec28e79
1 ;;; which-func.el --- print current function in mode line
3 ;; Copyright (C) 1994, 1997-1998, 2001-2011 Free Software Foundation, Inc.
5 ;; Author: Alex Rezinsky <alexr@msil.sps.mot.com>
6 ;; (doesn't seem to be responsive any more)
7 ;; Keywords: mode-line, imenu, tools
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; This package prints name of function where your current point is
27 ;; located in mode line. It assumes that you work with imenu package
28 ;; and imenu--index-alist is up to date.
30 ;; KNOWN BUGS
31 ;; ----------
32 ;; Really this package shows not "function where the current point is
33 ;; located now", but "nearest function which defined above the current
34 ;; point". So if your current point is located after end of function
35 ;; FOO but before begin of function BAR, FOO will be displayed in mode
36 ;; line.
37 ;; - if two windows display the same buffer, both windows
38 ;; show the same `which-func' information.
40 ;; TODO LIST
41 ;; ---------
42 ;; 1. Dependence on imenu package should be removed. Separate
43 ;; function determination mechanism should be used to determine the end
44 ;; of a function as well as the beginning of a function.
45 ;; 2. This package should be realized with the help of overlay
46 ;; properties instead of imenu--index-alist variable.
48 ;;; History:
50 ;; THANKS TO
51 ;; ---------
52 ;; Per Abrahamsen <abraham@iesd.auc.dk>
53 ;; Some ideas (inserting in mode-line, using of post-command hook
54 ;; and toggling this mode) have been borrowed from his package
55 ;; column.el
56 ;; Peter Eisenhauer <pipe@fzi.de>
57 ;; Bug fixing in case nested indexes.
58 ;; Terry Tateyama <ttt@ursa0.cs.utah.edu>
59 ;; Suggestion to use find-file-hook for first imenu
60 ;; index building.
62 ;;; Code:
64 ;; Variables for customization
65 ;; ---------------------------
67 (defvar which-func-unknown "???"
68 "String to display in the mode line when current function is unknown.")
70 (defgroup which-func nil
71 "Mode to display the current function name in the modeline."
72 :group 'tools
73 :version "20.3")
75 (defcustom which-func-modes
76 '(emacs-lisp-mode c-mode c++-mode perl-mode cperl-mode python-mode
77 makefile-mode sh-mode fortran-mode f90-mode ada-mode
78 diff-mode)
79 "List of major modes for which Which Function mode should be used.
80 For other modes it is disabled. If this is equal to t,
81 then Which Function mode is enabled in any major mode that supports it."
82 :group 'which-func
83 :type '(choice (const :tag "All modes" t)
84 (repeat (symbol :tag "Major mode"))))
86 (defcustom which-func-non-auto-modes nil
87 "List of major modes where Which Function mode is inactive till Imenu is used.
88 This means that Which Function mode won't really do anything
89 until you use Imenu, in these modes. Note that files
90 larger than `which-func-maxout' behave in this way too;
91 Which Function mode doesn't do anything until you use Imenu."
92 :group 'which-func
93 :type '(repeat (symbol :tag "Major mode")))
95 (defcustom which-func-maxout 500000
96 "Don't automatically compute the Imenu menu if buffer is this big or bigger.
97 Zero means compute the Imenu menu regardless of size."
98 :group 'which-func
99 :type 'integer)
101 (defvar which-func-keymap
102 (let ((map (make-sparse-keymap)))
103 (define-key map [mode-line mouse-1] 'beginning-of-defun)
104 (define-key map [mode-line mouse-2]
105 (lambda ()
106 (interactive)
107 (if (eq (point-min) 1)
108 (narrow-to-defun)
109 (widen))))
110 (define-key map [mode-line mouse-3] 'end-of-defun)
111 map)
112 "Keymap to display on mode line which-func.")
114 (defface which-func
115 ;; Whether `font-lock-function-name-face' is an appropriate face to
116 ;; inherit depends on the mode-line face; define several variants based
117 ;; on the default mode-line face.
118 '(;; The default mode-line face on a high-color display is a relatively
119 ;; light color ("grey75"), and only the light-background variant of
120 ;; `font-lock-function-name-face' is visible against it.
121 (((class color) (min-colors 88) (background light))
122 :inherit font-lock-function-name-face)
123 ;; The default mode-line face on other display types is inverse-video;
124 ;; it seems that only in the dark-background case is
125 ;; `font-lock-function-name-face' visible against it.
126 (((class grayscale mono) (background dark))
127 :inherit font-lock-function-name-face)
128 (((class color) (background light))
129 :inherit font-lock-function-name-face)
130 ;; If none of the above cases, use an explicit color chosen to contrast
131 ;; well with the default mode-line face.
132 (((class color) (min-colors 88) (background dark))
133 :foreground "Blue1")
134 (((background dark))
135 :foreground "Blue1")
137 :foreground "LightSkyBlue"))
138 "Face used to highlight mode line function names."
139 :group 'which-func)
141 (defcustom which-func-format
142 `("["
143 (:propertize which-func-current
144 local-map ,which-func-keymap
145 face which-func
146 ;;mouse-face highlight ; currently not evaluated :-(
147 help-echo "mouse-1: go to beginning\n\
148 mouse-2: toggle rest visibility\n\
149 mouse-3: go to end")
150 "]")
151 "Format for displaying the function in the mode line."
152 :group 'which-func
153 :type 'sexp)
154 ;;;###autoload (put 'which-func-format 'risky-local-variable t)
156 (defvar which-func-imenu-joiner-function (lambda (x) (car (last x)))
157 "Function to join together multiple levels of imenu nomenclature.
158 Called with a single argument, a list of strings giving the names
159 of the menus we had to traverse to get to the item. Returns a
160 single string, the new name of the item.")
162 (defvar which-func-cleanup-function nil
163 "Function to transform a string before displaying it in the mode line.
164 The function is called with one argument, the string to display.
165 Its return value is displayed in the modeline.
166 If nil, no function is called. The default value is nil.
168 This feature can be useful if Imenu is set up to make more
169 detailed entries (e.g., containing the argument list of a function),
170 and you want to simplify them for the mode line
171 \(e.g., removing the parameter list to just have the function name.)")
173 ;;; Code, nothing to customize below here
174 ;;; -------------------------------------
176 (require 'imenu)
178 (defvar which-func-table (make-hash-table :test 'eq :weakness 'key))
180 (defconst which-func-current
181 '(:eval (gethash (selected-window) which-func-table which-func-unknown)))
182 ;;;###autoload (put 'which-func-current 'risky-local-variable t)
184 (defvar which-func-mode nil
185 "Non-nil means display current function name in mode line.
186 This makes a difference only if `which-function-mode' is non-nil.")
187 (make-variable-buffer-local 'which-func-mode)
188 ;;(put 'which-func-mode 'permanent-local t)
190 (add-hook 'find-file-hook 'which-func-ff-hook t)
192 (defun which-func-ff-hook ()
193 "File find hook for Which Function mode.
194 It creates the Imenu index for the buffer, if necessary."
195 (setq which-func-mode
196 (and which-function-mode
197 (or (eq which-func-modes t)
198 (member major-mode which-func-modes))))
200 (condition-case err
201 (if (and which-func-mode
202 (not (member major-mode which-func-non-auto-modes))
203 (or (null which-func-maxout)
204 (< buffer-saved-size which-func-maxout)
205 (= which-func-maxout 0)))
206 (setq imenu--index-alist
207 (save-excursion (funcall imenu-create-index-function))))
208 (error
209 (unless (equal err '(error "This buffer cannot use `imenu-default-create-index-function'"))
210 (message "which-func-ff-hook error: %S" err))
211 (setq which-func-mode nil))))
213 (defun which-func-update ()
214 ;; "Update the Which-Function mode display for all windows."
215 ;; (walk-windows 'which-func-update-1 nil 'visible))
216 (which-func-update-1 (selected-window)))
218 (defun which-func-update-1 (window)
219 "Update the Which Function mode display for window WINDOW."
220 (with-selected-window window
221 (when which-func-mode
222 (condition-case info
223 (let ((current (which-function)))
224 (unless (equal current (gethash window which-func-table))
225 (puthash window current which-func-table)
226 (force-mode-line-update)))
227 (error
228 (setq which-func-mode nil)
229 (error "Error in which-func-update: %S" info))))))
231 ;;;###autoload
232 (defalias 'which-func-mode 'which-function-mode)
234 (defvar which-func-update-timer nil)
236 ;; This is the name people would normally expect.
237 ;;;###autoload
238 (define-minor-mode which-function-mode
239 "Toggle mode line display of current function (Which Function mode).
240 With a prefix argument ARG, enable Which Function mode if ARG is
241 positive, and disable it otherwise. If called from Lisp, enable
242 the mode if ARG is omitted or nil.
244 Which Function mode is a global minor mode. When enabled, the
245 current function name is continuously displayed in the mode line,
246 in certain major modes."
247 :global t :group 'which-func
248 (when (timerp which-func-update-timer)
249 (cancel-timer which-func-update-timer))
250 (setq which-func-update-timer nil)
251 (if which-function-mode
252 ;;Turn it on
253 (progn
254 (setq which-func-update-timer
255 (run-with-idle-timer idle-update-delay t 'which-func-update))
256 (dolist (buf (buffer-list))
257 (with-current-buffer buf
258 (setq which-func-mode
259 (or (eq which-func-modes t)
260 (member major-mode which-func-modes))))))
261 ;; Turn it off
262 (dolist (buf (buffer-list))
263 (with-current-buffer buf (setq which-func-mode nil)))))
265 (defvar which-function-imenu-failed nil
266 "Locally t in a buffer if `imenu--make-index-alist' found nothing there.")
268 (defvar which-func-functions nil
269 "List of functions for `which-function' to call with no arguments.
270 It calls them sequentially, and if any returns non-nil,
271 `which-function' uses that name and stops looking for the name.")
273 (defun which-function ()
274 "Return current function name based on point.
275 Uses `which-func-functions', `imenu--index-alist'
276 or `add-log-current-defun'.
277 If no function name is found, return nil."
278 (let ((name
279 ;; Try the `which-func-functions' functions first.
280 (run-hook-with-args-until-success 'which-func-functions)))
282 ;; If Imenu is loaded, try to make an index alist with it.
283 (when (and (null name)
284 (boundp 'imenu--index-alist) (null imenu--index-alist)
285 (null which-function-imenu-failed))
286 (imenu--make-index-alist t)
287 (unless imenu--index-alist
288 (set (make-local-variable 'which-function-imenu-failed) t)))
289 ;; If we have an index alist, use it.
290 (when (and (null name)
291 (boundp 'imenu--index-alist) imenu--index-alist)
292 (let ((alist imenu--index-alist)
293 (minoffset (point-max))
294 offset pair mark imstack namestack)
295 ;; Elements of alist are either ("name" . marker), or
296 ;; ("submenu" ("name" . marker) ... ). The list can be
297 ;; arbitrarily nested.
298 (while (or alist imstack)
299 (if (null alist)
300 (setq alist (car imstack)
301 namestack (cdr namestack)
302 imstack (cdr imstack))
304 (setq pair (car-safe alist)
305 alist (cdr-safe alist))
307 (cond
308 ((atom pair)) ; Skip anything not a cons.
310 ((imenu--subalist-p pair)
311 (setq imstack (cons alist imstack)
312 namestack (cons (car pair) namestack)
313 alist (cdr pair)))
315 ((number-or-marker-p (setq mark (cdr pair)))
316 (when (and (>= (setq offset (- (point) mark)) 0)
317 (< offset minoffset)) ; Find the closest item.
318 (setq minoffset offset
319 name (if (null which-func-imenu-joiner-function)
320 (car pair)
321 (funcall
322 which-func-imenu-joiner-function
323 (reverse (cons (car pair) namestack))))))))))))
325 ;; Try using add-log support.
326 (when (null name)
327 (setq name (add-log-current-defun)))
328 ;; Filter the name if requested.
329 (when name
330 (if which-func-cleanup-function
331 (funcall which-func-cleanup-function name)
332 name))))
334 (provide 'which-func)
336 ;;; which-func.el ends here