annotate lisp/which-func.el @ 50872:ba2845537409

(mouse-wheel-scroll-amount): Don't quote nil and t in docstrings.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 06 May 2003 17:54:12 +0000
parents c2fa5aacd170
children 322e59c8a00c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 38423
diff changeset
1 ;;; which-func.el --- print current function in mode line
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
38405
d215f2e13397 (which-func-mode, which-func-ff-hook)
Gerd Moellmann <gerd@gnu.org>
parents: 38194
diff changeset
3 ;; Copyright (C) 1994, 1997, 1998, 2001 Free Software Foundation, Inc.
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5 ;; Author: Alex Rezinsky <alexr@msil.sps.mot.com>
33702
683f3781ab81 Update maintainer line.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 32190
diff changeset
6 ;; (doesn't seem to be responsive any more)
21697
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
7 ;; Keywords: mode-line, imenu, tools
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 ;; any later version.
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24 ;; Boston, MA 02111-1307, USA.
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25
21697
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
26 ;;; Commentary:
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
27
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
28 ;; This package prints name of function where your current point is
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
29 ;; located in mode line. It assumes that you work with imenu package
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
30 ;; and imenu--index-alist is up to date.
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31
21697
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
32 ;; KNOWN BUGS
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
33 ;; ----------
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
34 ;; Really this package shows not "function where the current point is
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
35 ;; located now", but "nearest function which defined above the current
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
36 ;; point". So if your current point is located after end of function
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
37 ;; FOO but before begin of function BAR, FOO will be displayed in mode
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
38 ;; line.
36606
a72b3da04728 (which-func-modes): Add cperl-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 35990
diff changeset
39 ;; - if two windows display the same buffer, both windows
a72b3da04728 (which-func-modes): Add cperl-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 35990
diff changeset
40 ;; show the same `which-func' information.
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41
21697
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
42 ;; TODO LIST
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
43 ;; ---------
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
44 ;; 1. Dependence on imenu package should be removed. Separate
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
45 ;; function determination mechanism should be used to determine the end
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
46 ;; of a function as well as the beginning of a function.
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
47 ;; 2. This package should be realized with the help of overlay
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
48 ;; properties instead of imenu--index-alist variable.
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
49
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
50 ;;; History:
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51
21697
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
52 ;; THANKS TO
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
53 ;; ---------
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
54 ;; Per Abrahamsen <abraham@iesd.auc.dk>
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
55 ;; Some ideas (inserting in mode-line, using of post-command hook
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
56 ;; and toggling this mode) have been borrowed from his package
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
57 ;; column.el
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
58 ;; Peter Eisenhauer <pipe@fzi.de>
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
59 ;; Bug fixing in case nested indexes.
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
60 ;; Terry Tateyama <ttt@ursa0.cs.utah.edu>
46899
f00337f04e78 Use find-file-hook instead of find-file-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41357
diff changeset
61 ;; Suggestion to use find-file-hook for first imenu
21697
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
62 ;; index building.
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63
21697
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
64 ;;; Code:
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
65
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
66 ;; Variables for customization
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
67 ;; ---------------------------
49597
e88404e8f2cf Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 46899
diff changeset
68 ;;
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 (defvar which-func-unknown "???"
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70 "String to display in the mode line when current function is unknown.")
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71
21653
e95a88dc6110 *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 20573
diff changeset
72 (defgroup which-func nil
e95a88dc6110 *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 20573
diff changeset
73 "Mode to display the current function name in the modeline."
e95a88dc6110 *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 20573
diff changeset
74 :group 'tools
e95a88dc6110 *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 20573
diff changeset
75 :version "20.3")
e95a88dc6110 *** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents: 20573
diff changeset
76
32190
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
77 (defcustom which-func-modes
36606
a72b3da04728 (which-func-modes): Add cperl-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 35990
diff changeset
78 '(emacs-lisp-mode c-mode c++-mode perl-mode cperl-mode makefile-mode
50649
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
79 sh-mode fortran-mode f90-mode)
22134
29c2db002dd5 (which-func-modes): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 21964
diff changeset
80 "List of major modes for which Which Function mode should be used.
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 For other modes it is disabled. If this is equal to t,
22134
29c2db002dd5 (which-func-modes): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 21964
diff changeset
82 then Which Function mode is enabled in any major mode that supports it."
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 :group 'which-func
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
84 :type '(choice (const :tag "All modes" t)
22134
29c2db002dd5 (which-func-modes): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 21964
diff changeset
85 (repeat (symbol :tag "Major mode"))))
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
86
21964
390352ec56c6 (which-func-non-auto-modes): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 21960
diff changeset
87 (defcustom which-func-non-auto-modes nil
390352ec56c6 (which-func-non-auto-modes): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 21960
diff changeset
88 "List of major modes where Which Function mode is inactive till Imenu is used.
22134
29c2db002dd5 (which-func-modes): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 21964
diff changeset
89 This means that Which Function mode won't really do anything
29c2db002dd5 (which-func-modes): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 21964
diff changeset
90 until you use Imenu, in these modes. Note that files
29c2db002dd5 (which-func-modes): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 21964
diff changeset
91 larger than `which-func-maxout' behave in this way too;
29c2db002dd5 (which-func-modes): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 21964
diff changeset
92 Which Function mode doesn't do anything until you use Imenu."
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93 :group 'which-func
22134
29c2db002dd5 (which-func-modes): Fix custom type.
Richard M. Stallman <rms@gnu.org>
parents: 21964
diff changeset
94 :type '(repeat (symbol :tag "Major mode")))
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95
38194
a23820c19d03 (which-func-maxout): Increase default to 500000.
Richard M. Stallman <rms@gnu.org>
parents: 36606
diff changeset
96 (defcustom which-func-maxout 500000
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97 "Don't automatically compute the Imenu menu if buffer is this big or bigger.
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
98 Zero means compute the Imenu menu regardless of size."
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
99 :group 'which-func
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100 :type 'integer)
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101
32190
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
102 (defcustom which-func-format '("[" which-func-current "]")
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
103 "Format for displaying the function in the mode line."
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 :group 'which-func
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
105 :type 'sexp)
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
106
25425
f85f374e5395 (which-func-cleanup-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24649
diff changeset
107 (defvar which-func-cleanup-function nil
f85f374e5395 (which-func-cleanup-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24649
diff changeset
108 "Function to transform a string before displaying it in the mode line.
f85f374e5395 (which-func-cleanup-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24649
diff changeset
109 The function is called with one argument, the string to display.
f85f374e5395 (which-func-cleanup-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24649
diff changeset
110 Its return value is displayed in the modeline.
f85f374e5395 (which-func-cleanup-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24649
diff changeset
111 If nil, no function is called. The default value is nil.
f85f374e5395 (which-func-cleanup-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24649
diff changeset
112
f85f374e5395 (which-func-cleanup-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24649
diff changeset
113 This feature can be useful if Imenu is set up to make more
f85f374e5395 (which-func-cleanup-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24649
diff changeset
114 detailed entries (e.g., containing the argument list of a function),
f85f374e5395 (which-func-cleanup-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24649
diff changeset
115 and you want to simplify them for the mode line
f85f374e5395 (which-func-cleanup-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24649
diff changeset
116 \(e.g., removing the parameter list to just have the function name.)")
f85f374e5395 (which-func-cleanup-function): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 24649
diff changeset
117
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118 ;;; Code, nothing to customize below here
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
119 ;;; -------------------------------------
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120 ;;;
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121 (require 'imenu)
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
123 (defvar which-func-current which-func-unknown)
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124 (defvar which-func-previous which-func-unknown)
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
125 (make-variable-buffer-local 'which-func-current)
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126 (make-variable-buffer-local 'which-func-previous)
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
128 (defvar which-func-mode nil
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129 "Non-nil means display current function name in mode line.
38437
e5c58ab7a99f Doc fix.
Pavel Janík <Pavel@Janik.cz>
parents: 38436
diff changeset
130 This makes a difference only if `which-function-mode' is non-nil.")
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
131 (make-variable-buffer-local 'which-func-mode)
32190
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
132 ;;(put 'which-func-mode 'permanent-local t)
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
133
46899
f00337f04e78 Use find-file-hook instead of find-file-hooks.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 41357
diff changeset
134 (add-hook 'find-file-hook 'which-func-ff-hook t)
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136 (defun which-func-ff-hook ()
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
137 "File find hook for Which Function mode.
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138 It creates the Imenu index for the buffer, if necessary."
32190
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
139 (setq which-func-mode
38405
d215f2e13397 (which-func-mode, which-func-ff-hook)
Gerd Moellmann <gerd@gnu.org>
parents: 38194
diff changeset
140 (and which-function-mode
d215f2e13397 (which-func-mode, which-func-ff-hook)
Gerd Moellmann <gerd@gnu.org>
parents: 38194
diff changeset
141 (or (eq which-func-modes t)
d215f2e13397 (which-func-mode, which-func-ff-hook)
Gerd Moellmann <gerd@gnu.org>
parents: 38194
diff changeset
142 (member major-mode which-func-modes))))
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143
22308
87366acfb1e9 (which-func-ff-hook): If imenu gets error,
Karl Heuer <kwzh@gnu.org>
parents: 22134
diff changeset
144 (condition-case nil
87366acfb1e9 (which-func-ff-hook): If imenu gets error,
Karl Heuer <kwzh@gnu.org>
parents: 22134
diff changeset
145 (if (and which-func-mode
87366acfb1e9 (which-func-ff-hook): If imenu gets error,
Karl Heuer <kwzh@gnu.org>
parents: 22134
diff changeset
146 (not (member major-mode which-func-non-auto-modes))
32190
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
147 (or (null which-func-maxout)
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
148 (< buffer-saved-size which-func-maxout)
22308
87366acfb1e9 (which-func-ff-hook): If imenu gets error,
Karl Heuer <kwzh@gnu.org>
parents: 22134
diff changeset
149 (= which-func-maxout 0)))
87366acfb1e9 (which-func-ff-hook): If imenu gets error,
Karl Heuer <kwzh@gnu.org>
parents: 22134
diff changeset
150 (setq imenu--index-alist
87366acfb1e9 (which-func-ff-hook): If imenu gets error,
Karl Heuer <kwzh@gnu.org>
parents: 22134
diff changeset
151 (save-excursion (funcall imenu-create-index-function))))
87366acfb1e9 (which-func-ff-hook): If imenu gets error,
Karl Heuer <kwzh@gnu.org>
parents: 22134
diff changeset
152 (error
87366acfb1e9 (which-func-ff-hook): If imenu gets error,
Karl Heuer <kwzh@gnu.org>
parents: 22134
diff changeset
153 (setq which-func-mode nil))))
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 (defun which-func-update ()
41357
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
156 "Update the Which-Function mode display for all windows."
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
157 (walk-windows 'which-func-update-1 nil 'visible))
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
158
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
159 (defun which-func-update-1 (window)
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
160 "Update the Which-Function mode display for window WINDOW."
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
161 (save-selected-window
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
162 (select-window window)
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
163 ;; Update the string containing the current function.
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
164 (when which-func-mode
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
165 (condition-case info
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
166 (progn
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
167 (setq which-func-current (or (which-function) which-func-unknown))
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
168 (unless (string= which-func-current which-func-previous)
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
169 (force-mode-line-update)
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
170 (setq which-func-previous which-func-current)))
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
171 (error
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
172 (which-func-mode -1)
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
173 (error "Error in which-func-update: %s" info))))))
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174
38194
a23820c19d03 (which-func-maxout): Increase default to 500000.
Richard M. Stallman <rms@gnu.org>
parents: 36606
diff changeset
175 ;;;###autoload
a23820c19d03 (which-func-maxout): Increase default to 500000.
Richard M. Stallman <rms@gnu.org>
parents: 36606
diff changeset
176 (defalias 'which-func-mode 'which-function-mode)
a23820c19d03 (which-func-maxout): Increase default to 500000.
Richard M. Stallman <rms@gnu.org>
parents: 36606
diff changeset
177
21960
79c7369b9ab4 (which-function-mode): New alias.
Richard M. Stallman <rms@gnu.org>
parents: 21697
diff changeset
178 ;; This is the name people would normally expect.
79c7369b9ab4 (which-function-mode): New alias.
Richard M. Stallman <rms@gnu.org>
parents: 21697
diff changeset
179 ;;;###autoload
38194
a23820c19d03 (which-func-maxout): Increase default to 500000.
Richard M. Stallman <rms@gnu.org>
parents: 36606
diff changeset
180 (define-minor-mode which-function-mode
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
181 "Toggle Which Function mode, globally.
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
182 When Which Function mode is enabled, the current function name is
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
183 continuously displayed in the mode line, in certain major modes.
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
184
32190
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
185 With prefix ARG, turn Which Function mode on iff arg is positive,
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
186 and off otherwise."
36606
a72b3da04728 (which-func-modes): Add cperl-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 35990
diff changeset
187 :global t :group 'which-func
38405
d215f2e13397 (which-func-mode, which-func-ff-hook)
Gerd Moellmann <gerd@gnu.org>
parents: 38194
diff changeset
188 (if which-function-mode
35990
7ded5b71182f (which-func-mode): Invert which-func-mode-global.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33702
diff changeset
189 ;;Turn it on
32190
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
190 (progn
35990
7ded5b71182f (which-func-mode): Invert which-func-mode-global.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33702
diff changeset
191 (add-hook 'post-command-idle-hook 'which-func-update)
7ded5b71182f (which-func-mode): Invert which-func-mode-global.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33702
diff changeset
192 (dolist (buf (buffer-list))
7ded5b71182f (which-func-mode): Invert which-func-mode-global.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33702
diff changeset
193 (with-current-buffer buf
7ded5b71182f (which-func-mode): Invert which-func-mode-global.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33702
diff changeset
194 (setq which-func-mode
7ded5b71182f (which-func-mode): Invert which-func-mode-global.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33702
diff changeset
195 (or (eq which-func-modes t)
7ded5b71182f (which-func-mode): Invert which-func-mode-global.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33702
diff changeset
196 (member major-mode which-func-modes))))))
7ded5b71182f (which-func-mode): Invert which-func-mode-global.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33702
diff changeset
197 ;; Turn it off
7ded5b71182f (which-func-mode): Invert which-func-mode-global.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33702
diff changeset
198 (remove-hook 'post-command-idle-hook 'which-func-update)
32190
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
199 (dolist (buf (buffer-list))
35990
7ded5b71182f (which-func-mode): Invert which-func-mode-global.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33702
diff changeset
200 (with-current-buffer buf (setq which-func-mode nil)))))
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
201
41357
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
202 (defvar which-function-imenu-failed nil
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
203 "Locally t in a buffer if `imenu--make-index-alist' found nothing there.")
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
204
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
205 (defun which-function ()
21697
ecfe9bc12b7f Fix header comments.
Dave Love <fx@gnu.org>
parents: 21653
diff changeset
206 "Return current function name based on point.
36606
a72b3da04728 (which-func-modes): Add cperl-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 35990
diff changeset
207 Uses `imenu--index-alist' or `add-log-current-defun-function'.
a72b3da04728 (which-func-modes): Add cperl-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 35990
diff changeset
208 If no function name is found, return nil."
32190
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
209 (let (name)
41357
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
210 ;; If Imenu is loaded, try to make an index alist with it.
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
211 (when (and (boundp 'imenu--index-alist) (null imenu--index-alist)
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
212 (null which-function-imenu-failed))
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
213 (imenu--make-index-alist)
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
214 (unless imenu--index-alist
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
215 (make-local-variable 'which-function-imenu-failed)
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
216 (setq which-function-imenu-failed t)))
9e8cfa1e3b05 (which-function): Call imenu--make-index-alist
Richard M. Stallman <rms@gnu.org>
parents: 38437
diff changeset
217 ;; If we have an index alist, use it.
32190
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
218 (when (and (boundp 'imenu--index-alist) imenu--index-alist)
50649
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
219 (let ((alist imenu--index-alist)
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
220 (minoffset (point-max))
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
221 offset elem pair mark)
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
222 (while alist
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
223 (setq elem (car-safe alist)
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
224 alist (cdr-safe alist))
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
225 ;; Elements of alist are either ("name" . marker), or
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
226 ;; ("submenu" ("name" . marker) ... ).
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
227 (unless (listp (cdr elem))
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
228 (setq elem (list elem)))
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
229 (while elem
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
230 (setq pair (car elem)
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
231 elem (cdr elem))
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
232 (and (consp pair)
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
233 (number-or-marker-p (setq mark (cdr pair)))
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
234 (if (>= (setq offset (- (point) mark)) 0)
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
235 (if (< offset minoffset) ; find the closest item
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
236 (setq minoffset offset
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
237 name (car pair)))
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
238 ;; Entries in order, so can skip all those after point.
c2fa5aacd170 (which-func-modes): Add f90-mode.
Glenn Morris <rgm@gnu.org>
parents: 49597
diff changeset
239 (setq elem nil)))))))
32190
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
240 ;; Try using add-log support.
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
241 (when (and (null name) (boundp 'add-log-current-defun-function)
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
242 add-log-current-defun-function)
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
243 (setq name (funcall add-log-current-defun-function)))
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
244 ;; Filter the name if requested.
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
245 (when name
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
246 (if which-func-cleanup-function
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
247 (funcall which-func-cleanup-function name)
af0c1b2c3d6e (which-func-format): Remove spurious space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 25425
diff changeset
248 name))))
20321
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250 (provide 'which-func)
d638e4de74aa Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 38423
diff changeset
252 ;;; which-func.el ends here