(bibtex-font-lock-url-regexp):
[bpt/emacs.git] / lisp / progmodes / which-func.el
CommitLineData
5e046f6d
JB
1;;; which-func.el --- print current function in mode line
2
3;; Copyright (C) 1994, 1997, 1998, 2001, 2003 Free Software Foundation, Inc.
4
5;; Author: Alex Rezinsky <alexr@msil.sps.mot.com>
6;; (doesn't seem to be responsive any more)
7;; Keywords: mode-line, imenu, tools
8
9;; This file is part of GNU Emacs.
10
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 2, or (at your option)
14;; any later version.
15
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.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
25
26;;; Commentary:
27
28;; This package prints name of function where your current point is
29;; located in mode line. It assumes that you work with imenu package
30;; and imenu--index-alist is up to date.
31
32;; KNOWN BUGS
33;; ----------
34;; Really this package shows not "function where the current point is
35;; located now", but "nearest function which defined above the current
36;; point". So if your current point is located after end of function
37;; FOO but before begin of function BAR, FOO will be displayed in mode
38;; line.
39;; - if two windows display the same buffer, both windows
40;; show the same `which-func' information.
41
42;; TODO LIST
43;; ---------
44;; 1. Dependence on imenu package should be removed. Separate
45;; function determination mechanism should be used to determine the end
46;; of a function as well as the beginning of a function.
47;; 2. This package should be realized with the help of overlay
48;; properties instead of imenu--index-alist variable.
49
50;;; History:
51
52;; THANKS TO
53;; ---------
54;; Per Abrahamsen <abraham@iesd.auc.dk>
55;; Some ideas (inserting in mode-line, using of post-command hook
56;; and toggling this mode) have been borrowed from his package
57;; column.el
58;; Peter Eisenhauer <pipe@fzi.de>
59;; Bug fixing in case nested indexes.
60;; Terry Tateyama <ttt@ursa0.cs.utah.edu>
61;; Suggestion to use find-file-hook for first imenu
62;; index building.
63
64;;; Code:
65
66;; Variables for customization
67;; ---------------------------
68;;
69(defvar which-func-unknown "???"
70 "String to display in the mode line when current function is unknown.")
71
72(defgroup which-func nil
73 "Mode to display the current function name in the modeline."
74 :group 'tools
75 :version "20.3")
76
77(defcustom which-func-modes
78 '(emacs-lisp-mode c-mode c++-mode perl-mode cperl-mode makefile-mode
35e376af 79 sh-mode fortran-mode f90-mode ada-mode)
5e046f6d
JB
80 "List of major modes for which Which Function mode should be used.
81For other modes it is disabled. If this is equal to t,
82then 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.
89This means that Which Function mode won't really do anything
90until you use Imenu, in these modes. Note that files
91larger than `which-func-maxout' behave in this way too;
92Which 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.
98Zero means compute the Imenu menu regardless of size."
99 :group 'which-func
100 :type 'integer)
101
77787810
DP
102(defvar which-func-keymap
103 (let ((map (make-sparse-keymap)))
104 (define-key map [mode-line mouse-1] 'beginning-of-defun)
105 (define-key map [mode-line mouse-2]
106 (lambda ()
107 (interactive)
108 (if (eq (point-min) 1)
109 (narrow-to-defun)
110 (widen))))
111 (define-key map [mode-line mouse-3] 'end-of-defun)
112 map)
113 "Keymap to display on mode line which-func.")
114
115(defface which-func-face
116 '((t (:inherit font-lock-function-name-face)))
117 "Face used to highlight mode line function names.
118Defaults to `font-lock-function-name-face' if font-lock is loaded."
119 :group 'which-func)
120
121(defcustom which-func-format
122 `("["
123 (:propertize which-func-current
124 local-map ,which-func-keymap
125 face which-func-face
126 ;;mouse-face highlight ; currently not evaluated :-(
127 help-echo "mouse-1: go to beginning, mouse-2: toggle rest visibility, mouse-3: go to end")
128 "]")
5e046f6d
JB
129 "Format for displaying the function in the mode line."
130 :group 'which-func
131 :type 'sexp)
132;;;###autoload (put 'which-func-format 'risky-local-variable t)
133
134(defvar which-func-cleanup-function nil
135 "Function to transform a string before displaying it in the mode line.
136The function is called with one argument, the string to display.
137Its return value is displayed in the modeline.
138If nil, no function is called. The default value is nil.
139
140This feature can be useful if Imenu is set up to make more
141detailed entries (e.g., containing the argument list of a function),
142and you want to simplify them for the mode line
143\(e.g., removing the parameter list to just have the function name.)")
144
145;;; Code, nothing to customize below here
146;;; -------------------------------------
147;;;
148(require 'imenu)
149
150(defvar which-func-table (make-hash-table :test 'eq :weakness 'key))
151
152(defconst which-func-current
153 '(:eval (gethash (selected-window) which-func-table which-func-unknown)))
154;;;###autoload (put 'which-func-current 'risky-local-variable t)
155
156(defvar which-func-mode nil
157 "Non-nil means display current function name in mode line.
158This makes a difference only if `which-function-mode' is non-nil.")
159(make-variable-buffer-local 'which-func-mode)
160;;(put 'which-func-mode 'permanent-local t)
161
162(add-hook 'find-file-hook 'which-func-ff-hook t)
163
164(defun which-func-ff-hook ()
165 "File find hook for Which Function mode.
166It creates the Imenu index for the buffer, if necessary."
167 (setq which-func-mode
168 (and which-function-mode
169 (or (eq which-func-modes t)
170 (member major-mode which-func-modes))))
171
172 (condition-case nil
173 (if (and which-func-mode
174 (not (member major-mode which-func-non-auto-modes))
175 (or (null which-func-maxout)
176 (< buffer-saved-size which-func-maxout)
177 (= which-func-maxout 0)))
178 (setq imenu--index-alist
179 (save-excursion (funcall imenu-create-index-function))))
180 (error
181 (setq which-func-mode nil))))
182
183(defun which-func-update ()
184 ;; "Update the Which-Function mode display for all windows."
185 ;; (walk-windows 'which-func-update-1 nil 'visible))
186 (which-func-update-1 (selected-window)))
187
188(defun which-func-update-1 (window)
a0374804 189 "Update the Which Function mode display for window WINDOW."
5e046f6d
JB
190 (with-selected-window window
191 (when which-func-mode
192 (condition-case info
193 (let ((current (which-function)))
194 (unless (equal current (gethash window which-func-table))
195 (puthash window current which-func-table)
196 (force-mode-line-update)))
197 (error
198 (which-func-mode -1)
199 (error "Error in which-func-update: %s" info))))))
200
201;;;###autoload
202(defalias 'which-func-mode 'which-function-mode)
203
204(defvar which-func-update-timer nil)
205
206;; This is the name people would normally expect.
207;;;###autoload
208(define-minor-mode which-function-mode
209 "Toggle Which Function mode, globally.
210When Which Function mode is enabled, the current function name is
211continuously displayed in the mode line, in certain major modes.
212
213With prefix ARG, turn Which Function mode on iff arg is positive,
214and off otherwise."
215 :global t :group 'which-func
216 (if which-function-mode
217 ;;Turn it on
218 (progn
219 (setq which-func-update-timer
220 (run-with-idle-timer idle-update-delay t 'which-func-update))
221 (dolist (buf (buffer-list))
222 (with-current-buffer buf
223 (setq which-func-mode
224 (or (eq which-func-modes t)
225 (member major-mode which-func-modes))))))
226 ;; Turn it off
f2633782
GM
227 (when (timerp which-func-update-timer)
228 (cancel-timer which-func-update-timer))
5e046f6d
JB
229 (setq which-func-update-timer nil)
230 (dolist (buf (buffer-list))
231 (with-current-buffer buf (setq which-func-mode nil)))))
232
233(defvar which-function-imenu-failed nil
234 "Locally t in a buffer if `imenu--make-index-alist' found nothing there.")
235
35e376af
RS
236(defvar which-func-functions nil
237 "List of functions for `which-function' to call with no arguments.
238It calls them sequentially, and if any returns non-nil,
239`which-function' uses that name and stops looking for the name.")
240
5e046f6d
JB
241(defun which-function ()
242 "Return current function name based on point.
35e376af
RS
243Uses `which-function-functions', `imenu--index-alist'
244or `add-log-current-defun-function'.
5e046f6d
JB
245If no function name is found, return nil."
246 (let (name)
35e376af
RS
247 ;; Try the which-function-functions functions first.
248 (let ((hooks which-func-functions))
249 (while hooks
250 (let ((value (funcall (car hooks))))
251 (when value
252 (setq name value
253 hooks nil)))
254 (setq hooks (cdr hooks))))
255
5e046f6d 256 ;; If Imenu is loaded, try to make an index alist with it.
35e376af
RS
257 (when (and (null name)
258 (boundp 'imenu--index-alist) (null imenu--index-alist)
5e046f6d
JB
259 (null which-function-imenu-failed))
260 (imenu--make-index-alist)
261 (unless imenu--index-alist
262 (make-local-variable 'which-function-imenu-failed)
263 (setq which-function-imenu-failed t)))
264 ;; If we have an index alist, use it.
35e376af
RS
265 (when (and (null name)
266 (boundp 'imenu--index-alist) imenu--index-alist)
5e046f6d
JB
267 (let ((alist imenu--index-alist)
268 (minoffset (point-max))
269 offset elem pair mark)
270 (while alist
271 (setq elem (car-safe alist)
272 alist (cdr-safe alist))
273 ;; Elements of alist are either ("name" . marker), or
274 ;; ("submenu" ("name" . marker) ... ).
275 (unless (listp (cdr elem))
276 (setq elem (list elem)))
277 (while elem
278 (setq pair (car elem)
279 elem (cdr elem))
280 (and (consp pair)
281 (number-or-marker-p (setq mark (cdr pair)))
282 (if (>= (setq offset (- (point) mark)) 0)
283 (if (< offset minoffset) ; find the closest item
284 (setq minoffset offset
285 name (car pair)))
286 ;; Entries in order, so can skip all those after point.
287 (setq elem nil)))))))
288 ;; Try using add-log support.
289 (when (and (null name) (boundp 'add-log-current-defun-function)
290 add-log-current-defun-function)
291 (setq name (funcall add-log-current-defun-function)))
292 ;; Filter the name if requested.
293 (when name
294 (if which-func-cleanup-function
295 (funcall which-func-cleanup-function name)
296 name))))
297
298(provide 'which-func)
299
ab5796a9 300;;; arch-tag: fa8a55c7-bfe3-4ffc-95ab-01bf21796827
5e046f6d 301;;; which-func.el ends here