Mercurial > emacs
annotate lisp/speedbar.el @ 60044:d1e94109daa4
(Printed Representation): Clarify read syntax vs print.
(Floating Point Type): Explain meaning better.
(Symbol Type): Explain uniqueness better.
(Cons Cell Type): Explain empty list sooner. CAR and CDR later.
List examples sooner.
(Box Diagrams): New subnode broken out.
Some examples moved from old Lists as Boxes node.
(Dotted Pair Notation): Clarify intro.
(Array Type): Clarify.
(Type Predicates): Add hash-table-p.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 14 Feb 2005 10:22:36 +0000 |
parents | aac0a33f5772 |
children | 7f27833efe51 3ebd9bdb4fe5 |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38377
diff
changeset
|
1 ;;; speedbar.el --- quick access to files and tags in a frame |
21650 | 2 |
59751
57b41981928e
Avoid unnecessary use of locate-library.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57786
diff
changeset
|
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2005 |
57b41981928e
Avoid unnecessary use of locate-library.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57786
diff
changeset
|
4 ;; Free Software Foundation |
22735 | 5 |
6 ;; Author: Eric M. Ludlam <zappo@gnu.org> | |
36047
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
7 ;; Version: 0.11a |
22735 | 8 ;; Keywords: file, tags, tools |
9 | |
21650 | 10 ;; This file is part of GNU Emacs. |
22735 | 11 |
21650 | 12 ;; GNU Emacs is free software; you can redistribute it and/or modify |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
22735 | 16 |
21650 | 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. | |
22735 | 21 |
21650 | 22 ;; You should have received a copy of the GNU General Public License |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
26 | |
27 ;;; Commentary: | |
28 ;; | |
29 ;; The speedbar provides a frame in which files, and locations in | |
30 ;; files are displayed. These items can be clicked on with mouse-2 | |
31 ;; in order to make the last active frame display that file location. | |
32 ;; | |
33 ;; Starting Speedbar: | |
34 ;; | |
26491
7de24bd78e93
Clean up comment at the start of the file.
Gerd Moellmann <gerd@gnu.org>
parents:
25432
diff
changeset
|
35 ;; Simply type `M-x speedbar', and it will be autoloaded for you. |
7de24bd78e93
Clean up comment at the start of the file.
Gerd Moellmann <gerd@gnu.org>
parents:
25432
diff
changeset
|
36 |
22735 | 37 ;; If you want to choose it from a menu, such as "Tools", you can do this: |
21650 | 38 ;; |
39 ;; (define-key-after (lookup-key global-map [menu-bar tools]) | |
40 ;; [speedbar] '("Speedbar" . speedbar-frame-mode) [calendar]) | |
41 ;; | |
42 ;; If you want to access speedbar using only the keyboard, do this: | |
43 ;; | |
26491
7de24bd78e93
Clean up comment at the start of the file.
Gerd Moellmann <gerd@gnu.org>
parents:
25432
diff
changeset
|
44 ;; (global-set-key [f4] 'speedbar-get-focus) |
21650 | 45 ;; |
46 ;; This will let you hit f4 (or whatever key you choose) to jump | |
47 ;; focus to the speedbar frame. Pressing it again will bring you back | |
48 ;; to the attached frame. Pressing RET or e to jump to a file | |
49 ;; or tag will move you back to the attached frame. The command | |
50 ;; `speedbar-get-focus' will also create a speedbar frame if it does | |
51 ;; not exist. | |
52 ;; | |
53 ;; Customizing Speedbar: | |
54 ;; | |
55 ;; Once a speedbar frame is active, it takes advantage of idle time | |
56 ;; to keep its contents updated. The contents is usually a list of | |
57 ;; files in the directory of the currently active buffer. When | |
58 ;; applicable, tags in the active file can be expanded. | |
59 ;; | |
60 ;; To add new supported files types into speedbar, use the function | |
40815
18a8015d9546
Minor fixes of the docs in the commentary. From sen_ml@eccosys.com.
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
61 ;; `speedbar-add-supported-extension'. If speedbar complains that the |
21650 | 62 ;; file type is not supported, that means there is no built in |
63 ;; support from imenu, and the etags part wasn't set up correctly. You | |
64 ;; may add elements to `speedbar-supported-extension-expressions' as long | |
65 ;; as it is done before speedbar is loaded. | |
66 ;; | |
67 ;; To prevent speedbar from following you into certain directories | |
40815
18a8015d9546
Minor fixes of the docs in the commentary. From sen_ml@eccosys.com.
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
68 ;; use the function `speedbar-add-ignored-path-regexp' to add a new |
21650 | 69 ;; regular expression matching a type of path. You may add list |
70 ;; elements to `speedbar-ignored-path-expressions' as long as it is | |
71 ;; done before speedbar is loaded. | |
72 ;; | |
73 ;; To add new file types to imenu, see the documentation in the | |
22735 | 74 ;; file imenu.el that comes with Emacs. To add new file types which |
21650 | 75 ;; etags supports, you need to modify the variable |
76 ;; `speedbar-fetch-etags-parse-list'. | |
77 ;; | |
78 ;; If the updates are going too slow for you, modify the variable | |
79 ;; `speedbar-update-speed' to a longer idle time before updates. | |
80 ;; | |
81 ;; If you navigate directories, you will probably notice that you | |
82 ;; will navigate to a directory which is eventually replaced after | |
83 ;; you go back to editing a file (unless you pull up a new file.) | |
84 ;; The delay time before this happens is in | |
85 ;; `speedbar-navigating-speed', and defaults to 10 seconds. | |
86 ;; | |
22735 | 87 ;; To enable mouse tracking with information in the minibuffer of |
88 ;; the attached frame, use the variable `speedbar-track-mouse-flag'. | |
89 ;; | |
90 ;; Tag layout can be modified through `speedbar-tag-hierarchy-method', | |
91 ;; which controls how tags are layed out. It is actually a list of | |
92 ;; functions that filter the data. The default groups large tag lists | |
93 ;; into sub-lists. A long flat list can be used instead if needed. | |
40815
18a8015d9546
Minor fixes of the docs in the commentary. From sen_ml@eccosys.com.
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
94 ;; Other filters can be easily added. |
22735 | 95 ;; |
56754 | 96 ;; AUCTEX users: The imenu tags for AUCTEX mode doesn't work very |
21650 | 97 ;; well. Use the imenu keywords from tex-mode.el for better results. |
98 ;; | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
99 ;; This file requires the library package assoc (association lists) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
100 ;; |
22735 | 101 ;;; Developing for speedbar |
102 ;; | |
103 ;; Adding a speedbar specialized display mode: | |
104 ;; | |
105 ;; Speedbar can be configured to create a special display for certain | |
40815
18a8015d9546
Minor fixes of the docs in the commentary. From sen_ml@eccosys.com.
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
106 ;; modes that do not display traditional file/tag data. Rmail, Info, |
22735 | 107 ;; and the debugger are examples. These modes can, however, benefit |
108 ;; from a speedbar style display in their own way. | |
21650 | 109 ;; |
22735 | 110 ;; If your `major-mode' is `foo-mode', the only requirement is to |
111 ;; create a function called `foo-speedbar-buttons' which takes one | |
112 ;; argument, BUFFER. BUFFER will be the buffer speedbar wants filled. | |
113 ;; In `foo-speedbar-buttons' there are several functions that make | |
114 ;; building a speedbar display easy. See the documentation for | |
115 ;; `speedbar-with-writable' (needed because the buffer is usually | |
116 ;; read-only) `speedbar-make-tag-line', `speedbar-insert-button', and | |
117 ;; `speedbar-insert-generic-list'. If you use | |
118 ;; `speedbar-insert-generic-list', also read the doc for | |
119 ;; `speedbar-tag-hierarchy-method' in case you wish to override it. | |
40815
18a8015d9546
Minor fixes of the docs in the commentary. From sen_ml@eccosys.com.
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
120 ;; The macro `speedbar-with-attached-buffer' brings you back to the |
22735 | 121 ;; buffer speedbar is displaying for. |
21650 | 122 ;; |
22735 | 123 ;; For those functions that make buttons, the "function" should be a |
124 ;; symbol that is the function to call when clicked on. The "token" | |
125 ;; is extra data you can pass along. The "function" must take three | |
126 ;; parameters. They are (TEXT TOKEN INDENT). TEXT is the text of the | |
127 ;; button clicked on. TOKEN is the data passed in when you create the | |
128 ;; button. INDENT is an indentation level, or 0. You can store | |
129 ;; indentation levels with `speedbar-make-tag-line' which creates a | |
130 ;; line with an expander (eg. [+]) and a text button. | |
131 ;; | |
132 ;; Some useful functions when writing expand functions, and click | |
133 ;; functions are `speedbar-change-expand-button-char', | |
134 ;; `speedbar-delete-subblock', and `speedbar-center-buffer-smartly'. | |
135 ;; The variable `speedbar-power-click' is set to t in your functions | |
40815
18a8015d9546
Minor fixes of the docs in the commentary. From sen_ml@eccosys.com.
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
136 ;; when the user shift-clicks. This is an indication of anything from |
22735 | 137 ;; refreshing cached data to making a buffer appear in a new frame. |
138 ;; | |
139 ;; If you wish to add to the default speedbar menu for the case of | |
140 ;; `foo-mode', create a variable `foo-speedbar-menu-items'. This | |
141 ;; should be a list compatible with the `easymenu' package. It will | |
142 ;; be spliced into the main menu. (Available with click-mouse-3). If | |
143 ;; you wish to have extra key bindings in your special mode, create a | |
144 ;; variable `foo-speedbar-key-map'. Instead of using `make-keymap', | |
145 ;; or `make-sparse-keymap', use the function | |
146 ;; `speedbar-make-specialized-keymap'. This lets you inherit all of | |
147 ;; speedbar's default bindings with low overhead. | |
148 ;; | |
149 ;; Adding a speedbar top-level display mode: | |
150 ;; | |
151 ;; Unlike the specialized modes, there are no name requirements, | |
152 ;; however the methods for writing a button display, menu, and keymap | |
153 ;; are the same. Once you create these items, you can call the | |
154 ;; function `speedbar-add-expansion-list'. It takes one parameter | |
155 ;; which is a list element of the form (NAME MENU KEYMAP &rest | |
156 ;; BUTTON-FUNCTIONS). NAME is a string that will show up in the | |
157 ;; Displays menu item. MENU is a symbol containing the menu items to | |
158 ;; splice in. KEYMAP is a symbol holding the keymap to use, and | |
159 ;; BUTTON-FUNCTIONS are the function names to call, in order, to create | |
160 ;; the display. | |
40815
18a8015d9546
Minor fixes of the docs in the commentary. From sen_ml@eccosys.com.
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
161 ;; Another tweakable variable is `speedbar-stealthy-function-list' |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
162 ;; which is of the form (NAME &rest FUNCTION ...). NAME is the string |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
163 ;; name matching `speedbar-add-expansion-list'. (It does not need to |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
164 ;; exist.). This provides additional display info which might be |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
165 ;; time-consuming to calculate. |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
166 ;; Lastly, `speedbar-mode-functions-list' allows you to set special |
40815
18a8015d9546
Minor fixes of the docs in the commentary. From sen_ml@eccosys.com.
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
167 ;; function overrides. At the moment very few functions may be |
18a8015d9546
Minor fixes of the docs in the commentary. From sen_ml@eccosys.com.
Eli Zaretskii <eliz@gnu.org>
parents:
38436
diff
changeset
|
168 ;; overridden, but more will be added as the need is discovered. |
21650 | 169 |
170 ;;; TODO: | |
171 ;; - More functions to create buttons and options | |
172 ;; - Timeout directories we haven't visited in a while. | |
173 | |
59751
57b41981928e
Avoid unnecessary use of locate-library.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57786
diff
changeset
|
174 ;;; Code: |
57b41981928e
Avoid unnecessary use of locate-library.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57786
diff
changeset
|
175 |
21650 | 176 (require 'assoc) |
177 (require 'easymenu) | |
178 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
179 (condition-case nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
180 (require 'image) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
181 (error nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
182 |
22735 | 183 (defvar speedbar-xemacsp (string-match "XEmacs" emacs-version) |
184 "Non-nil if we are running in the XEmacs environment.") | |
185 (defvar speedbar-xemacs20p (and speedbar-xemacsp | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
186 (>= emacs-major-version 20))) |
22735 | 187 |
21650 | 188 ;; customization stuff |
189 (defgroup speedbar nil | |
190 "File and tag browser frame." | |
48380
d2b6a3d52d08
(defgroup speedbar): Use group 'etags instead of nonexisting group
Markus Rost <rost@math.uni-bielefeld.de>
parents:
47627
diff
changeset
|
191 :group 'etags |
21658
d8a81542dbf9
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21650
diff
changeset
|
192 :group 'tools |
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21658
diff
changeset
|
193 :group 'convenience |
21658
d8a81542dbf9
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21650
diff
changeset
|
194 :version "20.3") |
21650 | 195 |
196 (defgroup speedbar-faces nil | |
197 "Faces used in speedbar." | |
198 :prefix "speedbar-" | |
199 :group 'speedbar | |
200 :group 'faces) | |
201 | |
202 (defgroup speedbar-vc nil | |
203 "Version control display in speedbar." | |
204 :prefix "speedbar-" | |
205 :group 'speedbar) | |
206 | |
22735 | 207 (defvar speedbar-initial-expansion-mode-alist |
208 '(("buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map | |
209 speedbar-buffer-buttons) | |
210 ("quick buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map | |
211 speedbar-buffer-buttons-temp) | |
212 ;; Files last, means first in the Displays menu | |
213 ("files" speedbar-easymenu-definition-special speedbar-file-key-map | |
214 speedbar-directory-buttons speedbar-default-directory-list) | |
215 ) | |
216 "List of named expansion elements for filling the speedbar frame. | |
217 These expansion lists are only valid for regular files. Special modes | |
218 still get to override this list on a mode-by-mode basis. This list of | |
219 lists is of the form (NAME MENU KEYMAP FN1 FN2 ...). NAME is a string | |
220 representing the types of things to be displayed. MENU is an easymenu | |
221 structure used when in this mode. KEYMAP is a local keymap to install | |
222 over the regular speedbar keymap. FN1 ... are functions that will be | |
223 called in order. These functions will always get the default | |
224 directory to use passed in as the first parameter, and a 0 as the | |
225 second parameter. The 0 indicates the uppermost indentation level. | |
226 They must assume that the cursor is at the position where they start | |
227 inserting buttons.") | |
21650 | 228 |
23372
64e80b07376b
(speedbar-frame-mode): Check if cfx or cfy is a list, and make sure it
Eric M. Ludlam <zappo@gnu.org>
parents:
23275
diff
changeset
|
229 (defvar speedbar-initial-expansion-list-name "files" |
22735 | 230 "A symbol name representing the expansion list to use. |
231 The expansion list `speedbar-initial-expansion-mode-alist' contains | |
23372
64e80b07376b
(speedbar-frame-mode): Check if cfx or cfy is a list, and make sure it
Eric M. Ludlam <zappo@gnu.org>
parents:
23275
diff
changeset
|
232 the names and associated functions to use for buttons in speedbar.") |
22735 | 233 |
234 (defvar speedbar-previously-used-expansion-list-name "files" | |
235 "Save the last expansion list method. | |
236 This is used for returning to a previous expansion list method when | |
237 the user is done with the current expansion list.") | |
21650 | 238 |
239 (defvar speedbar-stealthy-function-list | |
22735 | 240 '(("files" |
241 speedbar-update-current-file speedbar-check-vc speedbar-check-objects) | |
242 ) | |
21650 | 243 "List of functions to periodically call stealthily. |
22735 | 244 This list is of the form: |
245 '( (\"NAME\" FUNCTION ...) | |
246 ...) | |
247 where NAME is the name of the major display mode these functions are | |
248 for, and the remaining elements FUNCTION are functions to call in order. | |
21650 | 249 Each function must return nil if interrupted, or t if completed. |
250 Stealthy functions which have a single operation should always return | |
251 t. Functions which take a long time should maintain a state (where | |
252 they are in their speedbar related calculations) and permit | |
253 interruption. See `speedbar-check-vc' as a good example.") | |
254 | |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
255 (defvar speedbar-mode-functions-list |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
256 '(("files" (speedbar-item-info . speedbar-files-item-info) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
257 (speedbar-line-path . speedbar-files-line-path)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
258 ("buffers" (speedbar-item-info . speedbar-buffers-item-info) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
259 (speedbar-line-path . speedbar-buffers-line-path)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
260 ("quick buffers" (speedbar-item-info . speedbar-buffers-item-info) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
261 (speedbar-line-path . speedbar-buffers-line-path)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
262 ) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
263 "List of function tables to use for different major display modes. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
264 It is not necessary to define any functions for a specialized mode. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
265 This just provides a simple way of adding lots of customizations. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
266 Each sublist is of the form: |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
267 (\"NAME\" (FUNCTIONSYMBOL . REPLACEMENTFUNCTION) ...) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
268 Where NAME is the name of the specialized mode. The rest of the list |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
269 is a set of dotted pairs of the form FUNCTIONSYMBOL, which is the name |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
270 of a function you would like to replace, and REPLACEMENTFUNCTION, |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
271 which is a function you can call instead. Not all functions can be |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
272 replaced this way. Replaceable functions must provide that |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
273 functionality individually.") |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
274 |
21650 | 275 (defcustom speedbar-mode-specific-contents-flag t |
276 "*Non-nil means speedbar will show special mode contents. | |
277 This permits some modes to create customized contents for the speedbar | |
278 frame." | |
279 :group 'speedbar | |
280 :type 'boolean) | |
281 | |
282 (defvar speedbar-special-mode-expansion-list nil | |
22735 | 283 "Default function list for creating specialized button lists. |
284 This list is set by modes that wish to have special speedbar displays. | |
285 The list is of function names. Each function is called with one | |
286 parameter BUFFER, the originating buffer. The current buffer is the | |
287 speedbar buffer.") | |
21650 | 288 |
22735 | 289 (defvar speedbar-special-mode-key-map nil |
290 "Default keymap used when identifying a specialized display mode. | |
291 This keymap is local to each buffer that wants to define special keybindings | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
292 effective when its display is shown.") |
21650 | 293 |
294 (defcustom speedbar-visiting-file-hook nil | |
295 "Hooks run when speedbar visits a file in the selected frame." | |
296 :group 'speedbar | |
297 :type 'hook) | |
298 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
299 (defcustom speedbar-visiting-tag-hook '(speedbar-highlight-one-tag-line) |
21650 | 300 "Hooks run when speedbar visits a tag in the selected frame." |
301 :group 'speedbar | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
302 :type 'hook |
31562
a2d8210661c8
Add :version to several defcustoms.
Dave Love <fx@gnu.org>
parents:
29260
diff
changeset
|
303 :version "21.1" |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
304 :options '(speedbar-highlight-one-tag-line |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
305 speedbar-recenter-to-top |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
306 speedbar-recenter |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
307 )) |
21650 | 308 |
309 (defcustom speedbar-load-hook nil | |
310 "Hooks run when speedbar is loaded." | |
311 :group 'speedbar | |
312 :type 'hook) | |
313 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
314 (defcustom speedbar-reconfigure-keymaps-hook nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
315 "Hooks run when the keymaps are regenerated." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
316 :group 'speedbar |
31562
a2d8210661c8
Add :version to several defcustoms.
Dave Love <fx@gnu.org>
parents:
29260
diff
changeset
|
317 :version "21.1" |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
318 :type 'hook) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
319 |
21650 | 320 (defcustom speedbar-show-unknown-files nil |
321 "*Non-nil show files we can't expand with a ? in the expand button. | |
322 nil means don't show the file in the list." | |
323 :group 'speedbar | |
324 :type 'boolean) | |
325 | |
326 (defcustom speedbar-update-speed | |
327 (if speedbar-xemacsp | |
328 (if speedbar-xemacs20p | |
329 2 ; 1 is too obrusive in XEmacs | |
330 5) ; when no idleness, need long delay | |
331 1) | |
332 "*Idle time in seconds needed before speedbar will update itself. | |
333 Updates occur to allow speedbar to display directory information | |
334 relevant to the buffer you are currently editing." | |
335 :group 'speedbar | |
336 :type 'integer) | |
337 | |
22735 | 338 ;; When I moved to a repeating timer, I had the horrible missfortune |
339 ;; of loosing the ability for adaptive speed choice. This update | |
340 ;; speed currently causes long delays when it should have been turned off. | |
341 (defcustom speedbar-navigating-speed speedbar-update-speed | |
21650 | 342 "*Idle time to wait after navigation commands in speedbar are executed. |
343 Navigation commands included expanding/contracting nodes, and moving | |
344 between different directories." | |
345 :group 'speedbar | |
346 :type 'integer) | |
347 | |
348 (defcustom speedbar-frame-parameters '((minibuffer . nil) | |
349 (width . 20) | |
350 (border-width . 0) | |
351 (menu-bar-lines . 0) | |
36047
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
352 (tool-bar-lines . 0) |
21650 | 353 (unsplittable . t)) |
354 "*Parameters to use when creating the speedbar frame in Emacs. | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
355 Any parameter supported by a frame may be added. The parameter `height' |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
356 will be initialized to the height of the frame speedbar is |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
357 attached to and added to this list before the new frame is initialized." |
21650 | 358 :group 'speedbar |
57786
feb47c14dfa5
(speedbar-frame-parameters): Improve customize type.
Andreas Schwab <schwab@suse.de>
parents:
56776
diff
changeset
|
359 :type '(repeat (cons :format "%v" |
feb47c14dfa5
(speedbar-frame-parameters): Improve customize type.
Andreas Schwab <schwab@suse.de>
parents:
56776
diff
changeset
|
360 (symbol :tag "Parameter") |
feb47c14dfa5
(speedbar-frame-parameters): Improve customize type.
Andreas Schwab <schwab@suse.de>
parents:
56776
diff
changeset
|
361 (sexp :tag "Value")))) |
21650 | 362 |
363 ;; These values by Hrvoje Niksic <hniksic@srce.hr> | |
364 (defcustom speedbar-frame-plist | |
365 '(minibuffer nil width 20 border-width 0 | |
366 internal-border-width 0 unsplittable t | |
367 default-toolbar-visible-p nil has-modeline-p nil | |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
368 menubar-visible-p nil) |
21650 | 369 "*Parameters to use when creating the speedbar frame in XEmacs. |
370 Parameters not listed here which will be added automatically are | |
371 `height' which will be initialized to the height of the frame speedbar | |
372 is attached to." | |
373 :group 'speedbar | |
374 :type '(repeat (group :inline t | |
375 (symbol :tag "Property") | |
376 (sexp :tag "Value")))) | |
377 | |
59751
57b41981928e
Avoid unnecessary use of locate-library.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57786
diff
changeset
|
378 (defcustom speedbar-use-imenu-flag (fboundp 'imenu) |
21650 | 379 "*Non-nil means use imenu for file parsing. nil to use etags. |
380 XEmacs prior to 20.4 doesn't support imenu, therefore the default is to | |
381 use etags instead. Etags support is not as robust as imenu support." | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
382 :tag "Use Imenu for tags" |
21650 | 383 :group 'speedbar |
384 :type 'boolean) | |
385 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
386 (defvar speedbar-dynamic-tags-function-list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
387 '((speedbar-fetch-dynamic-imenu . speedbar-insert-imenu-list) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
388 (speedbar-fetch-dynamic-etags . speedbar-insert-etags-list)) |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
389 "Set to a list of functions which will return and insert a list of tags. |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
390 Each element is of the form ( FETCH . INSERT ) where FETCH |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
391 is a function which takes one parameter (the file to tag) and returns a |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
392 list of tags. The tag list can be of any form as long as the |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
393 corresponding insert method can handle it. If it returns t, then an |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
394 error occurred, and the next fetch routine is tried. |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
395 INSERT is a function which takes an INDENTation level, and a LIST of |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
396 tags to insert. It will then create the speedbar buttons.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
397 |
22735 | 398 (defcustom speedbar-track-mouse-flag t |
399 "*Non-nil means to display info about the line under the mouse." | |
400 :group 'speedbar | |
401 :type 'boolean) | |
402 | |
21650 | 403 (defcustom speedbar-sort-tags nil |
44578
9c2b72b4b303
(speedbar-generic-item-info)
Pavel Janík <Pavel@Janik.cz>
parents:
44225
diff
changeset
|
404 "*If non-nil, sort tags in the speedbar display. *Obsolete*." |
21650 | 405 :group 'speedbar |
406 :type 'boolean) | |
407 | |
22735 | 408 (defcustom speedbar-tag-hierarchy-method |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
409 '(speedbar-prefix-group-tag-hierarchy |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
410 speedbar-trim-words-tag-hierarchy) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
411 "*List of hooks which speedbar will use to organize tags into groups. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
412 Groups are defined as expandable meta-tags. Imenu supports |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
413 such things in some languages, such as separating variables from |
46286
6117ca314143
(speedbar-tag-hierarchy-method): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
46282
diff
changeset
|
414 functions. Each hook takes one argument LST, and may destructively |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
415 create a new list of the same form. LST is a list of elements of the |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
416 form: |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
417 (ELT1 ELT2 ... ELTn) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
418 where each ELT is of the form |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
419 (TAG-NAME-STRING . NUMBER-OR-MARKER) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
420 or |
46286
6117ca314143
(speedbar-tag-hierarchy-method): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
46282
diff
changeset
|
421 (GROUP-NAME-STRING ELT1 ELT2... ELTn)" |
22735 | 422 :group 'speedbar |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
423 :type 'hook |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
424 :options '(speedbar-sort-tag-hierarchy |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
425 speedbar-trim-words-tag-hierarchy |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
426 speedbar-prefix-group-tag-hierarchy |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
427 speedbar-simple-group-tag-hierarchy) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
428 ) |
22735 | 429 |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
430 (defcustom speedbar-tag-group-name-minimum-length 4 |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
431 "*The minimum length of a prefix group name before expanding. |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
432 Thus, if the `speedbar-tag-hierarchy-method' includes `prefix-group' |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
433 and one such groups common characters is less than this number of |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
434 characters, then the group name will be changed to the form of: |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
435 worda to wordb |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
436 instead of just |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
437 word |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
438 This way we won't get silly looking listings." |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
439 :group 'speedbar |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
440 :type 'integer) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
441 |
22735 | 442 (defcustom speedbar-tag-split-minimum-length 20 |
443 "*Minimum length before we stop trying to create sub-lists in tags. | |
444 This is used by all tag-hierarchy methods that break large lists into | |
445 sub-lists." | |
446 :group 'speedbar | |
447 :type 'integer) | |
448 | |
449 (defcustom speedbar-tag-regroup-maximum-length 10 | |
450 "*Maximum length of submenus that are regrouped. | |
451 If the regrouping option is used, then if two or more short subgroups | |
452 are next to each other, then they are combined until this number of | |
453 items is reached." | |
454 :group 'speedbar | |
455 :type 'integer) | |
456 | |
21650 | 457 (defcustom speedbar-activity-change-focus-flag nil |
458 "*Non-nil means the selected frame will change based on activity. | |
459 Thus, if a file is selected for edit, the buffer will appear in the | |
460 selected frame and the focus will change to that frame." | |
461 :group 'speedbar | |
462 :type 'boolean) | |
463 | |
464 (defcustom speedbar-directory-button-trim-method 'span | |
465 "*Indicates how the directory button will be displayed. | |
466 Possible values are: | |
467 'span - span large directories over multiple lines. | |
468 'trim - trim large directories to only show the last few. | |
469 nil - no trimming." | |
470 :group 'speedbar | |
471 :type '(radio (const :tag "Span large directories over mutiple lines." | |
472 span) | |
473 (const :tag "Trim large directories to only show the last few." | |
474 trim) | |
475 (const :tag "No trimming." nil))) | |
476 | |
477 (defcustom speedbar-smart-directory-expand-flag t | |
478 "*Non-nil means speedbar should use smart expansion. | |
479 Smart expansion only affects when speedbar wants to display a | |
480 directory for a file in the attached frame. When smart expansion is | |
481 enabled, new directories which are children of a displayed directory | |
482 are expanded in the current framework. If nil, then the current | |
483 hierarchy would be replaced with the new directory." | |
484 :group 'speedbar | |
485 :type 'boolean) | |
486 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
487 (defcustom speedbar-indentation-width 1 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
488 "*When sub-nodes are expanded, the number of spaces used for indentation." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
489 :group 'speedbar |
31562
a2d8210661c8
Add :version to several defcustoms.
Dave Love <fx@gnu.org>
parents:
29260
diff
changeset
|
490 :version "21.1" |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
491 :type 'integer) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
492 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
493 (defcustom speedbar-hide-button-brackets-flag nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
494 "*Non-nil means speedbar will hide the brackets around the + or -." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
495 :group 'speedbar |
31562
a2d8210661c8
Add :version to several defcustoms.
Dave Love <fx@gnu.org>
parents:
29260
diff
changeset
|
496 :version "21.1" |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
497 :type 'boolean) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
498 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
499 (defcustom speedbar-use-images (and (or (fboundp 'defimage) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
500 (fboundp 'make-image-specifier)) |
29260
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
501 (if (fboundp 'display-graphic-p) |
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
502 (display-graphic-p) |
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
503 window-system)) |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
504 "*Non-nil if speedbar should display icons." |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
505 :group 'speedbar |
31562
a2d8210661c8
Add :version to several defcustoms.
Dave Love <fx@gnu.org>
parents:
29260
diff
changeset
|
506 :version "21.1" |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
507 :type 'boolean) |
22735 | 508 |
21650 | 509 (defcustom speedbar-before-popup-hook nil |
510 "*Hooks called before popping up the speedbar frame." | |
511 :group 'speedbar | |
512 :type 'hook) | |
513 | |
514 (defcustom speedbar-before-delete-hook nil | |
515 "*Hooks called before deleting the speedbar frame." | |
516 :group 'speedbar | |
517 :type 'hook) | |
518 | |
519 (defcustom speedbar-mode-hook nil | |
520 "*Hooks called after creating a speedbar buffer." | |
521 :group 'speedbar | |
522 :type 'hook) | |
523 | |
524 (defcustom speedbar-timer-hook nil | |
525 "*Hooks called after running the speedbar timer function." | |
526 :group 'speedbar | |
527 :type 'hook) | |
528 | |
529 (defcustom speedbar-verbosity-level 1 | |
530 "*Verbosity level of the speedbar. 0 means say nothing. | |
531 1 means medium level verbosity. 2 and higher are higher levels of | |
532 verbosity." | |
533 :group 'speedbar | |
534 :type 'integer) | |
535 | |
22735 | 536 (defvar speedbar-indicator-separator " " |
537 "String separating file text from indicator characters.") | |
538 | |
21650 | 539 (defcustom speedbar-vc-do-check t |
540 "*Non-nil check all files in speedbar to see if they have been checked out. | |
46286
6117ca314143
(speedbar-tag-hierarchy-method): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
46282
diff
changeset
|
541 Any file checked out is marked with `speedbar-vc-indicator'." |
21650 | 542 :group 'speedbar-vc |
543 :type 'boolean) | |
544 | |
22735 | 545 (defvar speedbar-vc-indicator "*" |
21650 | 546 "Text used to mark files which are currently checked out. |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
547 Other version control systems can be added by examining the function |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
548 `speedbar-vc-path-enable-hook' and `speedbar-vc-in-control-hook'.") |
21650 | 549 |
550 (defcustom speedbar-vc-path-enable-hook nil | |
551 "*Return non-nil if the current path should be checked for Version Control. | |
552 Functions in this hook must accept one parameter which is the path | |
553 being checked." | |
554 :group 'speedbar-vc | |
555 :type 'hook) | |
556 | |
557 (defcustom speedbar-vc-in-control-hook nil | |
558 "*Return non-nil if the specified file is under Version Control. | |
559 Functions in this hook must accept two parameters. The PATH of the | |
560 current file, and the FILENAME of the file being checked." | |
561 :group 'speedbar-vc | |
562 :type 'hook) | |
563 | |
564 (defvar speedbar-vc-to-do-point nil | |
565 "Local variable maintaining the current version control check position.") | |
566 | |
22735 | 567 (defcustom speedbar-obj-do-check t |
568 "*Non-nil check all files in speedbar to see if they have an object file. | |
569 Any file checked out is marked with `speedbar-obj-indicator', and the | |
46288
1b1c4b4ef8d4
(speedbar-obj-do-check): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
46286
diff
changeset
|
570 marking is based on `speedbar-obj-alist'." |
22735 | 571 :group 'speedbar-vc |
572 :type 'boolean) | |
573 | |
574 (defvar speedbar-obj-to-do-point nil | |
575 "Local variable maintaining the current version control check position.") | |
576 | |
577 (defvar speedbar-obj-indicator '("#" . "!") | |
578 "Text used to mark files that have a corresponding hidden object file. | |
579 The car is for an up-to-date object. The cdr is for an out of date object. | |
580 The expression `speedbar-obj-alist' defines who gets tagged.") | |
581 | |
582 (defvar speedbar-obj-alist | |
583 '(("\\.\\([cpC]\\|cpp\\|cc\\)$" . ".o") | |
584 ("\\.el$" . ".elc") | |
585 ("\\.java$" . ".class") | |
586 ("\\.f\\(or\\|90\\|77\\)?$" . ".o") | |
587 ("\\.tex$" . ".dvi") | |
588 ("\\.texi$" . ".info")) | |
589 "Alist of file extensions, and their corresponding object file type.") | |
590 | |
591 (defvar speedbar-indicator-regex | |
592 (concat (regexp-quote speedbar-indicator-separator) | |
593 "\\(" | |
594 (regexp-quote speedbar-vc-indicator) | |
595 "\\|" | |
596 (regexp-quote (car speedbar-obj-indicator)) | |
597 "\\|" | |
598 (regexp-quote (cdr speedbar-obj-indicator)) | |
599 "\\)*") | |
600 "Regular expression used when identifying files. | |
601 Permits stripping of indicator characters from a line.") | |
602 | |
603 (defcustom speedbar-scanner-reset-hook nil | |
604 "*Hook called whenever generic scanners are reset. | |
605 Set this to implement your own scanning / rescan safe functions with | |
606 state data." | |
607 :group 'speedbar | |
608 :type 'hook) | |
609 | |
21650 | 610 (defvar speedbar-ignored-modes nil |
611 "*List of major modes which speedbar will not switch directories for.") | |
612 | |
613 (defun speedbar-extension-list-to-regex (extlist) | |
614 "Takes EXTLIST, a list of extensions and transforms it into regexp. | |
22735 | 615 All the preceding `.' are stripped for an optimized expression starting |
616 with `.' followed by extensions, followed by full-filenames." | |
21650 | 617 (let ((regex1 nil) (regex2 nil)) |
618 (while extlist | |
619 (if (= (string-to-char (car extlist)) ?.) | |
620 (setq regex1 (concat regex1 (if regex1 "\\|" "") | |
621 (substring (car extlist) 1))) | |
622 (setq regex2 (concat regex2 (if regex2 "\\|" "") (car extlist)))) | |
623 (setq extlist (cdr extlist))) | |
624 ;; concat all the sub-exressions together, making sure all types | |
625 ;; of parts exist during concatination. | |
626 (concat "\\(" | |
627 (if regex1 (concat "\\(\\.\\(" regex1 "\\)\\)") "") | |
628 (if (and regex1 regex2) "\\|" "") | |
629 (if regex2 (concat "\\(" regex2 "\\)") "") | |
630 "\\)$"))) | |
631 | |
632 (defvar speedbar-ignored-path-regexp nil | |
633 "Regular expression matching paths speedbar will not switch to. | |
634 Created from `speedbar-ignored-path-expressions' with the function | |
635 `speedbar-extension-list-to-regex' (A misnamed function in this case.) | |
636 Use the function `speedbar-add-ignored-path-regexp', or customize the | |
637 variable `speedbar-ignored-path-expressions' to modify this variable.") | |
638 | |
639 (defcustom speedbar-ignored-path-expressions | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
640 '("[/\\]logs?[/\\]\\'") |
21650 | 641 "*List of regular expressions matching directories speedbar will ignore. |
642 They should included paths to directories which are notoriously very | |
643 large and take a long time to load in. Use the function | |
644 `speedbar-add-ignored-path-regexp' to add new items to this list after | |
645 speedbar is loaded. You may place anything you like in this list | |
646 before speedbar has been loaded." | |
647 :group 'speedbar | |
648 :type '(repeat (regexp :tag "Path Regexp")) | |
649 :set (lambda (sym val) | |
650 (setq speedbar-ignored-path-expressions val | |
651 speedbar-ignored-path-regexp | |
652 (speedbar-extension-list-to-regex val)))) | |
653 | |
22735 | 654 (defcustom speedbar-directory-unshown-regexp "^\\(CVS\\|RCS\\|SCCS\\)\\'" |
655 "*Regular expression matching directories not to show in speedbar. | |
656 They should include commonly existing directories which are not | |
657 useful, such as version control." | |
658 :group 'speedbar | |
659 :type 'string) | |
660 | |
21650 | 661 (defvar speedbar-file-unshown-regexp |
662 (let ((nstr "") (noext completion-ignored-extensions)) | |
663 (while noext | |
664 (setq nstr (concat nstr (regexp-quote (car noext)) "\\'" | |
665 (if (cdr noext) "\\|" "")) | |
666 noext (cdr noext))) | |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
667 ;; backup refdir lockfile |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
668 (concat nstr "\\|#[^#]+#$\\|\\.\\.?\\'\\|\\.#")) |
21650 | 669 "*Regexp matching files we don't want displayed in a speedbar buffer. |
670 It is generated from the variable `completion-ignored-extensions'") | |
671 | |
56776 | 672 ;; Compiler silencing trick. The real defvar comes later in this file. |
56772
87ac4f004dc4
(speedbar-file-regexp): Give it a phony defvar before and a real
Luc Teirlinck <teirllm@auburn.edu>
parents:
56762
diff
changeset
|
673 (defvar speedbar-file-regexp) |
56762
85c0c238dbbf
(speedbar-file-regexp): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents:
56754
diff
changeset
|
674 |
21650 | 675 ;; this is dangerous to customize, because the defaults will probably |
676 ;; change in the future. | |
677 (defcustom speedbar-supported-extension-expressions | |
22735 | 678 (append '(".[ch]\\(\\+\\+\\|pp\\|c\\|h\\|xx\\)?" ".tex\\(i\\(nfo\\)?\\)?" |
679 ".el" ".emacs" ".l" ".lsp" ".p" ".java" ".f\\(90\\|77\\|or\\)?") | |
21650 | 680 (if speedbar-use-imenu-flag |
38377
308a2e8895e3
(speedbar-supported-extension-expressions): Add .g to the extension list,
Eli Zaretskii <eliz@gnu.org>
parents:
37891
diff
changeset
|
681 '(".ada" ".p[lm]" ".tcl" ".m" ".scm" ".pm" ".py" ".g" |
22735 | 682 ;; html is not supported by default, but an imenu tags package |
683 ;; is available. Also, html files are nice to be able to see. | |
684 ".s?html" | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
685 "[Mm]akefile\\(\\.in\\)?"))) |
21650 | 686 "*List of regular expressions which will match files supported by tagging. |
687 Do not prefix the `.' char with a double \\ to quote it, as the period | |
688 will be stripped by a simplified optimizer when compiled into a | |
689 singular expression. This variable will be turned into | |
690 `speedbar-file-regexp' for use with speedbar. You should use the | |
691 function `speedbar-add-supported-extension' to add a new extension at | |
692 runtime, or use the configuration dialog to set it in your .emacs | |
693 file." | |
694 :group 'speedbar | |
31562
a2d8210661c8
Add :version to several defcustoms.
Dave Love <fx@gnu.org>
parents:
29260
diff
changeset
|
695 :version "21.1" |
21650 | 696 :type '(repeat (regexp :tag "Extension Regexp")) |
697 :set (lambda (sym val) | |
698 (setq speedbar-supported-extension-expressions val | |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
699 speedbar-file-regexp (speedbar-extension-list-to-regex val)))) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
700 |
56772
87ac4f004dc4
(speedbar-file-regexp): Give it a phony defvar before and a real
Luc Teirlinck <teirllm@auburn.edu>
parents:
56762
diff
changeset
|
701 (defvar speedbar-file-regexp |
87ac4f004dc4
(speedbar-file-regexp): Give it a phony defvar before and a real
Luc Teirlinck <teirllm@auburn.edu>
parents:
56762
diff
changeset
|
702 (speedbar-extension-list-to-regex speedbar-supported-extension-expressions) |
87ac4f004dc4
(speedbar-file-regexp): Give it a phony defvar before and a real
Luc Teirlinck <teirllm@auburn.edu>
parents:
56762
diff
changeset
|
703 "Regular expression matching files we know how to expand. |
87ac4f004dc4
(speedbar-file-regexp): Give it a phony defvar before and a real
Luc Teirlinck <teirllm@auburn.edu>
parents:
56762
diff
changeset
|
704 Created from `speedbar-supported-extension-expression' with the |
87ac4f004dc4
(speedbar-file-regexp): Give it a phony defvar before and a real
Luc Teirlinck <teirllm@auburn.edu>
parents:
56762
diff
changeset
|
705 function `speedbar-extension-list-to-regex'") |
87ac4f004dc4
(speedbar-file-regexp): Give it a phony defvar before and a real
Luc Teirlinck <teirllm@auburn.edu>
parents:
56762
diff
changeset
|
706 |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
707 (defcustom speedbar-scan-subdirs nil |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
708 "*Non-nil means speedbar will check if subdirs are empty. |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
709 That way you don't have to click on them to find out. But this |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
710 incurs extra I/O, hence it slows down directory display |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
711 proportionally to the number of subdirs." |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
712 :group 'speedbar |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
713 :type 'boolean |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59751
diff
changeset
|
714 :version 22.1) |
21650 | 715 |
716 (defun speedbar-add-supported-extension (extension) | |
717 "Add EXTENSION as a new supported extension for speedbar tagging. | |
718 This should start with a `.' if it is not a complete file name, and | |
719 the dot should NOT be quoted in with \\. Other regular expression | |
720 matchers are allowed however. EXTENSION may be a single string or a | |
721 list of strings." | |
44578
9c2b72b4b303
(speedbar-generic-item-info)
Pavel Janík <Pavel@Janik.cz>
parents:
44225
diff
changeset
|
722 (interactive "sExtension: ") |
21650 | 723 (if (not (listp extension)) (setq extension (list extension))) |
724 (while extension | |
725 (if (member (car extension) speedbar-supported-extension-expressions) | |
726 nil | |
727 (setq speedbar-supported-extension-expressions | |
728 (cons (car extension) speedbar-supported-extension-expressions))) | |
729 (setq extension (cdr extension))) | |
730 (setq speedbar-file-regexp (speedbar-extension-list-to-regex | |
731 speedbar-supported-extension-expressions))) | |
732 | |
733 (defun speedbar-add-ignored-path-regexp (path-expression) | |
734 "Add PATH-EXPRESSION as a new ignored path for speedbar tracking. | |
735 This function will modify `speedbar-ignored-path-regexp' and add | |
736 PATH-EXPRESSION to `speedbar-ignored-path-expressions'." | |
22735 | 737 (interactive "sPath regex: ") |
21650 | 738 (if (not (listp path-expression)) |
739 (setq path-expression (list path-expression))) | |
740 (while path-expression | |
741 (if (member (car path-expression) speedbar-ignored-path-expressions) | |
742 nil | |
743 (setq speedbar-ignored-path-expressions | |
744 (cons (car path-expression) speedbar-ignored-path-expressions))) | |
745 (setq path-expression (cdr path-expression))) | |
746 (setq speedbar-ignored-path-regexp (speedbar-extension-list-to-regex | |
747 speedbar-ignored-path-expressions))) | |
748 | |
749 ;; If we don't have custom, then we set it here by hand. | |
750 (if (not (fboundp 'custom-declare-variable)) | |
751 (setq speedbar-file-regexp (speedbar-extension-list-to-regex | |
752 speedbar-supported-extension-expressions) | |
753 speedbar-ignored-path-regexp (speedbar-extension-list-to-regex | |
754 speedbar-ignored-path-expressions))) | |
755 | |
22735 | 756 (defvar speedbar-update-flag (and |
757 (or (fboundp 'run-with-idle-timer) | |
758 (fboundp 'start-itimer) | |
759 (boundp 'post-command-idle-hook)) | |
29260
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
760 (if (fboundp 'display-graphic-p) |
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
761 (display-graphic-p) |
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
762 window-system)) |
21650 | 763 "*Non-nil means to automatically update the display. |
764 When this is nil then speedbar will not follow the attached frame's path. | |
765 When speedbar is active, use: | |
766 | |
767 \\<speedbar-key-map> `\\[speedbar-toggle-updates]' | |
768 | |
769 to toggle this value.") | |
770 | |
771 (defvar speedbar-syntax-table nil | |
772 "Syntax-table used on the speedbar.") | |
773 | |
774 (if speedbar-syntax-table | |
775 nil | |
776 (setq speedbar-syntax-table (make-syntax-table)) | |
777 ;; turn off paren matching around here. | |
778 (modify-syntax-entry ?\' " " speedbar-syntax-table) | |
779 (modify-syntax-entry ?\" " " speedbar-syntax-table) | |
780 (modify-syntax-entry ?( " " speedbar-syntax-table) | |
781 (modify-syntax-entry ?) " " speedbar-syntax-table) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
782 (modify-syntax-entry ?{ " " speedbar-syntax-table) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
783 (modify-syntax-entry ?} " " speedbar-syntax-table) |
21650 | 784 (modify-syntax-entry ?[ " " speedbar-syntax-table) |
785 (modify-syntax-entry ?] " " speedbar-syntax-table)) | |
786 | |
787 (defvar speedbar-key-map nil | |
788 "Keymap used in speedbar buffer.") | |
789 | |
790 (if speedbar-key-map | |
791 nil | |
792 (setq speedbar-key-map (make-keymap)) | |
793 (suppress-keymap speedbar-key-map t) | |
794 | |
795 ;; control | |
796 (define-key speedbar-key-map "g" 'speedbar-refresh) | |
797 (define-key speedbar-key-map "t" 'speedbar-toggle-updates) | |
798 (define-key speedbar-key-map "q" 'speedbar-close-frame) | |
23080
8b7bb810f362
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
23073
diff
changeset
|
799 (define-key speedbar-key-map "Q" 'delete-frame) |
21650 | 800 |
801 ;; navigation | |
802 (define-key speedbar-key-map "n" 'speedbar-next) | |
803 (define-key speedbar-key-map "p" 'speedbar-prev) | |
22735 | 804 (define-key speedbar-key-map "\M-n" 'speedbar-restricted-next) |
805 (define-key speedbar-key-map "\M-p" 'speedbar-restricted-prev) | |
806 (define-key speedbar-key-map "\C-\M-n" 'speedbar-forward-list) | |
807 (define-key speedbar-key-map "\C-\M-p" 'speedbar-backward-list) | |
21650 | 808 (define-key speedbar-key-map " " 'speedbar-scroll-up) |
809 (define-key speedbar-key-map [delete] 'speedbar-scroll-down) | |
810 | |
22735 | 811 ;; Short cuts I happen to find useful |
812 (define-key speedbar-key-map "r" | |
813 (lambda () (interactive) | |
814 (speedbar-change-initial-expansion-list | |
815 speedbar-previously-used-expansion-list-name))) | |
816 (define-key speedbar-key-map "b" | |
817 (lambda () (interactive) | |
818 (speedbar-change-initial-expansion-list "quick buffers"))) | |
819 (define-key speedbar-key-map "f" | |
820 (lambda () (interactive) | |
821 (speedbar-change-initial-expansion-list "files"))) | |
822 | |
823 ;; Overrides | |
824 (substitute-key-definition 'switch-to-buffer | |
825 'speedbar-switch-buffer-attached-frame | |
826 speedbar-key-map global-map) | |
21650 | 827 |
828 (if speedbar-xemacsp | |
829 (progn | |
830 ;; mouse bindings so we can manipulate the items on each line | |
831 (define-key speedbar-key-map 'button2 'speedbar-click) | |
832 (define-key speedbar-key-map '(shift button2) 'speedbar-power-click) | |
22735 | 833 ;; Info doc fix from Bob Weiner |
834 (if (featurep 'infodoc) | |
835 nil | |
836 (define-key speedbar-key-map 'button3 'speedbar-xemacs-popup-kludge)) | |
837 (define-key speedbar-key-map '(meta button3) 'speedbar-mouse-item-info) | |
838 ) | |
839 | |
21650 | 840 ;; mouse bindings so we can manipulate the items on each line |
841 (define-key speedbar-key-map [down-mouse-1] 'speedbar-double-click) | |
842 (define-key speedbar-key-map [mouse-2] 'speedbar-click) | |
843 ;; This is the power click for new frames, or refreshing a cache | |
844 (define-key speedbar-key-map [S-mouse-2] 'speedbar-power-click) | |
845 ;; This adds a small unecessary visual effect | |
846 ;;(define-key speedbar-key-map [down-mouse-2] 'speedbar-quick-mouse) | |
847 (define-key speedbar-key-map [M-mouse-2] 'speedbar-mouse-item-info) | |
848 | |
849 (define-key speedbar-key-map [down-mouse-3] 'speedbar-emacs-popup-kludge) | |
850 | |
851 ;; This lets the user scroll as if we had a scrollbar... well maybe not | |
852 (define-key speedbar-key-map [mode-line mouse-2] 'speedbar-mouse-hscroll) | |
22735 | 853 ;; another handy place users might click to get our menu. |
854 (define-key speedbar-key-map [mode-line down-mouse-1] | |
855 'speedbar-emacs-popup-kludge) | |
856 | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
857 ;; We can't switch buffers with the buffer mouse menu. Lets hack it. |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
858 (define-key speedbar-key-map [C-down-mouse-1] 'speedbar-hack-buffer-menu) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
859 |
22735 | 860 ;; Lastly, we want to track the mouse. Play here |
861 (define-key speedbar-key-map [mouse-movement] 'speedbar-track-mouse) | |
862 )) | |
863 | |
864 (defun speedbar-make-specialized-keymap () | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
865 "Create a keymap for use with a speedbar major or minor display mode. |
22735 | 866 This basically creates a sparse keymap, and makes it's parent be |
867 `speedbar-key-map'." | |
868 (let ((k (make-sparse-keymap))) | |
869 (set-keymap-parent k speedbar-key-map) | |
870 k)) | |
871 | |
872 (defvar speedbar-file-key-map nil | |
873 "Keymap used in speedbar buffer while files are displayed.") | |
874 | |
875 (if speedbar-file-key-map | |
876 nil | |
877 (setq speedbar-file-key-map (speedbar-make-specialized-keymap)) | |
878 | |
879 ;; Basic tree features | |
880 (define-key speedbar-file-key-map "e" 'speedbar-edit-line) | |
881 (define-key speedbar-file-key-map "\C-m" 'speedbar-edit-line) | |
882 (define-key speedbar-file-key-map "+" 'speedbar-expand-line) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
883 (define-key speedbar-file-key-map "=" 'speedbar-expand-line) |
22735 | 884 (define-key speedbar-file-key-map "-" 'speedbar-contract-line) |
885 | |
886 ;; file based commands | |
887 (define-key speedbar-file-key-map "U" 'speedbar-up-directory) | |
888 (define-key speedbar-file-key-map "I" 'speedbar-item-info) | |
889 (define-key speedbar-file-key-map "B" 'speedbar-item-byte-compile) | |
890 (define-key speedbar-file-key-map "L" 'speedbar-item-load) | |
891 (define-key speedbar-file-key-map "C" 'speedbar-item-copy) | |
892 (define-key speedbar-file-key-map "D" 'speedbar-item-delete) | |
893 (define-key speedbar-file-key-map "O" 'speedbar-item-object-delete) | |
894 (define-key speedbar-file-key-map "R" 'speedbar-item-rename) | |
895 ) | |
21650 | 896 |
897 (defvar speedbar-easymenu-definition-base | |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
898 (append |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
899 '("Speedbar" |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
900 ["Update" speedbar-refresh t] |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
901 ["Auto Update" speedbar-toggle-updates |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
902 :style toggle :selected speedbar-update-flag]) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
903 (if (and (or (fboundp 'defimage) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
904 (fboundp 'make-image-specifier)) |
29260
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
905 (if (fboundp 'display-graphic-p) |
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
906 (display-graphic-p) |
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
907 window-system)) |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
908 (list |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
909 ["Use Images" speedbar-toggle-images |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
910 :style toggle :selected speedbar-use-images])) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
911 ) |
21650 | 912 "Base part of the speedbar menu.") |
913 | |
914 (defvar speedbar-easymenu-definition-special | |
915 '(["Edit Item On Line" speedbar-edit-line t] | |
916 ["Show All Files" speedbar-toggle-show-all-files | |
917 :style toggle :selected speedbar-show-unknown-files] | |
22735 | 918 ["Expand File Tags" speedbar-expand-line |
21650 | 919 (save-excursion (beginning-of-line) |
920 (looking-at "[0-9]+: *.\\+. "))] | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
921 ["Flush Cache & Expand" speedbar-flush-expand-line |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
922 (save-excursion (beginning-of-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
923 (looking-at "[0-9]+: *.\\+. "))] |
22735 | 924 ["Contract File Tags" speedbar-contract-line |
21650 | 925 (save-excursion (beginning-of-line) |
926 (looking-at "[0-9]+: *.-. "))] | |
22735 | 927 ; ["Sort Tags" speedbar-toggle-sorting |
928 ; :style toggle :selected speedbar-sort-tags] | |
21650 | 929 "----" |
22735 | 930 ["File/Tag Information" speedbar-item-info t] |
21650 | 931 ["Load Lisp File" speedbar-item-load |
932 (save-excursion | |
933 (beginning-of-line) | |
22735 | 934 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))] |
21650 | 935 ["Byte Compile File" speedbar-item-byte-compile |
936 (save-excursion | |
937 (beginning-of-line) | |
22735 | 938 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))] |
939 ["Copy File" speedbar-item-copy | |
21650 | 940 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *\\["))] |
22735 | 941 ["Rename File" speedbar-item-rename |
942 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))] | |
943 ["Delete File" speedbar-item-delete | |
21650 | 944 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))] |
22735 | 945 ["Delete Object" speedbar-item-object-delete |
946 (save-excursion (beginning-of-line) | |
947 (looking-at "[0-9]+: *\\[[+-]\\] [^ \n]+ \\*?[!#]$"))] | |
948 ) | |
21650 | 949 "Additional menu items while in file-mode.") |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48716
diff
changeset
|
950 |
21650 | 951 (defvar speedbar-easymenu-definition-trailer |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
952 (append |
22735 | 953 (if (and (featurep 'custom) (fboundp 'custom-declare-variable)) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
954 (list ["Customize..." speedbar-customize t])) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
955 (list |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
956 ["Close" speedbar-close-frame t] |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
957 ["Quit" delete-frame t] )) |
21650 | 958 "Menu items appearing at the end of the speedbar menu.") |
959 | |
960 (defvar speedbar-desired-buffer nil | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
961 "Non-nil when speedbar is showing buttons specific to a special mode. |
21650 | 962 In this case it is the originating buffer.") |
963 (defvar speedbar-buffer nil | |
964 "The buffer displaying the speedbar.") | |
965 (defvar speedbar-frame nil | |
966 "The frame displaying speedbar.") | |
967 (defvar speedbar-cached-frame nil | |
968 "The frame that was last created, then removed from the display.") | |
969 (defvar speedbar-full-text-cache nil | |
970 "The last open directory is saved in its entirety for ultra-fast switching.") | |
971 (defvar speedbar-timer nil | |
972 "The speedbar timer used for updating the buffer.") | |
973 (defvar speedbar-attached-frame nil | |
974 "The frame which started speedbar mode. | |
975 This is the frame from which all data displayed in the speedbar is | |
976 gathered, and in which files and such are displayed.") | |
977 | |
978 (defvar speedbar-last-selected-file nil | |
979 "The last file which was selected in speedbar buffer.") | |
980 | |
981 (defvar speedbar-shown-directories nil | |
982 "Maintain list of directories simultaneously open in the current speedbar.") | |
983 | |
984 (defvar speedbar-directory-contents-alist nil | |
985 "An association list of directories and their contents. | |
986 Each sublist was returned by `speedbar-file-lists'. This list is | |
987 maintained to speed up the refresh rate when switching between | |
988 directories.") | |
989 | |
990 (defvar speedbar-power-click nil | |
991 "Never set this by hand. Value is t when S-mouse activity occurs.") | |
992 | |
993 | |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
994 ;;; Compatibility |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
995 ;; |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
996 (if (fboundp 'frame-parameter) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
997 |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
998 (defalias 'speedbar-frame-parameter 'frame-parameter) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48716
diff
changeset
|
999 |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1000 (defun speedbar-frame-parameter (frame parameter) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1001 "Return FRAME's PARAMETER value." |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1002 (cdr (assoc parameter (frame-parameters frame))))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1003 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1004 (if (fboundp 'make-overlay) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1005 (progn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1006 (defalias 'speedbar-make-overlay 'make-overlay) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1007 (defalias 'speedbar-overlay-put 'overlay-put) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1008 (defalias 'speedbar-delete-overlay 'delete-overlay) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1009 (defalias 'speedbar-overlay-start 'overlay-start) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1010 (defalias 'speedbar-overlay-end 'overlay-end) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1011 (defalias 'speedbar-mode-line-update 'force-mode-line-update)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1012 (defalias 'speedbar-make-overlay 'make-extent) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1013 (defalias 'speedbar-overlay-put 'set-extent-property) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1014 (defalias 'speedbar-delete-overlay 'delete-extent) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1015 (defalias 'speedbar-overlay-start 'extent-start) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1016 (defalias 'speedbar-overlay-end 'extent-end) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1017 (defalias 'speedbar-mode-line-update 'redraw-modeline)) |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1018 |
21650 | 1019 ;;; Mode definitions/ user commands |
1020 ;; | |
1021 | |
1022 ;;;###autoload | |
1023 (defalias 'speedbar 'speedbar-frame-mode) | |
1024 ;;;###autoload | |
1025 (defun speedbar-frame-mode (&optional arg) | |
1026 "Enable or disable speedbar. Positive ARG means turn on, negative turn off. | |
1027 nil means toggle. Once the speedbar frame is activated, a buffer in | |
1028 `speedbar-mode' will be displayed. Currently, only one speedbar is | |
1029 supported at a time. | |
1030 `speedbar-before-popup-hook' is called before popping up the speedbar frame. | |
1031 `speedbar-before-delete-hook' is called before the frame is deleted." | |
1032 (interactive "P") | |
1033 ;; toggle frame on and off. | |
1034 (if (not arg) (if (and (frame-live-p speedbar-frame) | |
1035 (frame-visible-p speedbar-frame)) | |
1036 (setq arg -1) (setq arg 1))) | |
1037 ;; turn the frame off on neg number | |
1038 (if (and (numberp arg) (< arg 0)) | |
1039 (progn | |
1040 (run-hooks 'speedbar-before-delete-hook) | |
1041 (if (and speedbar-frame (frame-live-p speedbar-frame)) | |
1042 (progn | |
1043 (setq speedbar-cached-frame speedbar-frame) | |
1044 (make-frame-invisible speedbar-frame))) | |
1045 (setq speedbar-frame nil) | |
1046 (speedbar-set-timer nil) | |
1047 ;; Used to delete the buffer. This has the annoying affect of | |
1048 ;; preventing whatever took its place from ever appearing | |
1049 ;; as the default after a C-x b was typed | |
1050 ;;(if (bufferp speedbar-buffer) | |
1051 ;; (kill-buffer speedbar-buffer)) | |
1052 ) | |
1053 ;; Set this as our currently attached frame | |
1054 (setq speedbar-attached-frame (selected-frame)) | |
1055 (run-hooks 'speedbar-before-popup-hook) | |
1056 ;; Get the frame to work in | |
1057 (if (frame-live-p speedbar-cached-frame) | |
1058 (progn | |
1059 (setq speedbar-frame speedbar-cached-frame) | |
1060 (make-frame-visible speedbar-frame) | |
1061 ;; Get the buffer to play with | |
1062 (speedbar-mode) | |
1063 (select-frame speedbar-frame) | |
1064 (if (not (eq (current-buffer) speedbar-buffer)) | |
1065 (switch-to-buffer speedbar-buffer)) | |
1066 (set-window-dedicated-p (selected-window) t) | |
1067 (raise-frame speedbar-frame) | |
1068 (speedbar-set-timer speedbar-update-speed) | |
1069 ) | |
1070 (if (frame-live-p speedbar-frame) | |
1071 (raise-frame speedbar-frame) | |
1072 (setq speedbar-frame | |
1073 (if speedbar-xemacsp | |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1074 ;; Only guess height if it is not specified. |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1075 (if (member 'height speedbar-frame-plist) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1076 (make-frame speedbar-frame-plist) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1077 (make-frame (nconc (list 'height |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1078 (speedbar-needed-height)) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1079 speedbar-frame-plist))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1080 (let* ((mh (speedbar-frame-parameter nil 'menu-bar-lines)) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1081 (cfx (speedbar-frame-parameter nil 'left)) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1082 (cfy (speedbar-frame-parameter nil 'top)) |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
1083 (cfw (frame-pixel-width)) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
1084 (params |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1085 ;; Only add a guessed height if one is not specified |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1086 ;; in the input parameters. |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1087 (if (assoc 'height speedbar-frame-parameters) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1088 speedbar-frame-parameters |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1089 (append |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1090 speedbar-frame-parameters |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1091 (list (cons 'height (+ mh (frame-height))))))) |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
1092 (frame |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
1093 (if (or (< emacs-major-version 20) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
1094 (not (eq window-system 'x))) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
1095 (make-frame params) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
1096 (let ((x-pointer-shape x-pointer-top-left-arrow) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
1097 (x-sensitive-text-pointer-shape |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
1098 x-pointer-hand2)) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
1099 (make-frame params))))) |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1100 ;; Position speedbar frame. |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1101 (if (or (not window-system) (eq window-system 'pc) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1102 (assoc 'left speedbar-frame-parameters) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1103 (assoc 'top speedbar-frame-parameters)) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1104 ;; Do no positioning if not on a windowing system, |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1105 ;; or if left/top were specified in the parameters. |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1106 frame |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1107 (let ((cfx |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1108 (if (not (consp cfx)) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1109 cfx |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1110 ;; If cfx is a list, that means we grow |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1111 ;; from a specific edge of the display. |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1112 ;; Convert that to the distance from the |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1113 ;; left side of the display. |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1114 (if (eq (car cfx) '-) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1115 ;; A - means distance from the right edge |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1116 ;; of the display, or DW - cfx - framewidth |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1117 (- (x-display-pixel-width) (car (cdr cfx)) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1118 (frame-pixel-width)) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1119 (car (cdr cfx)))))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1120 (modify-frame-parameters |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1121 frame |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1122 (list |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1123 (cons |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1124 'left |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1125 ;; Decide which side to put it |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1126 ;; on. 200 is just a buffer |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1127 ;; for the left edge of the |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1128 ;; screen. The extra 10 is just |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1129 ;; dressings for window decorations. |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1130 (let ((sfw (frame-pixel-width frame))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1131 (let ((left-guess (- cfx 10 sfw)) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1132 (right-guess (+ cfx cfw 5))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1133 (let ((left-margin left-guess) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1134 (right-margin |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1135 (- (x-display-pixel-width) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1136 right-guess 5 sfw))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1137 (cond ((>= left-margin 0) left-guess) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1138 ((>= right-margin 0) right-guess) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1139 ;; otherwise choose side we overlap less |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1140 ((> left-margin right-margin) 0) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1141 (t (- (x-display-pixel-width) sfw 5))))))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1142 (cons 'top cfy))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
1143 frame))))) |
21650 | 1144 ;; reset the selection variable |
1145 (setq speedbar-last-selected-file nil) | |
1146 ;; Put the buffer into the frame | |
1147 (save-window-excursion | |
1148 ;; Get the buffer to play with | |
1149 (speedbar-mode) | |
1150 (select-frame speedbar-frame) | |
1151 (switch-to-buffer speedbar-buffer) | |
1152 (set-window-dedicated-p (selected-window) t)) | |
23372
64e80b07376b
(speedbar-frame-mode): Check if cfx or cfy is a list, and make sure it
Eric M. Ludlam <zappo@gnu.org>
parents:
23275
diff
changeset
|
1153 (if (and (or (null window-system) (eq window-system 'pc)) |
64e80b07376b
(speedbar-frame-mode): Check if cfx or cfy is a list, and make sure it
Eric M. Ludlam <zappo@gnu.org>
parents:
23275
diff
changeset
|
1154 (fboundp 'set-frame-name)) |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1155 (progn |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1156 (select-frame speedbar-frame) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1157 (set-frame-name "Speedbar"))) |
21650 | 1158 (speedbar-set-timer speedbar-update-speed))))) |
1159 | |
1160 ;;;###autoload | |
1161 (defun speedbar-get-focus () | |
1162 "Change frame focus to or from the speedbar frame. | |
1163 If the selected frame is not speedbar, then speedbar frame is | |
1164 selected. If the speedbar frame is active, then select the attached frame." | |
1165 (interactive) | |
1166 (if (eq (selected-frame) speedbar-frame) | |
1167 (if (frame-live-p speedbar-attached-frame) | |
1168 (select-frame speedbar-attached-frame)) | |
22735 | 1169 ;; If updates are off, then refresh the frame (they want it now...) |
1170 (if (not speedbar-update-flag) | |
1171 (let ((speedbar-update-flag t)) | |
1172 (speedbar-timer-fn))) | |
21650 | 1173 ;; make sure we have a frame |
1174 (if (not (frame-live-p speedbar-frame)) (speedbar-frame-mode 1)) | |
1175 ;; go there | |
22735 | 1176 (select-frame speedbar-frame) |
1177 ) | |
21650 | 1178 (other-frame 0)) |
1179 | |
1180 (defun speedbar-close-frame () | |
1181 "Turn off a currently active speedbar." | |
1182 (interactive) | |
1183 (speedbar-frame-mode -1) | |
1184 (select-frame speedbar-attached-frame) | |
1185 (other-frame 0)) | |
1186 | |
22735 | 1187 (defun speedbar-switch-buffer-attached-frame (&optional buffer) |
1188 "Switch to BUFFER in speedbar's attached frame, and raise that frame. | |
1189 This overrides the default behavior of `switch-to-buffer' which is | |
1190 broken because of the dedicated speedbar frame." | |
1191 (interactive) | |
1192 ;; Assume we are in the speedbar frame. | |
1193 (speedbar-get-focus) | |
1194 ;; Now switch buffers | |
1195 (if buffer | |
1196 (switch-to-buffer buffer) | |
1197 (call-interactively 'switch-to-buffer nil nil))) | |
1198 | |
21650 | 1199 (defmacro speedbar-frame-width () |
1200 "Return the width of the speedbar frame in characters. | |
1201 nil if it doesn't exist." | |
1202 '(frame-width speedbar-frame)) | |
1203 | |
1204 ;; XEmacs function only. | |
1205 (defun speedbar-needed-height (&optional frame) | |
1206 "The needed height for the tool bar FRAME (in characters)." | |
1207 (or frame (setq frame (selected-frame))) | |
1208 ;; The 1 is the missing modeline/minibuffer | |
1209 (+ 1 (/ (frame-pixel-height frame) | |
1210 (face-height 'default frame)))) | |
1211 | |
1212 (defun speedbar-mode () | |
1213 "Major mode for managing a display of directories and tags. | |
1214 \\<speedbar-key-map> | |
1215 The first line represents the default path of the speedbar frame. | |
1216 Each directory segment is a button which jumps speedbar's default | |
1217 directory to that path. Buttons are activated by clicking `\\[speedbar-click]'. | |
1218 In some situations using `\\[speedbar-power-click]' is a `power click' which will | |
1219 rescan cached items, or pop up new frames. | |
1220 | |
1221 Each line starting with <+> represents a directory. Click on the <+> | |
1222 to insert the directory listing into the current tree. Click on the | |
1223 <-> to retract that list. Click on the directory name to go to that | |
1224 directory as the default. | |
1225 | |
1226 Each line starting with [+] is a file. If the variable | |
1227 `speedbar-show-unknown-files' is t, the lines starting with [?] are | |
1228 files which don't have imenu support, but are not expressly ignored. | |
1229 Files are completely ignored if they match `speedbar-file-unshown-regexp' | |
1230 which is generated from `completion-ignored-extensions'. | |
1231 | |
1232 Files with a `*' character after their name are files checked out of a | |
47286
4f937ab8ad22
(speedbar-mode): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
47267
diff
changeset
|
1233 version control system. (Currently only RCS is supported.) New |
21650 | 1234 version control systems can be added by examining the documentation |
47286
4f937ab8ad22
(speedbar-mode): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
47267
diff
changeset
|
1235 for `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p'. |
21650 | 1236 |
22735 | 1237 Files with a `#' or `!' character after them are source files that |
1238 have an object file associated with them. The `!' indicates that the | |
47267
8b5ff870e329
(speedbar-mode): Fix spacing.
Juanma Barranquero <lekktu@gmail.com>
parents:
46288
diff
changeset
|
1239 files is out of date. You can control what source/object associations |
22735 | 1240 exist through the variable `speedbar-obj-alist'. |
1241 | |
21650 | 1242 Click on the [+] to display a list of tags from that file. Click on |
1243 the [-] to retract the list. Click on the file name to edit the file | |
1244 in the attached frame. | |
1245 | |
1246 If you open tags, you might find a node starting with {+}, which is a | |
1247 category of tags. Click the {+} to expand the category. Jump-able | |
1248 tags start with >. Click the name of the tag to go to that position | |
1249 in the selected file. | |
1250 | |
1251 \\{speedbar-key-map}" | |
1252 ;; NOT interactive | |
1253 (save-excursion | |
1254 (setq speedbar-buffer (set-buffer (get-buffer-create " SPEEDBAR"))) | |
1255 (kill-all-local-variables) | |
1256 (setq major-mode 'speedbar-mode) | |
1257 (setq mode-name "Speedbar") | |
1258 (set-syntax-table speedbar-syntax-table) | |
1259 (setq font-lock-keywords nil) ;; no font-locking please | |
1260 (setq truncate-lines t) | |
1261 (make-local-variable 'frame-title-format) | |
1262 (setq frame-title-format "Speedbar") | |
1263 ;; Set this up special just for the speedbar buffer | |
22735 | 1264 ;; Terminal minibuffer stuff does not require this. |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1265 (if (and window-system (not (eq window-system 'pc)) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1266 (null default-minibuffer-frame)) |
21650 | 1267 (progn |
1268 (make-local-variable 'default-minibuffer-frame) | |
1269 (setq default-minibuffer-frame speedbar-attached-frame))) | |
22735 | 1270 ;; Correct use of `temp-buffer-show-function': Bob Weiner |
1271 (if (and (boundp 'temp-buffer-show-hook) | |
1272 (boundp 'temp-buffer-show-function)) | |
1273 (progn (make-local-variable 'temp-buffer-show-hook) | |
1274 (setq temp-buffer-show-hook temp-buffer-show-function))) | |
21650 | 1275 (make-local-variable 'temp-buffer-show-function) |
1276 (setq temp-buffer-show-function 'speedbar-temp-buffer-show-function) | |
1277 (if speedbar-xemacsp | |
1278 (progn | |
1279 ;; Argh! mouse-track-click-hook doesn't understand the | |
1280 ;; make-local-hook conventions. | |
1281 (make-local-variable 'mouse-track-click-hook) | |
1282 (add-hook 'mouse-track-click-hook | |
1283 (lambda (event count) | |
1284 (if (/= (event-button event) 1) | |
1285 nil ; Do normal operations. | |
1286 (cond ((eq count 1) | |
1287 (speedbar-quick-mouse event)) | |
1288 ((or (eq count 2) | |
1289 (eq count 3)) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1290 (speedbar-mouse-set-point event) |
21650 | 1291 (speedbar-do-function-pointer) |
1292 (speedbar-quick-mouse event))) | |
1293 ;; Don't do normal operations. | |
1294 t))))) | |
1295 (add-hook 'kill-buffer-hook (lambda () (let ((skilling (boundp 'skilling))) | |
1296 (if skilling | |
1297 nil | |
1298 (if (eq (current-buffer) | |
1299 speedbar-buffer) | |
1300 (speedbar-frame-mode -1))))) | |
1301 t t) | |
23083
2dea437fe88a
(speedbar-with-writable): remove `toggle-read-only'.
Eric M. Ludlam <zappo@gnu.org>
parents:
23080
diff
changeset
|
1302 (toggle-read-only 1) |
21650 | 1303 (speedbar-set-mode-line-format) |
22735 | 1304 (if speedbar-xemacsp |
56762
85c0c238dbbf
(speedbar-file-regexp): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents:
56754
diff
changeset
|
1305 (with-no-warnings |
85c0c238dbbf
(speedbar-file-regexp): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents:
56754
diff
changeset
|
1306 (set (make-local-variable 'mouse-motion-handler) |
85c0c238dbbf
(speedbar-file-regexp): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents:
56754
diff
changeset
|
1307 'speedbar-track-mouse-xemacs)) |
22735 | 1308 (if speedbar-track-mouse-flag |
28925
89a795d90175
(speedbar-recenter): Typo, and fix logic.
Eric M. Ludlam <zappo@gnu.org>
parents:
28902
diff
changeset
|
1309 (set (make-local-variable 'track-mouse) t)) ;this could be messy. |
22735 | 1310 (setq auto-show-mode nil)) ;no auto-show for Emacs |
21650 | 1311 (run-hooks 'speedbar-mode-hook)) |
1312 (speedbar-update-contents) | |
1313 speedbar-buffer) | |
1314 | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1315 (defmacro speedbar-with-attached-buffer (&rest forms) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1316 "Execute FORMS in the attached frame's special buffer. |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1317 Optionally select that frame if necessary." |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1318 `(save-selected-window |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1319 (speedbar-set-timer speedbar-update-speed) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1320 (select-frame speedbar-attached-frame) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1321 ,@forms |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1322 (speedbar-maybee-jump-to-attached-frame))) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1323 |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1324 (defun speedbar-message (fmt &rest args) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1325 "Like message, but for use in the speedbar frame. |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1326 Argument FMT is the format string, and ARGS are the arguments for message." |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1327 (save-selected-window |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1328 (select-frame speedbar-attached-frame) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1329 (apply 'message fmt args))) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1330 |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1331 (defun speedbar-y-or-n-p (prompt) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1332 "Like `y-or-n-p', but for use in the speedbar frame. |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1333 Argument PROMPT is the prompt to use." |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1334 (save-selected-window |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1335 (if (and default-minibuffer-frame (not (eq default-minibuffer-frame |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1336 speedbar-attached-frame))) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1337 (select-frame speedbar-attached-frame)) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1338 (y-or-n-p prompt))) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1339 |
22735 | 1340 (defun speedbar-show-info-under-mouse (&optional event) |
1341 "Call the info function for the line under the mouse. | |
1342 Optional EVENT is currently not used." | |
1343 (let ((pos (mouse-position))) ; we ignore event until I use it later. | |
1344 (if (equal (car pos) speedbar-frame) | |
1345 (save-excursion | |
1346 (save-window-excursion | |
1347 (apply 'set-mouse-position pos) | |
1348 (speedbar-item-info)))))) | |
1349 | |
21650 | 1350 (defun speedbar-set-mode-line-format () |
1351 "Set the format of the mode line based on the current speedbar environment. | |
1352 This gives visual indications of what is up. It EXPECTS the speedbar | |
1353 frame and window to be the currently active frame and window." | |
1354 (if (and (frame-live-p speedbar-frame) | |
1355 (or (not speedbar-xemacsp) | |
56762
85c0c238dbbf
(speedbar-file-regexp): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents:
56754
diff
changeset
|
1356 (with-no-warnings |
85c0c238dbbf
(speedbar-file-regexp): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents:
56754
diff
changeset
|
1357 (specifier-instance has-modeline-p)))) |
21650 | 1358 (save-excursion |
1359 (set-buffer speedbar-buffer) | |
1360 (let* ((w (or (speedbar-frame-width) 20)) | |
1361 (p1 "<<") | |
1362 (p5 ">>") | |
1363 (p3 (if speedbar-update-flag "SPEEDBAR" "SLOWBAR")) | |
1364 (blank (- w (length p1) (length p3) (length p5) | |
1365 (if line-number-mode 4 0))) | |
1366 (p2 (if (> blank 0) | |
1367 (make-string (/ blank 2) ? ) | |
1368 "")) | |
1369 (p4 (if (> blank 0) | |
1370 (make-string (+ (/ blank 2) (% blank 2)) ? ) | |
1371 "")) | |
1372 (tf | |
1373 (if line-number-mode | |
1374 (list (concat p1 p2 p3) '(line-number-mode " %3l") | |
1375 (concat p4 p5)) | |
1376 (list (concat p1 p2 p3 p4 p5))))) | |
1377 (if (not (equal mode-line-format tf)) | |
1378 (progn | |
1379 (setq mode-line-format tf) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1380 (speedbar-mode-line-update))))))) |
21650 | 1381 |
1382 (defun speedbar-temp-buffer-show-function (buffer) | |
1383 "Placed in the variable `temp-buffer-show-function' in `speedbar-mode'. | |
1384 If a user requests help using \\[help-command] <Key> the temp BUFFER will be | |
1385 redirected into a window on the attached frame." | |
1386 (if speedbar-attached-frame (select-frame speedbar-attached-frame)) | |
1387 (pop-to-buffer buffer nil) | |
1388 (other-window -1) | |
23084
e1613f1c52f8
(speedbar-temp-buffer-show-function): For emacs don't call hook
Eric M. Ludlam <zappo@gnu.org>
parents:
23083
diff
changeset
|
1389 ;; Fix for using this hook on some platforms: Bob Weiner |
e1613f1c52f8
(speedbar-temp-buffer-show-function): For emacs don't call hook
Eric M. Ludlam <zappo@gnu.org>
parents:
23083
diff
changeset
|
1390 (cond ((not speedbar-xemacsp) |
e1613f1c52f8
(speedbar-temp-buffer-show-function): For emacs don't call hook
Eric M. Ludlam <zappo@gnu.org>
parents:
23083
diff
changeset
|
1391 (run-hooks 'temp-buffer-show-hook)) |
e1613f1c52f8
(speedbar-temp-buffer-show-function): For emacs don't call hook
Eric M. Ludlam <zappo@gnu.org>
parents:
23083
diff
changeset
|
1392 ((fboundp 'run-hook-with-args) |
22735 | 1393 (run-hook-with-args 'temp-buffer-show-hook buffer)) |
1394 ((and (boundp 'temp-buffer-show-hook) | |
1395 (listp temp-buffer-show-hook)) | |
1396 (mapcar (function (lambda (hook) (funcall hook buffer))) | |
1397 temp-buffer-show-hook)))) | |
21650 | 1398 |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1399 (defvar speedbar-previous-menu nil |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1400 "The menu before the last `speedbar-reconfigure-keymaps' was called.") |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1401 |
22735 | 1402 (defun speedbar-reconfigure-keymaps () |
21650 | 1403 "Reconfigure the menu-bar in a speedbar frame. |
1404 Different menu items are displayed depending on the current display mode | |
1405 and the existence of packages." | |
22735 | 1406 (let ((md (append |
1407 speedbar-easymenu-definition-base | |
1408 (if speedbar-shown-directories | |
1409 ;; file display mode version | |
1410 (speedbar-initial-menu) | |
1411 (save-excursion | |
1412 (select-frame speedbar-attached-frame) | |
1413 (if (local-variable-p | |
1414 'speedbar-easymenu-definition-special | |
1415 (current-buffer)) | |
1416 ;; If bound locally, we can use it | |
1417 speedbar-easymenu-definition-special))) | |
1418 ;; Dynamic menu stuff | |
1419 '("-") | |
1420 (list (cons "Displays" | |
1421 (let ((displays nil) | |
1422 (alist speedbar-initial-expansion-mode-alist)) | |
1423 (while alist | |
1424 (setq displays | |
1425 (cons | |
1426 (vector | |
1427 (capitalize (car (car alist))) | |
1428 (list | |
1429 'speedbar-change-initial-expansion-list | |
1430 (car (car alist))) | |
1431 t) | |
1432 displays)) | |
1433 (setq alist (cdr alist))) | |
1434 displays))) | |
1435 ;; The trailer | |
1436 speedbar-easymenu-definition-trailer)) | |
1437 (localmap (save-excursion | |
1438 (let ((cf (selected-frame))) | |
1439 (prog2 | |
1440 (select-frame speedbar-attached-frame) | |
1441 (if (local-variable-p | |
1442 'speedbar-special-mode-key-map | |
1443 (current-buffer)) | |
1444 speedbar-special-mode-key-map) | |
1445 (select-frame cf)))))) | |
1446 (save-excursion | |
1447 (set-buffer speedbar-buffer) | |
1448 (use-local-map (or localmap | |
1449 (speedbar-initial-keymap) | |
1450 ;; This creates a small keymap we can glom the | |
1451 ;; menu adjustments into. | |
1452 (speedbar-make-specialized-keymap))) | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1453 ;; Delete the old menu if applicable. |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1454 (if speedbar-previous-menu (easy-menu-remove speedbar-previous-menu)) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1455 (setq speedbar-previous-menu md) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1456 ;; Now add the new menu |
22735 | 1457 (if (not speedbar-xemacsp) |
1458 (easy-menu-define speedbar-menu-map (current-local-map) | |
1459 "Speedbar menu" md) | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1460 (easy-menu-add md (current-local-map)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1461 (set-buffer-menubar (list md)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1462 (run-hooks 'speedbar-reconfigure-keymaps-hook))) |
21650 | 1463 |
1464 | |
1465 ;;; User Input stuff | |
1466 ;; | |
1467 | |
1468 ;; XEmacs: this can be implemented using modeline keymaps, but there | |
1469 ;; is no use, as we have horizontal scrollbar (as the docstring | |
1470 ;; hints.) | |
1471 (defun speedbar-mouse-hscroll (e) | |
1472 "Read a mouse event E from the mode line, and horizontally scroll. | |
1473 If the mouse is being clicked on the far left, or far right of the | |
46286
6117ca314143
(speedbar-tag-hierarchy-method): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
46282
diff
changeset
|
1474 mode-line. This is only useful for non-XEmacs." |
21650 | 1475 (interactive "e") |
1476 (let* ((xp (car (nth 2 (car (cdr e))))) | |
1477 (cpw (/ (frame-pixel-width) | |
1478 (frame-width))) | |
1479 (oc (1+ (/ xp cpw))) | |
1480 ) | |
1481 (cond ((< oc 3) | |
1482 (scroll-left 2)) | |
1483 ((> oc (- (window-width) 3)) | |
1484 (scroll-right 2)) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1485 (t (speedbar-message |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1486 "Click on the edge of the modeline to scroll left/right"))) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1487 ;;(speedbar-message "X: Pixel %d Char Pixels %d On char %d" xp cpw oc) |
21650 | 1488 )) |
1489 | |
1490 (defun speedbar-customize () | |
1491 "Customize speedbar using the Custom package." | |
1492 (interactive) | |
1493 (let ((sf (selected-frame))) | |
1494 (select-frame speedbar-attached-frame) | |
1495 (customize-group 'speedbar) | |
1496 (select-frame sf)) | |
1497 (speedbar-maybee-jump-to-attached-frame)) | |
1498 | |
22735 | 1499 (defun speedbar-track-mouse (event) |
1500 "For motion EVENT, display info about the current line." | |
1501 (interactive "e") | |
1502 (if (not speedbar-track-mouse-flag) | |
1503 nil | |
1504 (save-excursion | |
1505 (let ((char (nth 1 (car (cdr event))))) | |
1506 (if (not (numberp char)) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1507 (speedbar-message nil) |
22735 | 1508 (goto-char char) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1509 ;; (speedbar-message "%S" event) |
22735 | 1510 (speedbar-item-info) |
1511 ))))) | |
1512 | |
1513 (defun speedbar-track-mouse-xemacs (event) | |
1514 "For motion EVENT, display info about the current line." | |
1515 (if (functionp (default-value 'mouse-motion-handler)) | |
1516 (funcall (default-value 'mouse-motion-handler) event)) | |
1517 (if speedbar-track-mouse-flag | |
1518 (save-excursion | |
1519 (save-window-excursion | |
1520 (condition-case () | |
1521 (progn (mouse-set-point event) | |
1522 ;; Prevent focus-related bugs. | |
1523 (if (eq major-mode 'speedbar-mode) | |
1524 (speedbar-item-info))) | |
1525 (error nil)))))) | |
1526 | |
21650 | 1527 ;; In XEmacs, we make popup menus work on the item over mouse (as |
1528 ;; opposed to where the point happens to be.) We attain this by | |
1529 ;; temporarily moving the point to that place. | |
1530 ;; Hrvoje Niksic <hniksic@srce.hr> | |
1531 (defun speedbar-xemacs-popup-kludge (event) | |
1532 "Pop up a menu related to the clicked on item. | |
1533 Must be bound to EVENT." | |
1534 (interactive "e") | |
22735 | 1535 (select-frame speedbar-frame) |
21650 | 1536 (save-excursion |
1537 (goto-char (event-closest-point event)) | |
1538 (beginning-of-line) | |
1539 (forward-char (min 5 (- (save-excursion (end-of-line) (point)) | |
1540 (save-excursion (beginning-of-line) (point))))) | |
1541 (popup-mode-menu) | |
1542 ;; Wait for menu to bail out. `popup-mode-menu' (and other popup | |
1543 ;; menu functions) return immediately. | |
1544 (let (new) | |
1545 (while (not (misc-user-event-p (setq new (next-event)))) | |
1546 (dispatch-event new)) | |
1547 (dispatch-event new)))) | |
1548 | |
1549 (defun speedbar-emacs-popup-kludge (e) | |
1550 "Pop up a menu related to the clicked on item. | |
1551 Must be bound to event E." | |
1552 (interactive "e") | |
1553 (save-excursion | |
1554 (mouse-set-point e) | |
1555 ;; This gets the cursor where the user can see it. | |
1556 (if (not (bolp)) (forward-char -1)) | |
1557 (sit-for 0) | |
56762
85c0c238dbbf
(speedbar-file-regexp): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents:
56754
diff
changeset
|
1558 (mouse-major-mode-menu e nil))) |
21650 | 1559 |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1560 (defun speedbar-hack-buffer-menu (e) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1561 "Control mouse 1 is buffer menu. |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1562 This hack overrides it so that the right thing happens in the main |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1563 Emacs frame, not in the speedbar frame. |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1564 Argument E is the event causing this activity." |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1565 (interactive "e") |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1566 (let ((fn (lookup-key global-map (if speedbar-xemacsp |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1567 '(control button1) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1568 [C-down-mouse-1]))) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1569 (newbuff nil)) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1570 (unwind-protect |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1571 (save-excursion |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1572 (set-window-dedicated-p (selected-window) nil) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1573 (call-interactively fn) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1574 (setq newbuff (current-buffer))) |
24809
078e0b907e6e
(speedbar-hack-buffer-menu): Fixed so if the user
Karl Heuer <kwzh@gnu.org>
parents:
24475
diff
changeset
|
1575 (switch-to-buffer speedbar-buffer) |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1576 (set-window-dedicated-p (selected-window) t)) |
24809
078e0b907e6e
(speedbar-hack-buffer-menu): Fixed so if the user
Karl Heuer <kwzh@gnu.org>
parents:
24475
diff
changeset
|
1577 (if (not (eq newbuff speedbar-buffer)) |
078e0b907e6e
(speedbar-hack-buffer-menu): Fixed so if the user
Karl Heuer <kwzh@gnu.org>
parents:
24475
diff
changeset
|
1578 (speedbar-with-attached-buffer |
078e0b907e6e
(speedbar-hack-buffer-menu): Fixed so if the user
Karl Heuer <kwzh@gnu.org>
parents:
24475
diff
changeset
|
1579 (switch-to-buffer newbuff))))) |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1580 |
21650 | 1581 (defun speedbar-next (arg) |
1582 "Move to the next ARGth line in a speedbar buffer." | |
1583 (interactive "p") | |
1584 (forward-line (or arg 1)) | |
1585 (speedbar-item-info) | |
1586 (speedbar-position-cursor-on-line)) | |
1587 | |
1588 (defun speedbar-prev (arg) | |
1589 "Move to the previous ARGth line in a speedbar buffer." | |
1590 (interactive "p") | |
1591 (speedbar-next (if arg (- arg) -1))) | |
1592 | |
22735 | 1593 (defun speedbar-restricted-move (arg) |
1594 "Move to the next ARGth line in a speedbar buffer at the same depth. | |
1595 This means that movement is restricted to a subnode, and that siblings | |
1596 of intermediate nodes are skipped." | |
1597 (if (not (numberp arg)) (signal 'wrong-type-argument (list arg 'numberp))) | |
1598 ;; First find the extent for which we are allowed to move. | |
1599 (let ((depth (save-excursion (beginning-of-line) | |
1600 (if (looking-at "[0-9]+:") | |
1601 (string-to-int (match-string 0)) | |
1602 0))) | |
1603 (crement (if (< arg 0) 1 -1)) ; decrement or increment | |
1604 (lastmatch (point))) | |
1605 (while (/= arg 0) | |
1606 (forward-line (- crement)) | |
1607 (let ((subdepth (save-excursion (beginning-of-line) | |
1608 (if (looking-at "[0-9]+:") | |
1609 (string-to-int (match-string 0)) | |
1610 0)))) | |
1611 (cond ((or (< subdepth depth) | |
1612 (progn (end-of-line) (eobp)) | |
1613 (progn (beginning-of-line) (bobp))) | |
1614 ;; We have reached the end of this block. | |
1615 (goto-char lastmatch) | |
1616 (setq arg 0) | |
1617 (error "End of sub-list")) | |
1618 ((= subdepth depth) | |
1619 (setq lastmatch (point) | |
1620 arg (+ arg crement)))))) | |
1621 (speedbar-position-cursor-on-line))) | |
1622 | |
1623 (defun speedbar-restricted-next (arg) | |
1624 "Move to the next ARGth line in a speedbar buffer at the same depth. | |
1625 This means that movement is restricted to a subnode, and that siblings | |
1626 of intermediate nodes are skipped." | |
1627 (interactive "p") | |
1628 (speedbar-restricted-move (or arg 1)) | |
1629 (speedbar-item-info)) | |
1630 | |
1631 | |
1632 (defun speedbar-restricted-prev (arg) | |
1633 "Move to the previous ARGth line in a speedbar buffer at the same depth. | |
1634 This means that movement is restricted to a subnode, and that siblings | |
1635 of intermediate nodes are skipped." | |
1636 (interactive "p") | |
1637 (speedbar-restricted-move (if arg (- arg) -1)) | |
1638 (speedbar-item-info)) | |
1639 | |
1640 (defun speedbar-navigate-list (arg) | |
1641 "Move across ARG groups of similarly typed items in speedbar. | |
1642 Stop on the first line of the next type of item, or on the last or first item | |
1643 if we reach a buffer boundary." | |
1644 (interactive "p") | |
1645 (beginning-of-line) | |
1646 (if (looking-at "[0-9]+: *[[<{][-+?][]>}] ") | |
1647 (let ((str (regexp-quote (match-string 0)))) | |
1648 (while (looking-at str) | |
1649 (speedbar-restricted-move arg) | |
1650 (beginning-of-line)))) | |
1651 (speedbar-position-cursor-on-line)) | |
1652 | |
1653 (defun speedbar-forward-list () | |
1654 "Move forward over the current list. | |
1655 A LIST in speedbar is a group of similarly typed items, such as directories, | |
1656 files, or the directory button." | |
1657 (interactive) | |
1658 (speedbar-navigate-list 1) | |
1659 (speedbar-item-info)) | |
1660 | |
1661 (defun speedbar-backward-list () | |
1662 "Move backward over the current list. | |
1663 A LIST in speedbar is a group of similarly typed items, such as directories, | |
1664 files, or the directory button." | |
1665 (interactive) | |
1666 (speedbar-navigate-list -1) | |
1667 (speedbar-item-info)) | |
1668 | |
21650 | 1669 (defun speedbar-scroll-up (&optional arg) |
1670 "Page down one screen-full of the speedbar, or ARG lines." | |
1671 (interactive "P") | |
1672 (scroll-up arg) | |
1673 (speedbar-position-cursor-on-line)) | |
1674 | |
1675 (defun speedbar-scroll-down (&optional arg) | |
1676 "Page up one screen-full of the speedbar, or ARG lines." | |
1677 (interactive "P") | |
1678 (scroll-down arg) | |
1679 (speedbar-position-cursor-on-line)) | |
1680 | |
1681 (defun speedbar-up-directory () | |
1682 "Keyboard accelerator for moving the default directory up one. | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
1683 Assumes that the current buffer is the speedbar buffer." |
21650 | 1684 (interactive) |
1685 (setq default-directory (expand-file-name (concat default-directory "../"))) | |
1686 (speedbar-update-contents)) | |
1687 | |
1688 ;;; Speedbar file activity (aka creeping featurism) | |
1689 ;; | |
1690 (defun speedbar-refresh () | |
1691 "Refresh the current speedbar display, disposing of any cached data." | |
1692 (interactive) | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1693 (let ((dl speedbar-shown-directories) |
47627
33bcb75e91e8
(speedbar-refresh): Simply bind deactivate-mark.
Richard M. Stallman <rms@gnu.org>
parents:
47286
diff
changeset
|
1694 deactivate-mark) |
21650 | 1695 (while dl |
1696 (adelete 'speedbar-directory-contents-alist (car dl)) | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1697 (setq dl (cdr dl))) |
22906
adfc04c48002
Updated refresh messages to clear themselves.
Eric M. Ludlam <zappo@gnu.org>
parents:
22893
diff
changeset
|
1698 (if (<= 1 speedbar-verbosity-level) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1699 (speedbar-message "Refreshing speedbar...")) |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1700 (speedbar-update-contents) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1701 (speedbar-stealthy-updates) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1702 ;; Reset the timer in case it got really hosed for some reason... |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1703 (speedbar-set-timer speedbar-update-speed) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1704 (if (<= 1 speedbar-verbosity-level) |
47627
33bcb75e91e8
(speedbar-refresh): Simply bind deactivate-mark.
Richard M. Stallman <rms@gnu.org>
parents:
47286
diff
changeset
|
1705 (speedbar-message "Refreshing speedbar...done")))) |
21650 | 1706 |
1707 (defun speedbar-item-load () | |
22735 | 1708 "Load the item under the cursor or mouse if it is a Lisp file." |
21650 | 1709 (interactive) |
1710 (let ((f (speedbar-line-file))) | |
1711 (if (and (file-exists-p f) (string-match "\\.el\\'" f)) | |
1712 (if (and (file-exists-p (concat f "c")) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1713 (speedbar-y-or-n-p (format "Load %sc? " f))) |
21650 | 1714 ;; If the compiled version exists, load that instead... |
1715 (load-file (concat f "c")) | |
1716 (load-file f)) | |
22735 | 1717 (error "Not a loadable file")))) |
21650 | 1718 |
1719 (defun speedbar-item-byte-compile () | |
22735 | 1720 "Byte compile the item under the cursor or mouse if it is a Lisp file." |
21650 | 1721 (interactive) |
1722 (let ((f (speedbar-line-file)) | |
1723 (sf (selected-frame))) | |
1724 (if (and (file-exists-p f) (string-match "\\.el\\'" f)) | |
1725 (progn | |
1726 (select-frame speedbar-attached-frame) | |
1727 (byte-compile-file f nil) | |
22735 | 1728 (select-frame sf) |
1729 (speedbar-reset-scanners))) | |
21650 | 1730 )) |
1731 | |
1732 (defun speedbar-mouse-item-info (event) | |
1733 "Provide information about what the user clicked on. | |
1734 This should be bound to a mouse EVENT." | |
1735 (interactive "e") | |
1736 (mouse-set-point event) | |
1737 (speedbar-item-info)) | |
1738 | |
22735 | 1739 (defun speedbar-generic-item-info () |
44578
9c2b72b4b303
(speedbar-generic-item-info)
Pavel Janík <Pavel@Janik.cz>
parents:
44225
diff
changeset
|
1740 "Attempt to derive, and then display information about this line item. |
22735 | 1741 File style information is displayed with `speedbar-item-info'." |
1742 (save-excursion | |
1743 (beginning-of-line) | |
1744 ;; Skip invisible number info. | |
1745 (if (looking-at "\\([0-9]+\\):") (goto-char (match-end 0))) | |
1746 ;; Skip items in "folder" type text characters. | |
1747 (if (looking-at "\\s-*[[<({].[]>)}] ") (goto-char (match-end 0))) | |
1748 ;; Get the text | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1749 (speedbar-message "Text: %s" (buffer-substring-no-properties |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1750 (point) (progn (end-of-line) (point)))))) |
22735 | 1751 |
21650 | 1752 (defun speedbar-item-info () |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1753 "Display info in the mini-buffer about the button the mouse is over. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1754 This function can be replaced in `speedbar-mode-functions-list' as |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
1755 `speedbar-item-info'." |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1756 (interactive) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1757 (let (message-log-max) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1758 (funcall (or (speedbar-fetch-replacement-function 'speedbar-item-info) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1759 'speedbar-generic-item-info)))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1760 |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1761 (defun speedbar-item-info-file-helper (&optional filename) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1762 "Display info about a file that is on the current line. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1763 nil if not applicable. If FILENAME, then use that instead of reading |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1764 it from the speedbar buffer." |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1765 (let* ((item (or filename (speedbar-line-file))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1766 (attr (if item (file-attributes item) nil))) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1767 (if (and item attr) (speedbar-message "%s %-6d %s" (nth 8 attr) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1768 (nth 7 attr) item) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1769 nil))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1770 |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1771 (defun speedbar-item-info-tag-helper () |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1772 "Display info about a tag that is on the current line. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1773 nil if not applicable." |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1774 (save-excursion |
24321
0e5b7bb19ddc
(speedbar-item-info-tag-helper): Scan the whole line.
Richard M. Stallman <rms@gnu.org>
parents:
24232
diff
changeset
|
1775 (beginning-of-line) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1776 (if (re-search-forward " [-+=]?> \\([^\n]+\\)" |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1777 (save-excursion(end-of-line)(point)) t) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1778 (let ((tag (match-string 1)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1779 (attr (speedbar-line-token)) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1780 (item nil)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1781 (if (and (featurep 'semantic) (semantic-token-p attr)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1782 (speedbar-message (semantic-summerize-nonterminal attr)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1783 (looking-at "\\([0-9]+\\):") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1784 (setq item (file-name-nondirectory (speedbar-line-path))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1785 (speedbar-message "Tag: %s in %s" tag item))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1786 (if (re-search-forward "{[+-]} \\([^\n]+\\)$" |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1787 (save-excursion(end-of-line)(point)) t) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1788 (speedbar-message "Group of tags \"%s\"" (match-string 1)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1789 (if (re-search-forward " [+-]?[()|@] \\([^\n]+\\)$" nil t) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1790 (let* ((detailtext (match-string 1)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1791 (detail (or (speedbar-line-token) detailtext)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1792 (parent (save-excursion |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1793 (beginning-of-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1794 (let ((dep (if (looking-at "[0-9]+:") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1795 (1- (string-to-int (match-string 0))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1796 0))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1797 (re-search-backward (concat "^" |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1798 (int-to-string dep) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1799 ":") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1800 nil t)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1801 (if (looking-at "[0-9]+: +[-+=>]> \\([^\n]+\\)$") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1802 (speedbar-line-token) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1803 nil)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1804 (if (and (featurep 'semantic) (semantic-token-p detail)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1805 (speedbar-message |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1806 (semantic-summerize-nonterminal detail parent)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1807 (if parent |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1808 (speedbar-message "Detail: %s of tag %s" detail |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1809 (if (and (featurep 'semantic) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1810 (semantic-token-p parent)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1811 (semantic-token-name parent) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1812 parent)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1813 (speedbar-message "Detail: %s" detail)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1814 nil))))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1815 |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1816 (defun speedbar-files-item-info () |
21650 | 1817 "Display info in the mini-buffer about the button the mouse is over." |
1818 (if (not speedbar-shown-directories) | |
22735 | 1819 (speedbar-generic-item-info) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1820 (or (speedbar-item-info-file-helper) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1821 (speedbar-item-info-tag-helper) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1822 (speedbar-generic-item-info)))) |
21650 | 1823 |
1824 (defun speedbar-item-copy () | |
1825 "Copy the item under the cursor. | |
1826 Files can be copied to new names or places." | |
1827 (interactive) | |
1828 (let ((f (speedbar-line-file))) | |
22735 | 1829 (if (not f) (error "Not a file")) |
21650 | 1830 (if (file-directory-p f) |
22735 | 1831 (error "Cannot copy directory") |
21650 | 1832 (let* ((rt (read-file-name (format "Copy %s to: " |
1833 (file-name-nondirectory f)) | |
1834 (file-name-directory f))) | |
1835 (refresh (member (expand-file-name (file-name-directory rt)) | |
1836 speedbar-shown-directories))) | |
1837 ;; Create the right file name part | |
1838 (if (file-directory-p rt) | |
1839 (setq rt | |
1840 (concat (expand-file-name rt) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1841 (if (string-match "[/\\]$" rt) "" "/") |
21650 | 1842 (file-name-nondirectory f)))) |
1843 (if (or (not (file-exists-p rt)) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1844 (speedbar-y-or-n-p (format "Overwrite %s with %s? " rt f))) |
21650 | 1845 (progn |
1846 (copy-file f rt t t) | |
1847 ;; refresh display if the new place is currently displayed. | |
1848 (if refresh | |
1849 (progn | |
1850 (speedbar-refresh) | |
1851 (if (not (speedbar-goto-this-file rt)) | |
1852 (speedbar-goto-this-file f)))) | |
1853 )))))) | |
1854 | |
1855 (defun speedbar-item-rename () | |
1856 "Rename the item under the cursor or mouse. | |
1857 Files can be renamed to new names or moved to new directories." | |
1858 (interactive) | |
1859 (let ((f (speedbar-line-file))) | |
1860 (if f | |
1861 (let* ((rt (read-file-name (format "Rename %s to: " | |
1862 (file-name-nondirectory f)) | |
1863 (file-name-directory f))) | |
1864 (refresh (member (expand-file-name (file-name-directory rt)) | |
1865 speedbar-shown-directories))) | |
1866 ;; Create the right file name part | |
1867 (if (file-directory-p rt) | |
1868 (setq rt | |
1869 (concat (expand-file-name rt) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1870 (if (string-match "[/\\]\\'" rt) "" "/") |
21650 | 1871 (file-name-nondirectory f)))) |
1872 (if (or (not (file-exists-p rt)) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1873 (speedbar-y-or-n-p (format "Overwrite %s with %s? " rt f))) |
21650 | 1874 (progn |
1875 (rename-file f rt t) | |
1876 ;; refresh display if the new place is currently displayed. | |
1877 (if refresh | |
1878 (progn | |
1879 (speedbar-refresh) | |
1880 (speedbar-goto-this-file rt) | |
1881 ))))) | |
22735 | 1882 (error "Not a file")))) |
21650 | 1883 |
1884 (defun speedbar-item-delete () | |
1885 "Delete the item under the cursor. Files are removed from disk." | |
1886 (interactive) | |
1887 (let ((f (speedbar-line-file))) | |
22735 | 1888 (if (not f) (error "Not a file")) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1889 (if (speedbar-y-or-n-p (format "Delete %s? " f)) |
21650 | 1890 (progn |
1891 (if (file-directory-p f) | |
1892 (delete-directory f) | |
1893 (delete-file f)) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1894 (speedbar-message "Okie dokie..") |
21650 | 1895 (let ((p (point))) |
1896 (speedbar-refresh) | |
1897 (goto-char p)) | |
1898 )) | |
1899 )) | |
1900 | |
22735 | 1901 (defun speedbar-item-object-delete () |
1902 "Delete the object associated from the item under the cursor. | |
1903 The file is removed from disk. The object is determined from the | |
1904 variable `speedbar-obj-alist'." | |
1905 (interactive) | |
1906 (let* ((f (speedbar-line-file)) | |
1907 (obj nil) | |
1908 (oa speedbar-obj-alist)) | |
1909 (if (not f) (error "Not a file")) | |
1910 (while (and oa (not (string-match (car (car oa)) f))) | |
1911 (setq oa (cdr oa))) | |
1912 (setq obj (concat (file-name-sans-extension f) (cdr (car oa)))) | |
1913 (if (and oa (file-exists-p obj) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1914 (speedbar-y-or-n-p (format "Delete %s? " obj))) |
22735 | 1915 (progn |
1916 (delete-file obj) | |
1917 (speedbar-reset-scanners))))) | |
1918 | |
21650 | 1919 (defun speedbar-enable-update () |
1920 "Enable automatic updating in speedbar via timers." | |
1921 (interactive) | |
1922 (setq speedbar-update-flag t) | |
1923 (speedbar-set-mode-line-format) | |
1924 (speedbar-set-timer speedbar-update-speed)) | |
1925 | |
1926 (defun speedbar-disable-update () | |
1927 "Disable automatic updating and stop consuming resources." | |
1928 (interactive) | |
1929 (setq speedbar-update-flag nil) | |
1930 (speedbar-set-mode-line-format) | |
1931 (speedbar-set-timer nil)) | |
1932 | |
1933 (defun speedbar-toggle-updates () | |
1934 "Toggle automatic update for the speedbar frame." | |
1935 (interactive) | |
1936 (if speedbar-update-flag | |
1937 (speedbar-disable-update) | |
1938 (speedbar-enable-update))) | |
1939 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1940 (defun speedbar-toggle-images () |
44584
7329202ae660
(speedbar-tag-hierarchy-method)
Pavel Janík <Pavel@Janik.cz>
parents:
44578
diff
changeset
|
1941 "Toggle images for the speedbar frame." |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1942 (interactive) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1943 (setq speedbar-use-images (not speedbar-use-images)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1944 (speedbar-refresh)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1945 |
21650 | 1946 (defun speedbar-toggle-sorting () |
44584
7329202ae660
(speedbar-tag-hierarchy-method)
Pavel Janík <Pavel@Janik.cz>
parents:
44578
diff
changeset
|
1947 "Toggle sorting for the speedbar frame." |
21650 | 1948 (interactive) |
1949 (setq speedbar-sort-tags (not speedbar-sort-tags))) | |
1950 | |
1951 (defun speedbar-toggle-show-all-files () | |
1952 "Toggle display of files speedbar can not tag." | |
1953 (interactive) | |
1954 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files)) | |
1955 (speedbar-refresh)) | |
1956 | |
1957 ;;; Utility functions | |
1958 ;; | |
1959 (defun speedbar-set-timer (timeout) | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
1960 "Apply a timer with TIMEOUT, or remove a timer if TIMEOUT is nil. |
21650 | 1961 TIMEOUT is the number of seconds until the speedbar timer is called |
1962 again. When TIMEOUT is nil, turn off all timeouts. | |
1963 This function will also enable or disable the `vc-checkin-hook' used | |
1964 to track file check ins, and will change the mode line to match | |
1965 `speedbar-update-flag'." | |
1966 (cond | |
1967 ;; XEmacs | |
1968 (speedbar-xemacsp | |
1969 (if speedbar-timer | |
1970 (progn (delete-itimer speedbar-timer) | |
1971 (setq speedbar-timer nil))) | |
1972 (if timeout | |
1973 (if (and speedbar-xemacsp | |
1974 (or (>= emacs-major-version 20) | |
1975 (>= emacs-minor-version 15))) | |
1976 (setq speedbar-timer (start-itimer "speedbar" | |
1977 'speedbar-timer-fn | |
1978 timeout | |
1979 timeout | |
1980 t)) | |
1981 (setq speedbar-timer (start-itimer "speedbar" | |
1982 'speedbar-timer-fn | |
1983 timeout | |
1984 nil))))) | |
1985 ;; Post 19.31 Emacs | |
1986 ((fboundp 'run-with-idle-timer) | |
1987 (if speedbar-timer | |
1988 (progn (cancel-timer speedbar-timer) | |
1989 (setq speedbar-timer nil))) | |
1990 (if timeout | |
1991 (setq speedbar-timer | |
1992 (run-with-idle-timer timeout t 'speedbar-timer-fn)))) | |
1993 ;; Emacs 19.30 (Thanks twice: ptype@dra.hmg.gb) | |
1994 ((fboundp 'post-command-idle-hook) | |
1995 (if timeout | |
1996 (add-hook 'post-command-idle-hook 'speedbar-timer-fn) | |
1997 (remove-hook 'post-command-idle-hook 'speedbar-timer-fn))) | |
1998 ;; Older or other Emacsen with no timers. Set up so that its | |
1999 ;; obvious this emacs can't handle the updates | |
2000 (t | |
2001 (setq speedbar-update-flag nil))) | |
2002 ;; Apply a revert hook that will reset the scanners. We attach to revert | |
2003 ;; because most reverts occur during VC state change, and this lets our | |
2004 ;; VC scanner fix itself. | |
2005 (if timeout | |
2006 (add-hook 'after-revert-hook 'speedbar-reset-scanners) | |
2007 (remove-hook 'after-revert-hook 'speedbar-reset-scanners) | |
2008 ) | |
2009 ;; change this if it changed for some reason | |
2010 (speedbar-set-mode-line-format)) | |
2011 | |
2012 (defmacro speedbar-with-writable (&rest forms) | |
2013 "Allow the buffer to be writable and evaluate FORMS." | |
2014 (list 'let '((inhibit-read-only t)) | |
2015 (cons 'progn forms))) | |
2016 (put 'speedbar-with-writable 'lisp-indent-function 0) | |
2017 | |
2018 (defun speedbar-select-window (buffer) | |
22735 | 2019 "Select a window in which BUFFER is shown. |
21650 | 2020 If it is not shown, force it to appear in the default window." |
2021 (let ((win (get-buffer-window buffer speedbar-attached-frame))) | |
2022 (if win | |
2023 (select-window win) | |
22735 | 2024 (set-window-buffer (selected-window) buffer)))) |
21650 | 2025 |
2026 (defun speedbar-insert-button (text face mouse function | |
2027 &optional token prevline) | |
2028 "Insert TEXT as the next logical speedbar button. | |
2029 FACE is the face to put on the button, MOUSE is the highlight face to use. | |
2030 When the user clicks on TEXT, FUNCTION is called with the TOKEN parameter. | |
2031 This function assumes that the current buffer is the speedbar buffer. | |
2032 If PREVLINE, then put this button on the previous line. | |
2033 | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
2034 This is a convenience function for special modes that create their own |
21650 | 2035 specialized speedbar displays." |
2036 (goto-char (point-max)) | |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
2037 (let ((start (point))) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
2038 (if (/= (current-column) 0) (insert "\n")) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
2039 (put-text-property start (point) 'invisible nil)) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
2040 (if prevline (progn (delete-char -1) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
2041 (insert " ") ;back up if desired... |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
2042 (put-text-property (1- (point)) (point) 'invisible nil))) |
21650 | 2043 (let ((start (point))) |
2044 (insert text) | |
2045 (speedbar-make-button start (point) face mouse function token)) | |
2046 (let ((start (point))) | |
2047 (insert "\n") | |
2048 (put-text-property start (point) 'face nil) | |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
2049 (put-text-property start (point) 'invisible nil) |
21650 | 2050 (put-text-property start (point) 'mouse-face nil))) |
2051 | |
2052 (defun speedbar-make-button (start end face mouse function &optional token) | |
2053 "Create a button from START to END, with FACE as the display face. | |
2054 MOUSE is the mouse face. When this button is clicked on FUNCTION | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
2055 will be run with the TOKEN parameter (any Lisp object)." |
21650 | 2056 (put-text-property start end 'face face) |
2057 (put-text-property start end 'mouse-face mouse) | |
2058 (put-text-property start end 'invisible nil) | |
2059 (if function (put-text-property start end 'speedbar-function function)) | |
2060 (if token (put-text-property start end 'speedbar-token token)) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2061 ;; So far the only text we have is less that 3 chars. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2062 (if (<= (- end start) 3) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2063 (speedbar-insert-image-button-maybe start (- end start))) |
21650 | 2064 ) |
2065 | |
22735 | 2066 ;;; Initial Expansion list management |
2067 ;; | |
2068 (defun speedbar-initial-expansion-list () | |
2069 "Return the current default expansion list. | |
2070 This is based on `speedbar-initial-expansion-list-name' referencing | |
2071 `speedbar-initial-expansion-mode-alist'." | |
2072 ;; cdr1 - name, cdr2 - menu | |
2073 (cdr (cdr (cdr (assoc speedbar-initial-expansion-list-name | |
2074 speedbar-initial-expansion-mode-alist))))) | |
2075 | |
2076 (defun speedbar-initial-menu () | |
2077 "Return the current default menu data. | |
2078 This is based on `speedbar-initial-expansion-list-name' referencing | |
2079 `speedbar-initial-expansion-mode-alist'." | |
2080 (symbol-value | |
2081 (car (cdr (assoc speedbar-initial-expansion-list-name | |
2082 speedbar-initial-expansion-mode-alist))))) | |
2083 | |
2084 (defun speedbar-initial-keymap () | |
2085 "Return the current default menu data. | |
2086 This is based on `speedbar-initial-expansion-list-name' referencing | |
2087 `speedbar-initial-expansion-mode-alist'." | |
2088 (symbol-value | |
2089 (car (cdr (cdr (assoc speedbar-initial-expansion-list-name | |
2090 speedbar-initial-expansion-mode-alist)))))) | |
2091 | |
2092 (defun speedbar-initial-stealthy-functions () | |
2093 "Return a list of functions to call stealthily. | |
2094 This is based on `speedbar-initial-expansion-list-name' referencing | |
2095 `speedbar-stealthy-function-list'." | |
2096 (cdr (assoc speedbar-initial-expansion-list-name | |
2097 speedbar-stealthy-function-list))) | |
2098 | |
2099 (defun speedbar-add-expansion-list (new-list) | |
2100 "Add NEW-LIST to the list of expansion lists." | |
2101 (add-to-list 'speedbar-initial-expansion-mode-alist new-list)) | |
2102 | |
2103 (defun speedbar-change-initial-expansion-list (new-default) | |
2104 "Change speedbar's default expansion list to NEW-DEFAULT." | |
2105 (interactive | |
2106 (list | |
2107 (completing-read (format "Speedbar Mode (default %s): " | |
2108 speedbar-previously-used-expansion-list-name) | |
2109 speedbar-initial-expansion-mode-alist | |
2110 nil t "" nil | |
2111 speedbar-previously-used-expansion-list-name))) | |
2112 (setq speedbar-previously-used-expansion-list-name | |
2113 speedbar-initial-expansion-list-name | |
2114 speedbar-initial-expansion-list-name new-default) | |
2115 (speedbar-refresh) | |
2116 (speedbar-reconfigure-keymaps)) | |
2117 | |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2118 (defun speedbar-fetch-replacement-function (function) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2119 "Return a current mode specific replacement for function, or nil. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2120 Scans `speedbar-mode-functions-list' first for the current mode, then |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2121 for FUNCTION." |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2122 (cdr (assoc function |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2123 (cdr (assoc speedbar-initial-expansion-list-name |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2124 speedbar-mode-functions-list))))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2125 |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2126 (defun speedbar-add-mode-functions-list (new-list) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2127 "Add NEW-LIST to the list of mode functions. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2128 See `speedbar-mode-functions-list' for details." |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2129 (add-to-list 'speedbar-mode-functions-list new-list)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
2130 |
22735 | 2131 |
2132 ;;; Special speedbar display management | |
2133 ;; | |
2134 (defun speedbar-maybe-add-localized-support (buffer) | |
2135 "Quick check function called on BUFFERs by the speedbar timer function. | |
2136 Maintains the value of local variables which control speedbars use | |
2137 of the special mode functions." | |
2138 (or speedbar-special-mode-expansion-list | |
2139 (speedbar-add-localized-speedbar-support buffer))) | |
2140 | |
2141 (defun speedbar-add-localized-speedbar-support (buffer) | |
2142 "Add localized speedbar support to BUFFER's mode if it is available." | |
2143 (interactive "bBuffer: ") | |
2144 (if (stringp buffer) (setq buffer (get-buffer buffer))) | |
2145 (if (not (buffer-live-p buffer)) | |
2146 nil | |
2147 (save-excursion | |
2148 (set-buffer buffer) | |
2149 (save-match-data | |
2150 (let ((ms (symbol-name major-mode)) v) | |
2151 (if (not (string-match "-mode$" ms)) | |
2152 nil ;; do nothing to broken mode | |
2153 (setq ms (substring ms 0 (match-beginning 0))) | |
2154 (setq v (intern-soft (concat ms "-speedbar-buttons"))) | |
2155 (make-local-variable 'speedbar-special-mode-expansion-list) | |
2156 (if (not v) | |
2157 (setq speedbar-special-mode-expansion-list t) | |
2158 ;; If it is autoloaded, we need to load it now so that | |
2159 ;; we have access to the varialbe -speedbar-menu-items. | |
2160 ;; Is this XEmacs safe? | |
2161 (let ((sf (symbol-function v))) | |
2162 (if (and (listp sf) (eq (car sf) 'autoload)) | |
2163 (load-library (car (cdr sf))))) | |
2164 (setq speedbar-special-mode-expansion-list (list v)) | |
2165 (setq v (intern-soft (concat ms "-speedbar-key-map"))) | |
2166 (if (not v) | |
2167 nil ;; don't add special keymap | |
2168 (make-local-variable 'speedbar-special-mode-key-map) | |
2169 (setq speedbar-special-mode-key-map | |
2170 (symbol-value v))) | |
2171 (setq v (intern-soft (concat ms "-speedbar-menu-items"))) | |
2172 (if (not v) | |
2173 nil ;; don't add special menus | |
2174 (make-local-variable 'speedbar-easymenu-definition-special) | |
2175 (setq speedbar-easymenu-definition-special | |
2176 (symbol-value v))) | |
2177 ))))))) | |
2178 | |
2179 (defun speedbar-remove-localized-speedbar-support (buffer) | |
2180 "Remove any traces that BUFFER supports speedbar in a specialized way." | |
2181 (save-excursion | |
2182 (set-buffer buffer) | |
2183 (kill-local-variable 'speedbar-special-mode-expansion-list) | |
2184 (kill-local-variable 'speedbar-special-mode-key-map) | |
2185 (kill-local-variable 'speedbar-easymenu-definition-special))) | |
2186 | |
21650 | 2187 ;;; File button management |
2188 ;; | |
2189 (defun speedbar-file-lists (directory) | |
2190 "Create file lists for DIRECTORY. | |
2191 The car is the list of directories, the cdr is list of files not | |
2192 matching ignored headers. Cache any directory files found in | |
2193 `speedbar-directory-contents-alist' and use that cache before scanning | |
46286
6117ca314143
(speedbar-tag-hierarchy-method): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
46282
diff
changeset
|
2194 the file-system." |
21650 | 2195 (setq directory (expand-file-name directory)) |
2196 ;; If in powerclick mode, then the directory we are getting | |
2197 ;; should be rescanned. | |
2198 (if speedbar-power-click | |
2199 (adelete 'speedbar-directory-contents-alist directory)) | |
2200 ;; find the directory, either in the cache, or build it. | |
2201 (or (cdr-safe (assoc directory speedbar-directory-contents-alist)) | |
2202 (let ((default-directory directory) | |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2203 (case-fold-search read-file-name-completion-ignore-case) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2204 dirs files) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2205 (dolist (file (directory-files directory nil)) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2206 (or (string-match speedbar-file-unshown-regexp file) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2207 (string-match speedbar-directory-unshown-regexp file) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2208 (if (file-directory-p file) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2209 (setq dirs (cons file dirs)) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2210 (setq files (cons file files))))) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2211 (let ((nl `(,(nreverse dirs) ,(nreverse files)))) |
21650 | 2212 (aput 'speedbar-directory-contents-alist directory nl) |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2213 nl)))) |
21650 | 2214 |
2215 (defun speedbar-directory-buttons (directory index) | |
2216 "Insert a single button group at point for DIRECTORY. | |
2217 Each directory path part is a different button. If part of the path | |
2218 matches the user directory ~, then it is replaced with a ~. | |
2219 INDEX is not used, but is required by the caller." | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2220 (let* ((tilde (expand-file-name "~/")) |
21650 | 2221 (dd (expand-file-name directory)) |
2222 (junk (string-match (regexp-quote tilde) dd)) | |
2223 (displayme (if junk | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2224 (concat "~/" (substring dd (match-end 0))) |
21650 | 2225 dd)) |
2226 (p (point))) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2227 (if (string-match "^~[/\\]?\\'" displayme) (setq displayme tilde)) |
21650 | 2228 (insert displayme) |
2229 (save-excursion | |
2230 (goto-char p) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2231 (while (re-search-forward "\\([^/\\]+\\)[/\\]" nil t) |
21650 | 2232 (speedbar-make-button (match-beginning 1) (match-end 1) |
2233 'speedbar-directory-face | |
2234 'speedbar-highlight-face | |
2235 'speedbar-directory-buttons-follow | |
25432
07df7c764669
(speedbar-directory-buttons): Recognize
Richard M. Stallman <rms@gnu.org>
parents:
24809
diff
changeset
|
2236 (if (and (= (match-beginning 1) p) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2237 (not (char-equal (char-after (+ p 1)) ?:))) |
21650 | 2238 (expand-file-name "~/") ;the tilde |
2239 (buffer-substring-no-properties | |
2240 p (match-end 0))))) | |
2241 ;; Nuke the beginning of the directory if it's too long... | |
2242 (cond ((eq speedbar-directory-button-trim-method 'span) | |
2243 (beginning-of-line) | |
2244 (let ((ww (or (speedbar-frame-width) 20))) | |
2245 (move-to-column ww nil) | |
2246 (while (>= (current-column) ww) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2247 (re-search-backward "[/\\]" nil t) |
21650 | 2248 (if (<= (current-column) 2) |
2249 (progn | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2250 (re-search-forward "[/\\]" nil t) |
21650 | 2251 (if (< (current-column) 4) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2252 (re-search-forward "[/\\]" nil t)) |
21650 | 2253 (forward-char -1))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2254 (if (looking-at "[/\\]?$") |
21650 | 2255 (beginning-of-line) |
2256 (insert "/...\n ") | |
2257 (move-to-column ww nil))))) | |
2258 ((eq speedbar-directory-button-trim-method 'trim) | |
2259 (end-of-line) | |
2260 (let ((ww (or (speedbar-frame-width) 20)) | |
2261 (tl (current-column))) | |
2262 (if (< ww tl) | |
2263 (progn | |
2264 (move-to-column (- tl ww)) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2265 (if (re-search-backward "[/\\]" nil t) |
21650 | 2266 (progn |
2267 (delete-region (point-min) (point)) | |
2268 (insert "$") | |
2269 ))))))) | |
2270 ) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2271 (if (string-match "\\`[/\\][^/\\]+[/\\]\\'" displayme) |
21650 | 2272 (progn |
2273 (insert " ") | |
2274 (let ((p (point))) | |
2275 (insert "<root>") | |
2276 (speedbar-make-button p (point) | |
2277 'speedbar-directory-face | |
2278 'speedbar-highlight-face | |
2279 'speedbar-directory-buttons-follow | |
2280 "/")))) | |
2281 (end-of-line) | |
2282 (insert-char ?\n 1 nil))) | |
2283 | |
2284 (defun speedbar-make-tag-line (exp-button-type | |
2285 exp-button-char exp-button-function | |
2286 exp-button-data | |
2287 tag-button tag-button-function tag-button-data | |
2288 tag-button-face depth) | |
2289 "Create a tag line with EXP-BUTTON-TYPE for the small expansion button. | |
2290 This is the button that expands or contracts a node (if applicable), | |
2291 and EXP-BUTTON-CHAR the character in it (+, -, ?, etc). EXP-BUTTON-FUNCTION | |
2292 is the function to call if it's clicked on. Button types are | |
2293 'bracket, 'angle, 'curly, or nil. EXP-BUTTON-DATA is extra data | |
2294 attached to the text forming the expansion button. | |
2295 | |
2296 Next, TAG-BUTTON is the text of the tag. TAG-BUTTON-FUNCTION is the | |
2297 function to call if clicked on, and TAG-BUTTON-DATA is the data to | |
2298 attach to the text field (such a tag positioning, etc). | |
2299 TAG-BUTTON-FACE is a face used for this type of tag. | |
2300 | |
2301 Lastly, DEPTH shows the depth of expansion. | |
2302 | |
2303 This function assumes that the cursor is in the speedbar window at the | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
2304 position to insert a new item, and that the new item will end with a CR." |
21650 | 2305 (let ((start (point)) |
2306 (end (progn | |
2307 (insert (int-to-string depth) ":") | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2308 (point))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2309 (depthspacesize (* depth speedbar-indentation-width))) |
21650 | 2310 (put-text-property start end 'invisible t) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2311 (insert-char ? depthspacesize nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2312 (put-text-property (- (point) depthspacesize) (point) 'invisible nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2313 (let* ((exp-button (cond ((eq exp-button-type 'bracket) "[%c]") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2314 ((eq exp-button-type 'angle) "<%c>") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2315 ((eq exp-button-type 'curly) "{%c}") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2316 (t ">"))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2317 (buttxt (format exp-button exp-button-char)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2318 (start (point)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2319 (end (progn (insert buttxt) (point))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2320 (bf (if exp-button-type 'speedbar-button-face nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2321 (mf (if exp-button-function 'speedbar-highlight-face nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2322 ) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2323 (speedbar-make-button start end bf mf exp-button-function exp-button-data) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2324 (if speedbar-hide-button-brackets-flag |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2325 (progn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2326 (put-text-property start (1+ start) 'invisible t) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2327 (put-text-property end (1- end) 'invisible t))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2328 ) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2329 (insert-char ? 1 nil) |
21650 | 2330 (put-text-property (1- (point)) (point) 'invisible nil) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2331 (let ((start (point)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2332 (end (progn (insert tag-button) (point)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2333 (insert-char ?\n 1 nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2334 (put-text-property (1- (point)) (point) 'invisible nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2335 (speedbar-make-button start end tag-button-face |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2336 (if tag-button-function 'speedbar-highlight-face nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2337 tag-button-function tag-button-data)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2338 )) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48716
diff
changeset
|
2339 |
21650 | 2340 (defun speedbar-change-expand-button-char (char) |
2341 "Change the expansion button character to CHAR for the current line." | |
2342 (save-excursion | |
2343 (beginning-of-line) | |
2344 (if (re-search-forward ":\\s-*.\\([-+?]\\)" (save-excursion (end-of-line) | |
2345 (point)) t) | |
2346 (speedbar-with-writable | |
2347 (goto-char (match-beginning 1)) | |
2348 (delete-char 1) | |
22735 | 2349 (insert-char char 1 t) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2350 (put-text-property (point) (1- (point)) 'invisible nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2351 ;; make sure we fix the image on the text here. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2352 (speedbar-insert-image-button-maybe (- (point) 2) 3))))) |
21650 | 2353 |
2354 | |
2355 ;;; Build button lists | |
2356 ;; | |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2357 (defun speedbar-insert-files-at-point (files level directory) |
21650 | 2358 "Insert list of FILES starting at point, and indenting all files to LEVEL. |
2359 Tag expandable items with a +, otherwise a ?. Don't highlight ? as we | |
2360 don't know how to manage them. The input parameter FILES is a cons | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
2361 cell of the form ( 'DIRLIST . 'FILELIST )." |
21650 | 2362 ;; Start inserting all the directories |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2363 (dolist (dir (car files)) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2364 (if (if speedbar-scan-subdirs |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2365 (condition-case nil |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2366 (let ((l (speedbar-file-lists (concat directory dir)))) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2367 (or (car l) (cadr l))) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2368 (file-error)) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2369 (file-readable-p (concat directory dir))) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2370 (speedbar-make-tag-line 'angle ?+ 'speedbar-dired dir |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2371 dir 'speedbar-dir-follow nil |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2372 'speedbar-directory-face level) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2373 (speedbar-make-tag-line 'angle ? nil dir |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2374 dir 'speedbar-dir-follow nil |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2375 'speedbar-directory-face level))) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2376 (let ((case-fold-search read-file-name-completion-ignore-case)) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2377 (dolist (file (cadr files)) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2378 (let* ((known (and (file-readable-p (concat directory file)) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2379 (string-match speedbar-file-regexp file))) |
21650 | 2380 (expchar (if known ?+ ??)) |
2381 (fn (if known 'speedbar-tag-file nil))) | |
2382 (if (or speedbar-show-unknown-files (/= expchar ??)) | |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2383 (speedbar-make-tag-line 'bracket expchar fn file |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2384 file 'speedbar-find-file nil |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2385 'speedbar-file-face level)))))) |
21650 | 2386 |
2387 (defun speedbar-default-directory-list (directory index) | |
2388 "Insert files for DIRECTORY with level INDEX at point." | |
2389 (speedbar-insert-files-at-point | |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2390 (speedbar-file-lists directory) index directory) |
21650 | 2391 (speedbar-reset-scanners) |
2392 (if (= index 0) | |
2393 ;; If the shown files variable has extra directories, then | |
2394 ;; it is our responsibility to redraw them all | |
2395 ;; Luckilly, the nature of inserting items into this list means | |
2396 ;; that by reversing it, we can easilly go in the right order | |
2397 (let ((sf (cdr (reverse speedbar-shown-directories)))) | |
2398 (setq speedbar-shown-directories | |
2399 (list (expand-file-name default-directory))) | |
2400 ;; exand them all as we find them | |
2401 (while sf | |
2402 (if (speedbar-goto-this-file (car sf)) | |
2403 (progn | |
2404 (beginning-of-line) | |
2405 (if (looking-at "[0-9]+:[ ]*<") | |
2406 (progn | |
2407 (goto-char (match-end 0)) | |
44225
e47fc6bb028d
(speedbar-default-directory-list): Made robust against deleted directories.
Richard M. Stallman <rms@gnu.org>
parents:
42456
diff
changeset
|
2408 (speedbar-do-function-pointer))))) |
e47fc6bb028d
(speedbar-default-directory-list): Made robust against deleted directories.
Richard M. Stallman <rms@gnu.org>
parents:
42456
diff
changeset
|
2409 (setq sf (cdr sf))) |
21650 | 2410 ))) |
2411 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2412 (defun speedbar-sort-tag-hierarchy (lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2413 "Sort all elements of tag hierarchy LST." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2414 (sort (copy-alist lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2415 (lambda (a b) (string< (car a) (car b))))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2416 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2417 (defun speedbar-prefix-group-tag-hierarchy (lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2418 "Prefix group names for tag hierarchy LST." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2419 (let ((newlst nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2420 (sublst nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2421 (work-list nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2422 (junk-list nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2423 (short-group-list nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2424 (short-start-name nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2425 (short-end-name nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2426 (num-shorts-grouped 0) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2427 (bins (make-vector 256 nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2428 (diff-idx 0)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2429 ;; Break out sub-lists |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2430 (while lst |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2431 (if (and (listp (cdr-safe (car-safe lst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2432 ;; This one is for bovine tokens |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2433 (not (symbolp (car-safe (cdr-safe (car-safe lst)))))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2434 (setq newlst (cons (car lst) newlst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2435 (setq sublst (cons (car lst) sublst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2436 (setq lst (cdr lst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2437 ;; Reverse newlst because it was made backwards. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2438 ;; Sublist doesn't need reversing because the act |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2439 ;; of binning things will reverse it for us. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2440 (setq newlst (nreverse newlst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2441 ;; Now, first find out how long our list is. Never let a |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2442 ;; list get-shorter than our minimum. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2443 (if (<= (length sublst) speedbar-tag-split-minimum-length) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2444 (setq work-list (nreverse sublst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2445 (setq diff-idx (length (try-completion "" sublst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2446 ;; Sort the whole list into bins. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2447 (while sublst |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2448 (let ((e (car sublst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2449 (s (car (car sublst)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2450 (cond ((<= (length s) diff-idx) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2451 ;; 0 storage bin for shorty. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2452 (aset bins 0 (cons e (aref bins 0)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2453 (t |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2454 ;; stuff into a bin based on ascii value at diff |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2455 (aset bins (aref s diff-idx) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2456 (cons e (aref bins (aref s diff-idx))))))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2457 (setq sublst (cdr sublst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2458 ;; Go through all our bins Stick singles into our |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2459 ;; junk-list, everything else as sublsts in work-list. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2460 ;; If two neighboring lists are both small, make a grouped |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2461 ;; group combinding those two sub-lists. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2462 (setq diff-idx 0) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2463 (while (> 256 diff-idx) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2464 (let ((l (nreverse;; Reverse the list since they are stuck in |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2465 ;; backwards. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2466 (aref bins diff-idx)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2467 (if l |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2468 (let ((tmp (cons (try-completion "" l) l))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2469 (if (or (> (length l) speedbar-tag-regroup-maximum-length) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2470 (> (+ (length l) (length short-group-list)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2471 speedbar-tag-split-minimum-length)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2472 (progn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2473 ;; We have reached a longer list, so we |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2474 ;; must finish off a grouped group. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2475 (cond |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2476 ((and short-group-list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2477 (= (length short-group-list) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2478 num-shorts-grouped)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2479 ;; All singles? Junk list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2480 (setq junk-list (append short-group-list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2481 junk-list))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2482 ((= num-shorts-grouped 1) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2483 ;; Only one short group? Just stick it in |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2484 ;; there by itself. Make a group, and find |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2485 ;; a subexpression |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2486 (let ((subexpression (try-completion |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2487 "" short-group-list))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2488 (if (< (length subexpression) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2489 speedbar-tag-group-name-minimum-length) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2490 (setq subexpression |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2491 (concat short-start-name |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2492 " (" |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2493 (substring |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2494 (car (car short-group-list)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2495 (length short-start-name)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2496 ")"))) |
22735 | 2497 (setq work-list |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2498 (cons (cons subexpression |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2499 short-group-list) |
22735 | 2500 work-list)))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2501 (short-group-list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2502 ;; Multiple groups to be named in a special |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2503 ;; way by displaying the range over which we |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2504 ;; have grouped them. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2505 (setq work-list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2506 (cons (cons (concat short-start-name |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2507 " to " |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2508 short-end-name) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2509 (nreverse short-group-list)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2510 work-list)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2511 ;; Reset short group list information every time. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2512 (setq short-group-list nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2513 short-start-name nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2514 short-end-name nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2515 num-shorts-grouped 0))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2516 ;; Ok, now that we cleaned up the short-group-list, |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2517 ;; we can deal with this new list, to decide if it |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2518 ;; should go on one of these sub-lists or not. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2519 (if (< (length l) speedbar-tag-regroup-maximum-length) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2520 (setq short-group-list (append short-group-list l) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2521 num-shorts-grouped (1+ num-shorts-grouped) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2522 short-end-name (car tmp) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2523 short-start-name (if short-start-name |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2524 short-start-name |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2525 (car tmp))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2526 (setq work-list (cons tmp work-list)))))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2527 (setq diff-idx (1+ diff-idx)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2528 ;; Did we run out of things? Drop our new list onto the end. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2529 (cond |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2530 ((and short-group-list (= (length short-group-list) num-shorts-grouped)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2531 ;; All singles? Junk list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2532 (setq junk-list (append short-group-list junk-list))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2533 ((= num-shorts-grouped 1) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2534 ;; Only one short group? Just stick it in |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2535 ;; there by itself. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2536 (setq work-list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2537 (cons (cons (try-completion "" short-group-list) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2538 short-group-list) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2539 work-list))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2540 (short-group-list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2541 ;; Multiple groups to be named in a special |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2542 ;; way by displaying the range over which we |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2543 ;; have grouped them. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2544 (setq work-list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2545 (cons (cons (concat short-start-name " to " short-end-name) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2546 short-group-list) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2547 work-list)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2548 ;; Reverse the work list nreversed when consing. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2549 (setq work-list (nreverse work-list)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2550 ;; Now, stick our new list onto the end of |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2551 (if work-list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2552 (if junk-list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2553 (append newlst work-list junk-list) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2554 (append newlst work-list)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2555 (append newlst junk-list)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2556 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2557 (defun speedbar-trim-words-tag-hierarchy (lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2558 "Trim all words in a tag hierarchy. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2559 Base trimming information on word separators, and group names. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2560 Argument LST is the list of tags to trim." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2561 (let ((newlst nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2562 (sublst nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2563 (trim-prefix nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2564 (trim-chars 0) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2565 (trimlst nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2566 (while lst |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2567 (if (listp (cdr-safe (car-safe lst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2568 (setq newlst (cons (car lst) newlst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2569 (setq sublst (cons (car lst) sublst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2570 (setq lst (cdr lst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2571 ;; Get the prefix to trim by. Make sure that we don't trim |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2572 ;; off silly pieces, only complete understandable words. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2573 (setq trim-prefix (try-completion "" sublst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2574 (if (or (= (length sublst) 1) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2575 (not trim-prefix) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2576 (not (string-match "\\(\\w+\\W+\\)+" trim-prefix))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2577 (append (nreverse newlst) (nreverse sublst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2578 (setq trim-prefix (substring trim-prefix (match-beginning 0) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2579 (match-end 0))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2580 (setq trim-chars (length trim-prefix)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2581 (while sublst |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2582 (setq trimlst (cons |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2583 (cons (substring (car (car sublst)) trim-chars) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2584 (cdr (car sublst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2585 trimlst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2586 sublst (cdr sublst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2587 ;; Put the lists together |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2588 (append (nreverse newlst) trimlst)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2589 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2590 (defun speedbar-simple-group-tag-hierarchy (lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2591 "Create a simple 'Tags' group with orphaned tags. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2592 Argument LST is the list of tags to sort into groups." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2593 (let ((newlst nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2594 (sublst nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2595 (while lst |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2596 (if (listp (cdr-safe (car-safe lst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2597 (setq newlst (cons (car lst) newlst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2598 (setq sublst (cons (car lst) sublst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2599 (setq lst (cdr lst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2600 (if (not newlst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2601 (nreverse sublst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2602 (setq newlst (cons (cons "Tags" (nreverse sublst)) newlst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2603 (nreverse newlst)))) |
22735 | 2604 |
2605 (defun speedbar-create-tag-hierarchy (lst) | |
2606 "Adjust the tag hierarchy in LST, and return it. | |
2607 This uses `speedbar-tag-hierarchy-method' to determine how to adjust | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2608 the list." |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2609 (let* ((f (save-excursion |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2610 (forward-line -1) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2611 (speedbar-line-path))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2612 (methods (if (get-file-buffer f) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2613 (save-excursion (set-buffer (get-file-buffer f)) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2614 speedbar-tag-hierarchy-method) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2615 speedbar-tag-hierarchy-method)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2616 (lst (if (fboundp 'copy-tree) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2617 (copy-tree lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2618 lst))) |
22735 | 2619 (while methods |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2620 (setq lst (funcall (car methods) lst) |
22735 | 2621 methods (cdr methods))) |
2622 lst)) | |
2623 | |
21650 | 2624 (defun speedbar-insert-generic-list (level lst expand-fun find-fun) |
2625 "At LEVEL, insert a generic multi-level alist LST. | |
2626 Associations with lists get {+} tags (to expand into more nodes) and | |
2627 those with positions just get a > as the indicator. {+} buttons will | |
2628 have the function EXPAND-FUN and the token is the CDR list. The token | |
2629 name will have the function FIND-FUN and not token." | |
2630 ;; Remove imenu rescan button | |
2631 (if (string= (car (car lst)) "*Rescan*") | |
2632 (setq lst (cdr lst))) | |
22735 | 2633 ;; Adjust the list. |
2634 (setq lst (speedbar-create-tag-hierarchy lst)) | |
21650 | 2635 ;; insert the parts |
2636 (while lst | |
2637 (cond ((null (car-safe lst)) nil) ;this would be a separator | |
2638 ((or (numberp (cdr-safe (car-safe lst))) | |
2639 (markerp (cdr-safe (car-safe lst)))) | |
2640 (speedbar-make-tag-line nil nil nil nil ;no expand button data | |
2641 (car (car lst)) ;button name | |
2642 find-fun ;function | |
2643 (cdr (car lst)) ;token is position | |
2644 'speedbar-tag-face | |
2645 (1+ level))) | |
2646 ((listp (cdr-safe (car-safe lst))) | |
2647 (speedbar-make-tag-line 'curly ?+ expand-fun (cdr (car lst)) | |
2648 (car (car lst)) ;button name | |
2649 nil nil 'speedbar-tag-face | |
2650 (1+ level))) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2651 (t (speedbar-message "Ooops!"))) |
21650 | 2652 (setq lst (cdr lst)))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2653 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2654 (defun speedbar-insert-imenu-list (indent lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2655 "At level INDENT, insert the imenu generated LST." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2656 (speedbar-insert-generic-list indent lst |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2657 'speedbar-tag-expand |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2658 'speedbar-tag-find)) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48716
diff
changeset
|
2659 |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2660 (defun speedbar-insert-etags-list (indent lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2661 "At level INDENT, insert the etags generated LST." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2662 (speedbar-insert-generic-list indent lst |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2663 'speedbar-tag-expand |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2664 'speedbar-tag-find)) |
21650 | 2665 |
2666 ;;; Timed functions | |
2667 ;; | |
2668 (defun speedbar-update-contents () | |
2669 "Generically update the contents of the speedbar buffer." | |
2670 (interactive) | |
2671 ;; Set the current special buffer | |
2672 (setq speedbar-desired-buffer nil) | |
22735 | 2673 ;; Check for special modes |
2674 (speedbar-maybe-add-localized-support (current-buffer)) | |
2675 ;; Choose the correct method of doodling. | |
21650 | 2676 (if (and speedbar-mode-specific-contents-flag |
22735 | 2677 (listp speedbar-special-mode-expansion-list) |
21650 | 2678 speedbar-special-mode-expansion-list |
2679 (local-variable-p | |
2680 'speedbar-special-mode-expansion-list | |
2681 (current-buffer))) | |
2682 ;;(eq (get major-mode 'mode-class 'special))) | |
2683 (speedbar-update-special-contents) | |
2684 (speedbar-update-directory-contents))) | |
2685 | |
2686 (defun speedbar-update-directory-contents () | |
2687 "Update the contents of the speedbar buffer based on the current directory." | |
2688 (let ((cbd (expand-file-name default-directory)) | |
2689 cbd-parent | |
22735 | 2690 (funclst (speedbar-initial-expansion-list)) |
21650 | 2691 (cache speedbar-full-text-cache) |
2692 ;; disable stealth during update | |
2693 (speedbar-stealthy-function-list nil) | |
2694 (use-cache nil) | |
2695 (expand-local nil) | |
2696 ;; Because there is a bug I can't find just yet | |
2697 (inhibit-quit nil)) | |
2698 (save-excursion | |
2699 (set-buffer speedbar-buffer) | |
2700 ;; If we are updating contents to where we are, then this is | |
2701 ;; really a request to update existing contents, so we must be | |
2702 ;; careful with our text cache! | |
2703 (if (member cbd speedbar-shown-directories) | |
22735 | 2704 (progn |
2705 (setq cache nil) | |
2706 ;; If the current directory is not the last element in the dir | |
2707 ;; list, then we ALSO need to zap the list of expanded directories | |
2708 (if (/= (length (member cbd speedbar-shown-directories)) 1) | |
2709 (setq speedbar-shown-directories (list cbd)))) | |
21650 | 2710 |
2711 ;; Build cbd-parent, and see if THAT is in the current shown | |
2712 ;; directories. First, go through pains to get the parent directory | |
2713 (if (and speedbar-smart-directory-expand-flag | |
2714 (save-match-data | |
2715 (setq cbd-parent cbd) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2716 (if (string-match "[/\\]$" cbd-parent) |
22735 | 2717 (setq cbd-parent (substring cbd-parent 0 |
2718 (match-beginning 0)))) | |
21650 | 2719 (setq cbd-parent (file-name-directory cbd-parent))) |
2720 (member cbd-parent speedbar-shown-directories)) | |
2721 (setq expand-local t) | |
2722 | |
2723 ;; If this directory is NOT in the current list of available | |
2724 ;; paths, then use the cache, and set the cache to our new | |
2725 ;; value. Make sure to unhighlight the current file, or if we | |
2726 ;; come back to this directory, it might be a different file | |
2727 ;; and then we get a mess! | |
2728 (if (> (point-max) 1) | |
2729 (progn | |
2730 (speedbar-clear-current-file) | |
2731 (setq speedbar-full-text-cache | |
2732 (cons speedbar-shown-directories (buffer-string))))) | |
2733 | |
2734 ;; Check if our new directory is in the list of directories | |
2735 ;; shown in the text-cache | |
2736 (if (member cbd (car cache)) | |
2737 (setq speedbar-shown-directories (car cache) | |
2738 use-cache t) | |
2739 ;; default the shown directories to this list... | |
2740 (setq speedbar-shown-directories (list cbd))) | |
2741 )) | |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2742 (if (not expand-local) (setq speedbar-last-selected-file nil)) |
21650 | 2743 (speedbar-with-writable |
2744 (if (and expand-local | |
2745 ;; Find this directory as a speedbar node. | |
2746 (speedbar-path-line cbd)) | |
2747 ;; Open it. | |
2748 (speedbar-expand-line) | |
2749 (erase-buffer) | |
2750 (cond (use-cache | |
2751 (setq default-directory | |
2752 (nth (1- (length speedbar-shown-directories)) | |
2753 speedbar-shown-directories)) | |
2754 (insert (cdr cache))) | |
2755 (t | |
2756 (while funclst | |
2757 (setq default-directory cbd) | |
2758 (funcall (car funclst) cbd 0) | |
2759 (setq funclst (cdr funclst)))))) | |
2760 (goto-char (point-min))))) | |
22735 | 2761 (speedbar-reconfigure-keymaps)) |
21650 | 2762 |
2763 (defun speedbar-update-special-contents () | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
2764 "Use the mode-specific variable to fill in the speedbar buffer. |
21650 | 2765 This should only be used by modes classified as special." |
2766 (let ((funclst speedbar-special-mode-expansion-list) | |
2767 (specialbuff (current-buffer))) | |
2768 (save-excursion | |
2769 (setq speedbar-desired-buffer specialbuff) | |
2770 (set-buffer speedbar-buffer) | |
2771 ;; If we are leaving a directory, cache it. | |
2772 (if (not speedbar-shown-directories) | |
2773 ;; Do nothing | |
2774 nil | |
2775 ;; Clean up directory maintenance stuff | |
2776 (speedbar-clear-current-file) | |
2777 (setq speedbar-full-text-cache | |
2778 (cons speedbar-shown-directories (buffer-string)) | |
2779 speedbar-shown-directories nil)) | |
2780 ;; Now fill in the buffer with our newly found specialized list. | |
2781 (speedbar-with-writable | |
2782 (while funclst | |
2783 ;; We do not erase the buffer because these functions may | |
2784 ;; decide NOT to update themselves. | |
2785 (funcall (car funclst) specialbuff) | |
2786 (setq funclst (cdr funclst)))) | |
2787 (goto-char (point-min)))) | |
22735 | 2788 (speedbar-reconfigure-keymaps)) |
21650 | 2789 |
2790 (defun speedbar-timer-fn () | |
22735 | 2791 "Run whenever Emacs is idle to update the speedbar item." |
21650 | 2792 (if (not (and (frame-live-p speedbar-frame) |
2793 (frame-live-p speedbar-attached-frame))) | |
2794 (speedbar-set-timer nil) | |
2795 ;; Save all the match data so that we don't mess up executing fns | |
2796 (save-match-data | |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2797 ;; Only do stuff if the frame is visible, not an icon, and if |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2798 ;; it is currently flagged to do something. |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2799 (if (and speedbar-update-flag |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2800 (frame-visible-p speedbar-frame) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2801 (not (eq (frame-visible-p speedbar-frame) 'icon))) |
21650 | 2802 (let ((af (selected-frame))) |
2803 (save-window-excursion | |
2804 (select-frame speedbar-attached-frame) | |
2805 ;; make sure we at least choose a window to | |
2806 ;; get a good directory from | |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2807 (if (window-minibuffer-p (selected-window)) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2808 nil |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2809 ;; Check for special modes |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2810 (speedbar-maybe-add-localized-support (current-buffer)) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2811 ;; Update for special mode all the time! |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2812 (if (and speedbar-mode-specific-contents-flag |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2813 (listp speedbar-special-mode-expansion-list) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2814 speedbar-special-mode-expansion-list |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2815 (local-variable-p |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2816 'speedbar-special-mode-expansion-list |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2817 (current-buffer))) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2818 ;;(eq (get major-mode 'mode-class 'special))) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2819 (progn |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2820 (if (<= 2 speedbar-verbosity-level) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2821 (speedbar-message |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2822 "Updating speedbar to special mode: %s..." |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2823 major-mode)) |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2824 (speedbar-update-special-contents) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2825 (if (<= 2 speedbar-verbosity-level) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2826 (progn |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2827 (speedbar-message |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2828 "Updating speedbar to special mode: %s...done" |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2829 major-mode) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2830 (speedbar-message nil)))) |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2831 ;; Update all the contents if directories change! |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2832 (if (or (member (expand-file-name default-directory) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2833 speedbar-shown-directories) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2834 (and speedbar-ignored-path-regexp |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2835 (string-match |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2836 speedbar-ignored-path-regexp |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2837 (expand-file-name default-directory))) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2838 (member major-mode speedbar-ignored-modes) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2839 (eq af speedbar-frame) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2840 (not (buffer-file-name))) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2841 nil |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2842 (if (<= 1 speedbar-verbosity-level) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2843 (speedbar-message "Updating speedbar to: %s..." |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2844 default-directory)) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2845 (speedbar-update-directory-contents) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2846 (if (<= 1 speedbar-verbosity-level) |
22906
adfc04c48002
Updated refresh messages to clear themselves.
Eric M. Ludlam <zappo@gnu.org>
parents:
22893
diff
changeset
|
2847 (progn |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2848 (speedbar-message "Updating speedbar to: %s...done" |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2849 default-directory) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2850 (speedbar-message nil))))) |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2851 (select-frame af))) |
21650 | 2852 ;; Now run stealthy updates of time-consuming items |
22735 | 2853 (speedbar-stealthy-updates))) |
2854 ;; Now run the mouse tracking system | |
2855 (speedbar-show-info-under-mouse))) | |
21650 | 2856 (run-hooks 'speedbar-timer-hook)) |
2857 | |
2858 | |
2859 ;;; Stealthy activities | |
2860 ;; | |
22735 | 2861 (defvar speedbar-stealthy-update-recurse nil |
2862 "Recursion avoidance variable for stealthy update.") | |
2863 | |
21650 | 2864 (defun speedbar-stealthy-updates () |
2865 "For a given speedbar, run all items in the stealthy function list. | |
2866 Each item returns t if it completes successfully, or nil if | |
2867 interrupted by the user." | |
22735 | 2868 (if (not speedbar-stealthy-update-recurse) |
2869 (let ((l (speedbar-initial-stealthy-functions)) | |
2870 (speedbar-stealthy-update-recurse t)) | |
2871 (unwind-protect | |
23085
46deaf6e62a9
(speedbar-stealthy-updates): Do all updates w/ the the buffer writable.
Eric M. Ludlam <zappo@gnu.org>
parents:
23084
diff
changeset
|
2872 (speedbar-with-writable |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2873 (while (and l (funcall (car l))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2874 ;;(sit-for 0) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2875 (setq l (cdr l)))) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2876 ;;(speedbar-message "Exit with %S" (car l)) |
22735 | 2877 )))) |
21650 | 2878 |
2879 (defun speedbar-reset-scanners () | |
2880 "Reset any variables used by functions in the stealthy list as state. | |
2881 If new functions are added, their state needs to be updated here." | |
22735 | 2882 (setq speedbar-vc-to-do-point t |
2883 speedbar-obj-to-do-point t) | |
21650 | 2884 (run-hooks 'speedbar-scanner-reset-hook) |
2885 ) | |
2886 | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2887 (defun speedbar-find-selected-file (file) |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
2888 "Go to the line where FILE is." |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2889 (goto-char (point-min)) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2890 (let ((m nil)) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2891 (while (and (setq m (re-search-forward |
37891
2fec97b8ea55
(speedbar-find-selected-file): RE-quote the filename.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37180
diff
changeset
|
2892 (concat " \\(" (regexp-quote (file-name-nondirectory file)) |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2893 "\\)\\(" speedbar-indicator-regex "\\)?\n") |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2894 nil t)) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2895 (not (string= file |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2896 (concat |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2897 (speedbar-line-path |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2898 (save-excursion |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2899 (goto-char (match-beginning 0)) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2900 (beginning-of-line) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2901 (save-match-data |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2902 (looking-at "[0-9]+:") |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2903 (string-to-number (match-string 0))))) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2904 (match-string 1)))))) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2905 (if m |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2906 (progn |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2907 (goto-char (match-beginning 1)) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2908 (match-string 1))))) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2909 |
21650 | 2910 (defun speedbar-clear-current-file () |
2911 "Locate the file thought to be current, and remove its highlighting." | |
2912 (save-excursion | |
2913 (set-buffer speedbar-buffer) | |
2914 (if speedbar-last-selected-file | |
2915 (speedbar-with-writable | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2916 (if (speedbar-find-selected-file speedbar-last-selected-file) |
21650 | 2917 (put-text-property (match-beginning 1) |
2918 (match-end 1) | |
2919 'face | |
2920 'speedbar-file-face)))))) | |
2921 | |
2922 (defun speedbar-update-current-file () | |
2923 "Find the current file, and update our visuals to indicate its name. | |
2924 This is specific to file names. If the file name doesn't show up, but | |
2925 it should be in the list, then the directory cache needs to be | |
2926 updated." | |
2927 (let* ((lastf (selected-frame)) | |
2928 (newcfd (save-excursion | |
2929 (select-frame speedbar-attached-frame) | |
2930 (let ((rf (if (buffer-file-name) | |
2931 (buffer-file-name) | |
2932 nil))) | |
2933 (select-frame lastf) | |
2934 rf))) | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2935 (newcf (if newcfd newcfd)) |
21650 | 2936 (lastb (current-buffer)) |
22735 | 2937 (sucf-recursive (boundp 'sucf-recursive)) |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
2938 (case-fold-search read-file-name-completion-ignore-case)) |
21650 | 2939 (if (and newcf |
2940 ;; check here, that way we won't refresh to newcf until | |
2941 ;; its been written, thus saving ourselves some time | |
2942 (file-exists-p newcf) | |
2943 (not (string= newcf speedbar-last-selected-file))) | |
2944 (progn | |
2945 ;; It is important to select the frame, otherwise the window | |
2946 ;; we want the cursor to move in will not be updated by the | |
2947 ;; search-forward command. | |
2948 (select-frame speedbar-frame) | |
2949 ;; Remove the old file... | |
2950 (speedbar-clear-current-file) | |
2951 ;; now highlight the new one. | |
2952 (set-buffer speedbar-buffer) | |
2953 (speedbar-with-writable | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2954 (if (speedbar-find-selected-file newcf) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2955 ;; put the property on it |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2956 (put-text-property (match-beginning 1) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2957 (match-end 1) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2958 'face |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2959 'speedbar-selected-face) |
21650 | 2960 ;; Oops, it's not in the list. Should it be? |
2961 (if (and (string-match speedbar-file-regexp newcf) | |
2962 (string= (file-name-directory newcfd) | |
2963 (expand-file-name default-directory))) | |
2964 ;; yes, it is (we will ignore unknowns for now...) | |
2965 (progn | |
2966 (speedbar-refresh) | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2967 (if (speedbar-find-selected-file newcf) |
21650 | 2968 ;; put the property on it |
2969 (put-text-property (match-beginning 1) | |
2970 (match-end 1) | |
2971 'face | |
2972 'speedbar-selected-face))) | |
2973 ;; if it's not in there now, whatever... | |
2974 )) | |
2975 (setq speedbar-last-selected-file newcf)) | |
2976 (if (not sucf-recursive) | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
2977 (progn |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
2978 (speedbar-center-buffer-smartly) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
2979 (speedbar-position-cursor-on-line) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
2980 )) |
21650 | 2981 (set-buffer lastb) |
2982 (select-frame lastf) | |
2983 ))) | |
2984 ;; return that we are done with this activity. | |
2985 t) | |
2986 | |
22735 | 2987 (defun speedbar-add-indicator (indicator-string &optional replace-this) |
2988 "Add INDICATOR-STRING to the end of this speedbar line. | |
2989 If INDICATOR-STRING is space, and REPLACE-THIS is a character, then | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
2990 the existing indicator is removed. If there is already an |
22735 | 2991 indicator, then do not add a space." |
2992 (beginning-of-line) | |
2993 ;; The nature of the beast: Assume we are in "the right place" | |
2994 (end-of-line) | |
2995 (skip-chars-backward (concat " " speedbar-vc-indicator | |
2996 (car speedbar-obj-indicator) | |
2997 (cdr speedbar-obj-indicator))) | |
2998 (if (and (not (looking-at speedbar-indicator-regex)) | |
2999 (not (string= indicator-string " "))) | |
3000 (insert speedbar-indicator-separator)) | |
3001 (speedbar-with-writable | |
3002 (save-excursion | |
3003 (if (and replace-this | |
3004 (re-search-forward replace-this (save-excursion (end-of-line) | |
3005 (point)) | |
3006 t)) | |
3007 (delete-region (match-beginning 0) (match-end 0)))) | |
3008 (end-of-line) | |
3009 (if (not (string= " " indicator-string)) | |
3010 (insert indicator-string)))) | |
3011 | |
3012 ;; Load efs/ange-ftp only if compiling to remove byte-compiler warnings. | |
21650 | 3013 ;; Steven L Baur <steve@xemacs.org> said this was important: |
22735 | 3014 (eval-when-compile (or (featurep 'xemacs) |
3015 (condition-case () (require 'efs) | |
3016 (error (require 'ange-ftp))))) | |
21650 | 3017 |
3018 (defun speedbar-check-vc () | |
3019 "Scan all files in a directory, and for each see if it's checked out. | |
3020 See `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p' for how | |
3021 to add more types of version control systems." | |
3022 ;; Check for to-do to be reset. If reset but no RCS is available | |
3023 ;; then set to nil (do nothing) otherwise, start at the beginning | |
3024 (save-excursion | |
3025 (set-buffer speedbar-buffer) | |
3026 (if (and speedbar-vc-do-check (eq speedbar-vc-to-do-point t) | |
3027 (speedbar-vc-check-dir-p default-directory) | |
22735 | 3028 (not (or (and (featurep 'ange-ftp) |
3029 (string-match | |
3030 (car (if speedbar-xemacsp | |
3031 ange-ftp-path-format | |
3032 ange-ftp-name-format)) | |
3033 (expand-file-name default-directory))) | |
3034 ;; efs support: Bob Weiner | |
3035 (and (featurep 'efs) | |
3036 (string-match | |
3037 (car efs-path-regexp) | |
3038 (expand-file-name default-directory)))))) | |
21650 | 3039 (setq speedbar-vc-to-do-point 0)) |
3040 (if (numberp speedbar-vc-to-do-point) | |
3041 (progn | |
3042 (goto-char speedbar-vc-to-do-point) | |
3043 (while (and (not (input-pending-p)) | |
3044 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] " | |
3045 nil t)) | |
3046 (setq speedbar-vc-to-do-point (point)) | |
3047 (if (speedbar-check-vc-this-line (match-string 1)) | |
22735 | 3048 (speedbar-add-indicator speedbar-vc-indicator |
3049 (regexp-quote speedbar-vc-indicator)) | |
3050 (speedbar-add-indicator " " | |
3051 (regexp-quote speedbar-vc-indicator)))) | |
21650 | 3052 (if (input-pending-p) |
3053 ;; return that we are incomplete | |
3054 nil | |
3055 ;; we are done, set to-do to nil | |
3056 (setq speedbar-vc-to-do-point nil) | |
3057 ;; and return t | |
3058 t)) | |
3059 t))) | |
3060 | |
3061 (defun speedbar-check-vc-this-line (depth) | |
3062 "Return t if the file on this line is check of of a version control system. | |
3063 Parameter DEPTH is a string with the current depth of indentation of | |
3064 the file being checked." | |
3065 (let* ((d (string-to-int depth)) | |
3066 (f (speedbar-line-path d)) | |
3067 (fn (buffer-substring-no-properties | |
3068 ;; Skip-chars: thanks ptype@dra.hmg.gb | |
3069 (point) (progn | |
3070 (skip-chars-forward "^ " | |
3071 (save-excursion (end-of-line) | |
3072 (point))) | |
3073 (point)))) | |
3074 (fulln (concat f fn))) | |
3075 (if (<= 2 speedbar-verbosity-level) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3076 (speedbar-message "Speedbar vc check...%s" fulln)) |
21650 | 3077 (and (file-writable-p fulln) |
3078 (speedbar-this-file-in-vc f fn)))) | |
3079 | |
3080 (defun speedbar-vc-check-dir-p (path) | |
3081 "Return t if we should bother checking PATH for version control files. | |
3082 This can be overloaded to add new types of version control systems." | |
3083 (or | |
3084 ;; Local RCS | |
3085 (file-exists-p (concat path "RCS/")) | |
3086 ;; Local SCCS | |
3087 (file-exists-p (concat path "SCCS/")) | |
3088 ;; Remote SCCS project | |
3089 (let ((proj-dir (getenv "PROJECTDIR"))) | |
3090 (if proj-dir | |
3091 (file-exists-p (concat proj-dir "/SCCS")) | |
3092 nil)) | |
3093 ;; User extension | |
3094 (run-hook-with-args 'speedbar-vc-path-enable-hook path) | |
3095 )) | |
3096 | |
3097 (defun speedbar-this-file-in-vc (path name) | |
3098 "Check to see if the file in PATH with NAME is in a version control system. | |
3099 You can add new VC systems by overriding this function. You can | |
3100 optimize this function by overriding it and only doing those checks | |
3101 that will occur on your system." | |
3102 (or | |
3103 ;; RCS file name | |
3104 (file-exists-p (concat path "RCS/" name ",v")) | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
3105 (file-exists-p (concat path "RCS/" name)) |
21650 | 3106 ;; Local SCCS file name |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3107 (file-exists-p (concat path "SCCS/s." name)) |
21650 | 3108 ;; Remote SCCS file name |
3109 (let ((proj-dir (getenv "PROJECTDIR"))) | |
3110 (if proj-dir | |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3111 (file-exists-p (concat proj-dir "/SCCS/s." name)) |
21650 | 3112 nil)) |
3113 ;; User extension | |
3114 (run-hook-with-args 'speedbar-vc-in-control-hook path name) | |
3115 )) | |
22735 | 3116 |
3117 ;; Objet File scanning | |
3118 (defun speedbar-check-objects () | |
3119 "Scan all files in a directory, and for each see if there is an object. | |
3120 See `speedbar-check-obj-this-line' and `speedbar-obj-alist' for how | |
3121 to add more object types." | |
3122 ;; Check for to-do to be reset. If reset but no RCS is available | |
3123 ;; then set to nil (do nothing) otherwise, start at the beginning | |
3124 (save-excursion | |
3125 (set-buffer speedbar-buffer) | |
3126 (if (and speedbar-obj-do-check (eq speedbar-obj-to-do-point t)) | |
3127 (setq speedbar-obj-to-do-point 0)) | |
3128 (if (numberp speedbar-obj-to-do-point) | |
3129 (progn | |
3130 (goto-char speedbar-obj-to-do-point) | |
3131 (while (and (not (input-pending-p)) | |
3132 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] " | |
3133 nil t)) | |
3134 (setq speedbar-obj-to-do-point (point)) | |
3135 (let ((ind (speedbar-check-obj-this-line (match-string 1)))) | |
3136 (if (not ind) (setq ind " ")) | |
3137 (speedbar-add-indicator ind (concat | |
3138 (car speedbar-obj-indicator) | |
3139 "\\|" | |
3140 (cdr speedbar-obj-indicator))))) | |
3141 (if (input-pending-p) | |
3142 ;; return that we are incomplete | |
3143 nil | |
3144 ;; we are done, set to-do to nil | |
3145 (setq speedbar-obj-to-do-point nil) | |
3146 ;; and return t | |
3147 t)) | |
3148 t))) | |
3149 | |
3150 (defun speedbar-check-obj-this-line (depth) | |
3151 "Return t if the file on this line has an associated object. | |
3152 Parameter DEPTH is a string with the current depth of indentation of | |
3153 the file being checked." | |
3154 (let* ((d (string-to-int depth)) | |
3155 (f (speedbar-line-path d)) | |
3156 (fn (buffer-substring-no-properties | |
3157 ;; Skip-chars: thanks ptype@dra.hmg.gb | |
3158 (point) (progn | |
3159 (skip-chars-forward "^ " | |
3160 (save-excursion (end-of-line) | |
3161 (point))) | |
3162 (point)))) | |
3163 (fulln (concat f fn))) | |
3164 (if (<= 2 speedbar-verbosity-level) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3165 (speedbar-message "Speedbar obj check...%s" fulln)) |
22735 | 3166 (let ((oa speedbar-obj-alist)) |
3167 (while (and oa (not (string-match (car (car oa)) fulln))) | |
3168 (setq oa (cdr oa))) | |
3169 (if (not (and oa (file-exists-p (concat (file-name-sans-extension fulln) | |
3170 (cdr (car oa)))))) | |
3171 nil | |
3172 ;; Find out if the object is out of date or not. | |
3173 (let ((date1 (nth 5 (file-attributes fulln))) | |
3174 (date2 (nth 5 (file-attributes (concat | |
3175 (file-name-sans-extension fulln) | |
3176 (cdr (car oa))))))) | |
3177 (if (or (< (car date1) (car date2)) | |
3178 (and (= (car date1) (car date2)) | |
3179 (< (nth 1 date1) (nth 1 date2)))) | |
3180 (car speedbar-obj-indicator) | |
3181 (cdr speedbar-obj-indicator))))))) | |
21650 | 3182 |
3183 ;;; Clicking Activity | |
3184 ;; | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3185 (defun speedbar-mouse-set-point (e) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3186 "Set POINT based on event E. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3187 Handle clicking on images in XEmacs." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3188 (if (and (fboundp 'event-over-glyph-p) (event-over-glyph-p e)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3189 ;; We are in XEmacs, and clicked on a picture |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3190 (let ((ext (event-glyph-extent e))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3191 ;; This position is back inside the extent where the |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3192 ;; junk we pushed into the property list lives. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3193 (if (extent-end-position ext) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3194 (goto-char (1- (extent-end-position ext))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3195 (mouse-set-point e))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3196 ;; We are not in XEmacs, OR we didn't click on a picture. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3197 (mouse-set-point e))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3198 |
21650 | 3199 (defun speedbar-quick-mouse (e) |
3200 "Since mouse events are strange, this will keep the mouse nicely positioned. | |
3201 This should be bound to mouse event E." | |
3202 (interactive "e") | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3203 (speedbar-mouse-set-point e) |
21650 | 3204 (speedbar-position-cursor-on-line) |
3205 ) | |
3206 | |
3207 (defun speedbar-position-cursor-on-line () | |
3208 "Position the cursor on a line." | |
3209 (let ((oldpos (point))) | |
3210 (beginning-of-line) | |
3211 (if (looking-at "[0-9]+:\\s-*..?.? ") | |
3212 (goto-char (1- (match-end 0))) | |
3213 (goto-char oldpos)))) | |
3214 | |
3215 (defun speedbar-power-click (e) | |
3216 "Activate any speedbar button as a power click. | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3217 A power click will dispose of cached data (if available) or bring a buffer |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3218 up into a different window. |
21650 | 3219 This should be bound to mouse event E." |
3220 (interactive "e") | |
3221 (let ((speedbar-power-click t)) | |
3222 (speedbar-click e))) | |
3223 | |
3224 (defun speedbar-click (e) | |
3225 "Activate any speedbar buttons where the mouse is clicked. | |
3226 This must be bound to a mouse event. A button is any location of text | |
3227 with a mouse face that has a text property called `speedbar-function'. | |
3228 This should be bound to mouse event E." | |
3229 (interactive "e") | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3230 (speedbar-mouse-set-point e) |
21650 | 3231 (speedbar-do-function-pointer) |
3232 (speedbar-quick-mouse e)) | |
3233 | |
3234 (defun speedbar-double-click (e) | |
3235 "Activate any speedbar buttons where the mouse is clicked. | |
3236 This must be bound to a mouse event. A button is any location of text | |
3237 with a mouse face that has a text property called `speedbar-function'. | |
3238 This should be bound to mouse event E." | |
3239 (interactive "e") | |
3240 ;; Emacs only. XEmacs handles this via `mouse-track-click-hook'. | |
3241 (cond ((eq (car e) 'down-mouse-1) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3242 (speedbar-mouse-set-point e)) |
21650 | 3243 ((eq (car e) 'mouse-1) |
3244 (speedbar-quick-mouse e)) | |
3245 ((or (eq (car e) 'double-down-mouse-1) | |
22735 | 3246 (eq (car e) 'triple-down-mouse-1)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3247 (speedbar-mouse-set-point e) |
21650 | 3248 (speedbar-do-function-pointer) |
3249 (speedbar-quick-mouse e)))) | |
3250 | |
3251 (defun speedbar-do-function-pointer () | |
3252 "Look under the cursor and examine the text properties. | |
3253 From this extract the file/tag name, token, indentation level and call | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3254 a function if appropriate." |
21650 | 3255 (let* ((fn (get-text-property (point) 'speedbar-function)) |
3256 (tok (get-text-property (point) 'speedbar-token)) | |
3257 ;; The 1-,+ is safe because scaning starts AFTER the point | |
3258 ;; specified. This lets the search include the character the | |
3259 ;; cursor is on. | |
3260 (tp (previous-single-property-change | |
3261 (1+ (point)) 'speedbar-function)) | |
3262 (np (next-single-property-change | |
3263 (point) 'speedbar-function)) | |
3264 (txt (buffer-substring-no-properties (or tp (point-min)) | |
3265 (or np (point-max)))) | |
3266 (dent (save-excursion (beginning-of-line) | |
3267 (string-to-number | |
3268 (if (looking-at "[0-9]+") | |
3269 (buffer-substring-no-properties | |
3270 (match-beginning 0) (match-end 0)) | |
3271 "0"))))) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3272 ;;(speedbar-message "%S:%S:%S:%s" fn tok txt dent) |
21650 | 3273 (and fn (funcall fn txt tok dent))) |
3274 (speedbar-position-cursor-on-line)) | |
3275 | |
3276 ;;; Reading info from the speedbar buffer | |
3277 ;; | |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3278 (defun speedbar-line-text (&optional p) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3279 "Retrieve the text after prefix junk for the current line. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3280 Optional argument P is where to start the search from." |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3281 (save-excursion |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3282 (if p (goto-char p)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3283 (beginning-of-line) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3284 (if (looking-at (concat |
24232
446e5ef3f423
(speedbar-line-token): Match {...} instead of [...].
Richard M. Stallman <rms@gnu.org>
parents:
24154
diff
changeset
|
3285 "\\([0-9]+\\): *[[<{][-+?][]>}] \\([^ \n]+\\)\\(" |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3286 speedbar-indicator-regex "\\)?")) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3287 (match-string 2) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3288 nil))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3289 |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3290 (defun speedbar-line-token (&optional p) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3291 "Retrieve the token information after the prefix junk for the current line. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3292 Optional argument P is where to start the search from." |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3293 (save-excursion |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3294 (if p (goto-char p)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3295 (beginning-of-line) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3296 (if (looking-at (concat |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3297 "\\([0-9]+\\): *[[<{]?[-+?=][]>}@()|] \\([^ \n]+\\)\\(" |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3298 speedbar-indicator-regex "\\)?")) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3299 (progn |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3300 (goto-char (match-beginning 2)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3301 (get-text-property (point) 'speedbar-token)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3302 nil))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3303 |
21650 | 3304 (defun speedbar-line-file (&optional p) |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3305 "Retrieve the file or whatever from the line at point P. |
21650 | 3306 The return value is a string representing the file. If it is a |
3307 directory, then it is the directory name." | |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3308 (save-match-data |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3309 (let ((f (speedbar-line-text p))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3310 (if f |
21650 | 3311 (let* ((depth (string-to-int (match-string 1))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3312 (path (speedbar-line-path depth))) |
36047
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3313 (if (file-exists-p (concat path f)) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3314 (concat path f) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3315 nil)) |
21650 | 3316 nil)))) |
3317 | |
3318 (defun speedbar-goto-this-file (file) | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3319 "If FILE is displayed, go to this line and return t. |
21650 | 3320 Otherwise do not move and return nil." |
3321 (let ((path (substring (file-name-directory (expand-file-name file)) | |
3322 (length (expand-file-name default-directory)))) | |
3323 (dest (point))) | |
3324 (save-match-data | |
3325 (goto-char (point-min)) | |
3326 ;; scan all the directories | |
3327 (while (and path (not (eq path t))) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3328 (if (string-match "^[/\\]?\\([^/\\]+\\)" path) |
21650 | 3329 (let ((pp (match-string 1 path))) |
3330 (if (save-match-data | |
3331 (re-search-forward (concat "> " (regexp-quote pp) "$") | |
3332 nil t)) | |
3333 (setq path (substring path (match-end 1))) | |
3334 (setq path nil))) | |
3335 (setq path t))) | |
3336 ;; find the file part | |
3337 (if (or (not path) (string= (file-name-nondirectory file) "")) | |
3338 ;; only had a dir part | |
3339 (if path | |
3340 (progn | |
3341 (speedbar-position-cursor-on-line) | |
3342 t) | |
3343 (goto-char dest) nil) | |
3344 ;; find the file part | |
3345 (let ((nd (file-name-nondirectory file))) | |
3346 (if (re-search-forward | |
3347 (concat "] \\(" (regexp-quote nd) | |
22735 | 3348 "\\)\\(" speedbar-indicator-regex "\\)$") |
21650 | 3349 nil t) |
3350 (progn | |
3351 (speedbar-position-cursor-on-line) | |
3352 t) | |
3353 (goto-char dest) | |
3354 nil)))))) | |
3355 | |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3356 (defun speedbar-line-path (&optional depth) |
21650 | 3357 "Retrieve the pathname associated with the current line. |
3358 This may require traversing backwards from DEPTH and combining the default | |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3359 directory with these items. This function is replaceable in |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3360 `speedbar-mode-functions-list' as `speedbar-line-path'." |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3361 (let ((rf (speedbar-fetch-replacement-function 'speedbar-line-path))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3362 (if rf (funcall rf depth) default-directory))) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48716
diff
changeset
|
3363 |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3364 (defun speedbar-files-line-path (&optional depth) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3365 "Retrieve the pathname associated with the current line. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3366 This may require traversing backwards from DEPTH and combining the default |
21650 | 3367 directory with these items." |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3368 (save-excursion |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3369 (save-match-data |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3370 (if (not depth) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3371 (progn |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3372 (beginning-of-line) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3373 (looking-at "^\\([0-9]+\\):") |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3374 (setq depth (string-to-int (match-string 1))))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3375 (let ((path nil)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3376 (setq depth (1- depth)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3377 (while (/= depth -1) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3378 (if (not (re-search-backward (format "^%d:" depth) nil t)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3379 (error "Error building path of tag") |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3380 (cond ((looking-at "[0-9]+:\\s-*<->\\s-+\\([^\n]+\\)$") |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3381 (setq path (concat (buffer-substring-no-properties |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3382 (match-beginning 1) (match-end 1)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3383 "/" |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3384 path))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3385 ((looking-at "[0-9]+:\\s-*[-]\\s-+\\([^\n]+\\)$") |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3386 ;; This is the start of our path. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3387 (setq path (buffer-substring-no-properties |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3388 (match-beginning 1) (match-end 1)))))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3389 (setq depth (1- depth))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3390 (if (and path |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3391 (string-match (concat speedbar-indicator-regex "$") |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3392 path)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3393 (setq path (substring path 0 (match-beginning 0)))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3394 (concat default-directory path))))) |
21650 | 3395 |
3396 (defun speedbar-path-line (path) | |
3397 "Position the cursor on the line specified by PATH." | |
3398 (save-match-data | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3399 (if (string-match "[/\\]$" path) |
21650 | 3400 (setq path (substring path 0 (match-beginning 0)))) |
3401 (let ((nomatch t) (depth 0) | |
3402 (fname (file-name-nondirectory path)) | |
3403 (pname (file-name-directory path))) | |
3404 (if (not (member pname speedbar-shown-directories)) | |
22735 | 3405 (error "Internal Error: File %s not shown in speedbar" path)) |
21650 | 3406 (goto-char (point-min)) |
3407 (while (and nomatch | |
3408 (re-search-forward | |
3409 (concat "[]>] \\(" (regexp-quote fname) | |
22735 | 3410 "\\)\\(" speedbar-indicator-regex "\\)?$") |
21650 | 3411 nil t)) |
3412 (beginning-of-line) | |
3413 (looking-at "\\([0-9]+\\):") | |
3414 (setq depth (string-to-int (match-string 0)) | |
3415 nomatch (not (string= pname (speedbar-line-path depth)))) | |
3416 (end-of-line)) | |
3417 (beginning-of-line) | |
3418 (not nomatch)))) | |
3419 | |
3420 (defun speedbar-edit-line () | |
3421 "Edit whatever tag or file is on the current speedbar line." | |
3422 (interactive) | |
3423 (or (save-excursion | |
3424 (beginning-of-line) | |
3425 ;; If this fails, then it is a non-standard click, and as such, | |
3426 ;; perfectly allowed. | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
3427 (if (re-search-forward "[]>?}] [^ ]" |
21650 | 3428 (save-excursion (end-of-line) (point)) |
3429 t) | |
53487
25ff62ff164d
(speedbar-edit-line): Change regexp to position
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
3430 (progn |
25ff62ff164d
(speedbar-edit-line): Change regexp to position
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
3431 (forward-char -1) |
25ff62ff164d
(speedbar-edit-line): Change regexp to position
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
3432 (speedbar-do-function-pointer)) |
21650 | 3433 nil)) |
3434 (speedbar-do-function-pointer))) | |
3435 | |
28925
89a795d90175
(speedbar-recenter): Typo, and fix logic.
Eric M. Ludlam <zappo@gnu.org>
parents:
28902
diff
changeset
|
3436 (defun speedbar-expand-line (&optional arg) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3437 "Expand the line under the cursor. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3438 With universal argument ARG, flush cached data." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3439 (interactive "P") |
21650 | 3440 (beginning-of-line) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3441 (let ((speedbar-power-click arg)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3442 (condition-case nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3443 (progn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3444 (re-search-forward ":\\s-*.\\+. " |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3445 (save-excursion (end-of-line) (point))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3446 (forward-char -2) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3447 (speedbar-do-function-pointer)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3448 (error (speedbar-position-cursor-on-line))))) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48716
diff
changeset
|
3449 |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3450 (defun speedbar-flush-expand-line () |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3451 "Expand the line under the cursor and flush any cached information." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3452 (interactive) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3453 (speedbar-expand-line 1)) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48716
diff
changeset
|
3454 |
21650 | 3455 (defun speedbar-contract-line () |
3456 "Contract the line under the cursor." | |
3457 (interactive) | |
3458 (beginning-of-line) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3459 (condition-case nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3460 (progn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3461 (re-search-forward ":\\s-*.-. " |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3462 (save-excursion (end-of-line) (point))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3463 (forward-char -2) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3464 (speedbar-do-function-pointer)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3465 (error (speedbar-position-cursor-on-line)))) |
21650 | 3466 |
3467 (if speedbar-xemacsp | |
3468 (defalias 'speedbar-mouse-event-p 'button-press-event-p) | |
3469 (defun speedbar-mouse-event-p (event) | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3470 "Return t if the event is a mouse related event." |
21650 | 3471 ;; And Emacs does it this way |
3472 (if (and (listp event) | |
3473 (member (event-basic-type event) | |
3474 '(mouse-1 mouse-2 mouse-3))) | |
3475 t | |
3476 nil))) | |
3477 | |
3478 (defun speedbar-maybee-jump-to-attached-frame () | |
3479 "Jump to the attached frame ONLY if this was not a mouse event." | |
3480 (if (or (not (speedbar-mouse-event-p last-input-event)) | |
3481 speedbar-activity-change-focus-flag) | |
3482 (progn | |
3483 (select-frame speedbar-attached-frame) | |
3484 (other-frame 0)))) | |
3485 | |
3486 (defun speedbar-find-file (text token indent) | |
3487 "Speedbar click handler for filenames. | |
3488 TEXT, the file will be displayed in the attached frame. | |
3489 TOKEN is unused, but required by the click handler. INDENT is the | |
3490 current indentation level." | |
3491 (let ((cdd (speedbar-line-path indent))) | |
3492 (speedbar-find-file-in-frame (concat cdd text)) | |
3493 (speedbar-stealthy-updates) | |
3494 (run-hooks 'speedbar-visiting-file-hook) | |
3495 ;; Reset the timer with a new timeout when cliking a file | |
3496 ;; in case the user was navigating directories, we can cancel | |
3497 ;; that other timer. | |
3498 (speedbar-set-timer speedbar-update-speed)) | |
3499 (speedbar-maybee-jump-to-attached-frame)) | |
3500 | |
3501 (defun speedbar-dir-follow (text token indent) | |
3502 "Speedbar click handler for directory names. | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3503 Clicking a directory will cause the speedbar to list files in |
21650 | 3504 the subdirectory TEXT. TOKEN is an unused requirement. The |
3505 subdirectory chosen will be at INDENT level." | |
3506 (setq default-directory | |
3507 (concat (expand-file-name (concat (speedbar-line-path indent) text)) | |
3508 "/")) | |
3509 ;; Because we leave speedbar as the current buffer, | |
3510 ;; update contents will change directory without | |
22735 | 3511 ;; having to touch the attached frame. Turn off smart expand just |
3512 ;; in case. | |
3513 (let ((speedbar-smart-directory-expand-flag nil)) | |
3514 (speedbar-update-contents)) | |
21650 | 3515 (speedbar-set-timer speedbar-navigating-speed) |
3516 (setq speedbar-last-selected-file nil) | |
3517 (speedbar-stealthy-updates)) | |
3518 | |
3519 (defun speedbar-delete-subblock (indent) | |
3520 "Delete text from point to indentation level INDENT or greater. | |
3521 Handles end-of-sublist smartly." | |
3522 (speedbar-with-writable | |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3523 (save-excursion |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3524 (end-of-line) (forward-char 1) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3525 (let ((start (point))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3526 (while (and (looking-at "^\\([0-9]+\\):") |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3527 (> (string-to-int (match-string 1)) indent) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3528 (not (eobp))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3529 (forward-line 1) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3530 (beginning-of-line)) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3531 (delete-region start (point)))))) |
21650 | 3532 |
3533 (defun speedbar-dired (text token indent) | |
3534 "Speedbar click handler for directory expand button. | |
3535 Clicking this button expands or contracts a directory. TEXT is the | |
3536 button clicked which has either a + or -. TOKEN is the directory to be | |
3537 expanded. INDENT is the current indentation level." | |
3538 (cond ((string-match "+" text) ;we have to expand this dir | |
3539 (setq speedbar-shown-directories | |
3540 (cons (expand-file-name | |
3541 (concat (speedbar-line-path indent) token "/")) | |
3542 speedbar-shown-directories)) | |
3543 (speedbar-change-expand-button-char ?-) | |
3544 (speedbar-reset-scanners) | |
3545 (save-excursion | |
3546 (end-of-line) (forward-char 1) | |
3547 (speedbar-with-writable | |
3548 (speedbar-default-directory-list | |
3549 (concat (speedbar-line-path indent) token "/") | |
3550 (1+ indent))))) | |
3551 ((string-match "-" text) ;we have to contract this node | |
3552 (speedbar-reset-scanners) | |
3553 (let ((oldl speedbar-shown-directories) | |
3554 (newl nil) | |
3555 (td (expand-file-name | |
3556 (concat (speedbar-line-path indent) token)))) | |
3557 (while oldl | |
3558 (if (not (string-match (concat "^" (regexp-quote td)) (car oldl))) | |
3559 (setq newl (cons (car oldl) newl))) | |
3560 (setq oldl (cdr oldl))) | |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3561 (setq speedbar-shown-directories (nreverse newl))) |
21650 | 3562 (speedbar-change-expand-button-char ?+) |
3563 (speedbar-delete-subblock indent) | |
3564 ) | |
22735 | 3565 (t (error "Ooops... not sure what to do"))) |
21650 | 3566 (speedbar-center-buffer-smartly) |
3567 (setq speedbar-last-selected-file nil) | |
3568 (save-excursion (speedbar-stealthy-updates))) | |
3569 | |
3570 (defun speedbar-directory-buttons-follow (text token indent) | |
3571 "Speedbar click handler for default directory buttons. | |
3572 TEXT is the button clicked on. TOKEN is the directory to follow. | |
3573 INDENT is the current indentation level and is unused." | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
3574 (if (string-match "^[A-z]:$" token) |
48716
376c832d1ca7
(speedbar-directory-buttons-follow): Don't use directory-sep-char.
Richard M. Stallman <rms@gnu.org>
parents:
48686
diff
changeset
|
3575 (setq default-directory (concat token "/")) |
22735 | 3576 (setq default-directory token)) |
21650 | 3577 ;; Because we leave speedbar as the current buffer, |
3578 ;; update contents will change directory without | |
3579 ;; having to touch the attached frame. | |
3580 (speedbar-update-contents) | |
3581 (speedbar-set-timer speedbar-navigating-speed)) | |
3582 | |
3583 (defun speedbar-tag-file (text token indent) | |
3584 "The cursor is on a selected line. Expand the tags in the specified file. | |
3585 The parameter TEXT and TOKEN are required, where TEXT is the button | |
3586 clicked, and TOKEN is the file to expand. INDENT is the current | |
3587 indentation level." | |
3588 (cond ((string-match "+" text) ;we have to expand this file | |
3589 (let* ((fn (expand-file-name (concat (speedbar-line-path indent) | |
3590 token))) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3591 (mode nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3592 (lst (speedbar-fetch-dynamic-tags fn))) |
21650 | 3593 ;; if no list, then remove expando button |
3594 (if (not lst) | |
3595 (speedbar-change-expand-button-char ??) | |
3596 (speedbar-change-expand-button-char ?-) | |
3597 (speedbar-with-writable | |
3598 (save-excursion | |
3599 (end-of-line) (forward-char 1) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3600 (funcall (car lst) indent (cdr lst))))))) |
21650 | 3601 ((string-match "-" text) ;we have to contract this node |
3602 (speedbar-change-expand-button-char ?+) | |
3603 (speedbar-delete-subblock indent)) | |
22735 | 3604 (t (error "Ooops... not sure what to do"))) |
21650 | 3605 (speedbar-center-buffer-smartly)) |
3606 | |
3607 (defun speedbar-tag-find (text token indent) | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3608 "For the tag TEXT in a file TOKEN, go to that position. |
21650 | 3609 INDENT is the current indentation level." |
3610 (let ((file (speedbar-line-path indent))) | |
3611 (speedbar-find-file-in-frame file) | |
3612 (save-excursion (speedbar-stealthy-updates)) | |
3613 ;; Reset the timer with a new timeout when cliking a file | |
3614 ;; in case the user was navigating directories, we can cancel | |
3615 ;; that other timer. | |
3616 (speedbar-set-timer speedbar-update-speed) | |
3617 (goto-char token) | |
3618 (run-hooks 'speedbar-visiting-tag-hook) | |
3619 ;;(recenter) | |
3620 (speedbar-maybee-jump-to-attached-frame) | |
3621 )) | |
3622 | |
3623 (defun speedbar-tag-expand (text token indent) | |
3624 "Expand a tag sublist. Imenu will return sub-lists of specialized tag types. | |
3625 Etags does not support this feature. TEXT will be the button | |
3626 string. TOKEN will be the list, and INDENT is the current indentation | |
3627 level." | |
3628 (cond ((string-match "+" text) ;we have to expand this file | |
3629 (speedbar-change-expand-button-char ?-) | |
3630 (speedbar-with-writable | |
3631 (save-excursion | |
3632 (end-of-line) (forward-char 1) | |
22735 | 3633 (speedbar-insert-generic-list indent token 'speedbar-tag-expand |
21650 | 3634 'speedbar-tag-find)))) |
3635 ((string-match "-" text) ;we have to contract this node | |
3636 (speedbar-change-expand-button-char ?+) | |
3637 (speedbar-delete-subblock indent)) | |
22735 | 3638 (t (error "Ooops... not sure what to do"))) |
21650 | 3639 (speedbar-center-buffer-smartly)) |
3640 | |
3641 ;;; Loading files into the attached frame. | |
3642 ;; | |
3643 (defun speedbar-find-file-in-frame (file) | |
3644 "This will load FILE into the speedbar attached frame. | |
3645 If the file is being displayed in a different frame already, then raise that | |
3646 frame instead." | |
3647 (let* ((buff (find-file-noselect file)) | |
3648 (bwin (get-buffer-window buff 0))) | |
3649 (if bwin | |
3650 (progn | |
3651 (select-window bwin) | |
3652 (raise-frame (window-frame bwin))) | |
3653 (if speedbar-power-click | |
3654 (let ((pop-up-frames t)) (select-window (display-buffer buff))) | |
3655 (select-frame speedbar-attached-frame) | |
3656 (switch-to-buffer buff)))) | |
22735 | 3657 ) |
21650 | 3658 |
3659 ;;; Centering Utility | |
3660 ;; | |
3661 (defun speedbar-center-buffer-smartly () | |
3662 "Recenter a speedbar buffer so the current indentation level is all visible. | |
3663 This assumes that the cursor is on a file, or tag of a file which the user is | |
3664 interested in." | |
3665 (if (<= (count-lines (point-min) (point-max)) | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
3666 (1- (window-height (selected-window)))) |
21650 | 3667 ;; whole buffer fits |
3668 (let ((cp (point))) | |
3669 (goto-char (point-min)) | |
3670 (recenter 0) | |
3671 (goto-char cp)) | |
3672 ;; too big | |
3673 (let (depth start end exp p) | |
3674 (save-excursion | |
3675 (beginning-of-line) | |
3676 (setq depth (if (looking-at "[0-9]+") | |
3677 (string-to-int (buffer-substring-no-properties | |
3678 (match-beginning 0) (match-end 0))) | |
3679 0)) | |
3680 (setq exp (format "^%d:\\s-*[[{<]\\([?+-]\\)[]>}]" depth))) | |
3681 (save-excursion | |
3682 (end-of-line) | |
3683 (if (re-search-backward exp nil t) | |
3684 (setq start (point)) | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
3685 (setq start (point-min))) |
21650 | 3686 (save-excursion ;Not sure about this part. |
3687 (end-of-line) | |
3688 (setq p (point)) | |
3689 (while (and (not (re-search-forward exp nil t)) | |
3690 (>= depth 0)) | |
3691 (setq depth (1- depth)) | |
3692 (setq exp (format "^%d:\\s-*[[{<]\\([?+-]\\)[]>}]" depth))) | |
3693 (if (/= (point) p) | |
3694 (setq end (point)) | |
3695 (setq end (point-max))))) | |
3696 ;; Now work out the details of centering | |
3697 (let ((nl (count-lines start end)) | |
3698 (cp (point))) | |
3699 (if (> nl (window-height (selected-window))) | |
3700 ;; We can't fit it all, so just center on cursor | |
3701 (progn (goto-char start) | |
3702 (recenter 1)) | |
3703 ;; we can fit everything on the screen, but... | |
3704 (if (and (pos-visible-in-window-p start (selected-window)) | |
3705 (pos-visible-in-window-p end (selected-window))) | |
3706 ;; we are all set! | |
3707 nil | |
3708 ;; we need to do something... | |
3709 (goto-char start) | |
3710 (let ((newcent (/ (- (window-height (selected-window)) nl) 2)) | |
3711 (lte (count-lines start (point-max)))) | |
3712 (if (and (< (+ newcent lte) (window-height (selected-window))) | |
3713 (> (- (window-height (selected-window)) lte 1) | |
3714 newcent)) | |
3715 (setq newcent (- (window-height (selected-window)) | |
3716 lte 1))) | |
3717 (recenter newcent)))) | |
3718 (goto-char cp))))) | |
3719 | |
3720 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3721 ;;; Tag Management -- List of expanders: |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3722 ;; |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3723 (defun speedbar-fetch-dynamic-tags (file) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3724 "Return a list of tags generated dynamically from FILE. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3725 This uses the entries in `speedbar-dynamic-tags-function-list' |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3726 to find the proper tags. It is up to each of those individual |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3727 functions to do caching and flushing if appropriate." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3728 (save-excursion |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3729 (set-buffer (find-file-noselect file)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3730 ;; If there is a buffer-local value of |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3731 ;; speedbar-dynamic-tags-function-list, it will now be available. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3732 (let ((dtf speedbar-dynamic-tags-function-list) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3733 (ret t)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3734 (while (and (eq ret t) dtf) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3735 (setq ret |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3736 (if (fboundp (car (car dtf))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3737 (funcall (car (car dtf)) (buffer-file-name)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3738 t)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3739 (if (eq ret t) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3740 (setq dtf (cdr dtf)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3741 (if (eq ret t) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3742 ;; No valid tag list, return nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3743 nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3744 ;; We have some tags. Return the list with the insert fn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3745 ;; prepended |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3746 (cons (cdr (car dtf)) ret))))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3747 |
21650 | 3748 ;;; Tag Management -- Imenu |
3749 ;; | |
3750 (if (not speedbar-use-imenu-flag) | |
3751 | |
3752 nil | |
3753 | |
59751
57b41981928e
Avoid unnecessary use of locate-library.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57786
diff
changeset
|
3754 (eval-when-compile (condition-case nil (require 'imenu) (error nil))) |
21650 | 3755 |
3756 (defun speedbar-fetch-dynamic-imenu (file) | |
3757 "Load FILE into a buffer, and generate tags using Imenu. | |
3758 Returns the tag list, or t for an error." | |
3759 ;; Load this AND compile it in | |
3760 (require 'imenu) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3761 (if speedbar-power-click (setq imenu--index-alist nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3762 (condition-case nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3763 (let ((index-alist (imenu--make-index-alist t))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3764 (if speedbar-sort-tags |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3765 (sort (copy-alist index-alist) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3766 (lambda (a b) (string< (car a) (car b)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3767 index-alist)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3768 (error t))) |
21650 | 3769 ) |
3770 | |
3771 ;;; Tag Management -- etags (old XEmacs compatibility part) | |
3772 ;; | |
3773 (defvar speedbar-fetch-etags-parse-list | |
3774 '(;; Note that java has the same parse-group as c | |
3775 ("\\.\\([cChH]\\|c\\+\\+\\|cpp\\|cc\\|hh\\|java\\)\\'" . | |
3776 speedbar-parse-c-or-c++tag) | |
3777 ("^\\.emacs$\\|.\\(el\\|l\\|lsp\\)\\'" . | |
3778 "def[^i]+\\s-+\\(\\(\\w\\|[-_]\\)+\\)\\s-*\C-?") | |
22735 | 3779 ; ("\\.\\([fF]\\|for\\|FOR\\|77\\|90\\)\\'" . |
3780 ; speedbar-parse-fortran77-tag) | |
21650 | 3781 ("\\.tex\\'" . speedbar-parse-tex-string) |
3782 ("\\.p\\'" . | |
3783 "\\(\\(FUNCTION\\|function\\|PROCEDURE\\|procedure\\)\\s-+\\([a-zA-Z0-9_.:]+\\)\\)\\s-*(?^?") | |
3784 ) | |
3785 "Associations of file extensions and expressions for extracting tags. | |
3786 To add a new file type, you would want to add a new association to the | |
3787 list, where the car is the file match, and the cdr is the way to | |
3788 extract an element from the tags output. If the output is complex, | |
3789 use a function symbol instead of regexp. The function should expect | |
3790 to be at the beginning of a line in the etags buffer. | |
3791 | |
3792 This variable is ignored if `speedbar-use-imenu-flag' is non-nil.") | |
3793 | |
3794 (defvar speedbar-fetch-etags-command "etags" | |
3795 "*Command used to create an etags file. | |
3796 | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3797 This variable is ignored if `speedbar-use-imenu-flag' is t.") |
21650 | 3798 |
3799 (defvar speedbar-fetch-etags-arguments '("-D" "-I" "-o" "-") | |
3800 "*List of arguments to use with `speedbar-fetch-etags-command'. | |
3801 This creates an etags output buffer. Use `speedbar-toggle-etags' to | |
3802 modify this list conveniently. | |
3803 | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3804 This variable is ignored if `speedbar-use-imenu-flag' is t.") |
21650 | 3805 |
3806 (defun speedbar-toggle-etags (flag) | |
3807 "Toggle FLAG in `speedbar-fetch-etags-arguments'. | |
3808 FLAG then becomes a member of etags command line arguments. If flag | |
3809 is \"sort\", then toggle the value of `speedbar-sort-tags'. If its | |
3810 value is \"show\" then toggle the value of | |
3811 `speedbar-show-unknown-files'. | |
3812 | |
3813 This function is a convenience function for XEmacs menu created by | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3814 Farzin Guilak <farzin@protocol.com>." |
21650 | 3815 (interactive) |
3816 (cond | |
3817 ((equal flag "sort") | |
3818 (setq speedbar-sort-tags (not speedbar-sort-tags))) | |
3819 ((equal flag "show") | |
3820 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files))) | |
3821 ((or (equal flag "-C") | |
3822 (equal flag "-S") | |
3823 (equal flag "-D")) | |
3824 (if (member flag speedbar-fetch-etags-arguments) | |
3825 (setq speedbar-fetch-etags-arguments | |
3826 (delete flag speedbar-fetch-etags-arguments)) | |
3827 (add-to-list 'speedbar-fetch-etags-arguments flag))) | |
3828 (t nil))) | |
3829 | |
3830 (defun speedbar-fetch-dynamic-etags (file) | |
3831 "For FILE, run etags and create a list of symbols extracted. | |
3832 Each symbol will be associated with its line position in FILE." | |
3833 (let ((newlist nil)) | |
3834 (unwind-protect | |
3835 (save-excursion | |
3836 (if (get-buffer "*etags tmp*") | |
3837 (kill-buffer "*etags tmp*")) ;kill to clean it up | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3838 (if (<= 1 speedbar-verbosity-level) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3839 (speedbar-message "Fetching etags...")) |
21650 | 3840 (set-buffer (get-buffer-create "*etags tmp*")) |
3841 (apply 'call-process speedbar-fetch-etags-command nil | |
3842 (current-buffer) nil | |
3843 (append speedbar-fetch-etags-arguments (list file))) | |
3844 (goto-char (point-min)) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3845 (if (<= 1 speedbar-verbosity-level) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3846 (speedbar-message "Fetching etags...")) |
21650 | 3847 (let ((expr |
3848 (let ((exprlst speedbar-fetch-etags-parse-list) | |
3849 (ans nil)) | |
3850 (while (and (not ans) exprlst) | |
3851 (if (string-match (car (car exprlst)) file) | |
3852 (setq ans (car exprlst))) | |
3853 (setq exprlst (cdr exprlst))) | |
3854 (cdr ans)))) | |
3855 (if expr | |
3856 (let (tnl) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3857 (set-buffer (get-buffer-create "*etags tmp*")) |
21650 | 3858 (while (not (save-excursion (end-of-line) (eobp))) |
3859 (save-excursion | |
3860 (setq tnl (speedbar-extract-one-symbol expr))) | |
3861 (if tnl (setq newlist (cons tnl newlist))) | |
3862 (forward-line 1))) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3863 (speedbar-message |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3864 "Sorry, no support for a file of that extension")))) |
21650 | 3865 ) |
3866 (if speedbar-sort-tags | |
3867 (sort newlist (lambda (a b) (string< (car a) (car b)))) | |
3868 (reverse newlist)))) | |
3869 | |
3870 ;; This bit donated by Farzin Guilak <farzin@protocol.com> but I'm not | |
3871 ;; sure it's needed with the different sorting method. | |
3872 ;; | |
3873 ;(defun speedbar-clean-etags() | |
3874 ; "Removes spaces before the ^? character, and removes `#define', | |
3875 ;return types, etc. preceding tags. This ensures that the sort operation | |
3876 ;works on the tags, not the return types." | |
3877 ; (save-excursion | |
3878 ; (goto-char (point-min)) | |
3879 ; (while | |
3880 ; (re-search-forward "(?[ \t](?\C-?" nil t) | |
3881 ; (replace-match "\C-?" nil nil)) | |
3882 ; (goto-char (point-min)) | |
3883 ; (while | |
3884 ; (re-search-forward "\\(.*[ \t]+\\)\\([^ \t\n]+.*\C-?\\)" nil t) | |
3885 ; (delete-region (match-beginning 1) (match-end 1))))) | |
3886 | |
3887 (defun speedbar-extract-one-symbol (expr) | |
22735 | 3888 "At point, return nil, or one alist in the form: (SYMBOL . POSITION) |
21650 | 3889 The line should contain output from etags. Parse the output using the |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3890 regular expression EXPR." |
21650 | 3891 (let* ((sym (if (stringp expr) |
3892 (if (save-excursion | |
3893 (re-search-forward expr (save-excursion | |
3894 (end-of-line) | |
3895 (point)) t)) | |
3896 (buffer-substring-no-properties (match-beginning 1) | |
3897 (match-end 1))) | |
3898 (funcall expr))) | |
3899 (pos (let ((j (re-search-forward "[\C-?\C-a]\\([0-9]+\\),\\([0-9]+\\)" | |
3900 (save-excursion | |
3901 (end-of-line) | |
3902 (point)) | |
3903 t))) | |
3904 (if (and j sym) | |
3905 (1+ (string-to-int (buffer-substring-no-properties | |
3906 (match-beginning 2) | |
3907 (match-end 2)))) | |
3908 0)))) | |
3909 (if (/= pos 0) | |
3910 (cons sym pos) | |
3911 nil))) | |
3912 | |
3913 (defun speedbar-parse-c-or-c++tag () | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3914 "Parse a C or C++ tag, which tends to be a little complex." |
21650 | 3915 (save-excursion |
3916 (let ((bound (save-excursion (end-of-line) (point)))) | |
3917 (cond ((re-search-forward "\C-?\\([^\C-a]+\\)\C-a" bound t) | |
3918 (buffer-substring-no-properties (match-beginning 1) | |
3919 (match-end 1))) | |
3920 ((re-search-forward "\\<\\([^ \t]+\\)\\s-+new(" bound t) | |
3921 (buffer-substring-no-properties (match-beginning 1) | |
3922 (match-end 1))) | |
3923 ((re-search-forward "\\<\\([^ \t(]+\\)\\s-*(\C-?" bound t) | |
3924 (buffer-substring-no-properties (match-beginning 1) | |
3925 (match-end 1))) | |
3926 (t nil)) | |
3927 ))) | |
3928 | |
3929 (defun speedbar-parse-tex-string () | |
3930 "Parse a Tex string. Only find data which is relevant." | |
3931 (save-excursion | |
3932 (let ((bound (save-excursion (end-of-line) (point)))) | |
3933 (cond ((re-search-forward "\\(\\(sub\\)*section\\|chapter\\|cite\\)\\s-*{[^\C-?}]*}?" bound t) | |
3934 (buffer-substring-no-properties (match-beginning 0) | |
3935 (match-end 0))) | |
3936 (t nil))))) | |
3937 | |
3938 | |
22735 | 3939 ;;; BUFFER DISPLAY mode. |
3940 ;; | |
3941 (defvar speedbar-buffers-key-map nil | |
3942 "Keymap used when in the buffers display mode.") | |
3943 | |
3944 (if speedbar-buffers-key-map | |
3945 nil | |
3946 (setq speedbar-buffers-key-map (speedbar-make-specialized-keymap)) | |
3947 | |
3948 ;; Basic tree features | |
3949 (define-key speedbar-buffers-key-map "e" 'speedbar-edit-line) | |
3950 (define-key speedbar-buffers-key-map "\C-m" 'speedbar-edit-line) | |
3951 (define-key speedbar-buffers-key-map "+" 'speedbar-expand-line) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3952 (define-key speedbar-buffers-key-map "=" 'speedbar-expand-line) |
22735 | 3953 (define-key speedbar-buffers-key-map "-" 'speedbar-contract-line) |
3954 | |
3955 ;; Buffer specific keybindings | |
3956 (define-key speedbar-buffers-key-map "k" 'speedbar-buffer-kill-buffer) | |
3957 (define-key speedbar-buffers-key-map "r" 'speedbar-buffer-revert-buffer) | |
3958 | |
3959 ) | |
3960 | |
3961 (defvar speedbar-buffer-easymenu-definition | |
3962 '(["Jump to buffer" speedbar-edit-line t] | |
3963 ["Expand File Tags" speedbar-expand-line | |
3964 (save-excursion (beginning-of-line) | |
3965 (looking-at "[0-9]+: *.\\+. "))] | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3966 ["Flush Cache & Expand" speedbar-flush-expand-line |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3967 (save-excursion (beginning-of-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3968 (looking-at "[0-9]+: *.\\+. "))] |
22735 | 3969 ["Contract File Tags" speedbar-contract-line |
3970 (save-excursion (beginning-of-line) | |
3971 (looking-at "[0-9]+: *.-. "))] | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3972 ["Kill Buffer" speedbar-buffer-kill-buffer |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3973 (save-excursion (beginning-of-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3974 (looking-at "[0-9]+: *.-. "))] |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3975 ["Revert Buffer" speedbar-buffer-revert-buffer |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3976 (save-excursion (beginning-of-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3977 (looking-at "[0-9]+: *.-. "))] |
22735 | 3978 ) |
3979 "Menu item elements shown when displaying a buffer list.") | |
3980 | |
3981 (defun speedbar-buffer-buttons (directory zero) | |
3982 "Create speedbar buttons based on the buffers currently loaded. | |
3983 DIRECTORY is the path to the currently active buffer, and ZERO is 0." | |
3984 (speedbar-buffer-buttons-engine nil)) | |
3985 | |
3986 (defun speedbar-buffer-buttons-temp (directory zero) | |
3987 "Create speedbar buttons based on the buffers currently loaded. | |
3988 DIRECTORY is the path to the currently active buffer, and ZERO is 0." | |
3989 (speedbar-buffer-buttons-engine t)) | |
3990 | |
3991 (defun speedbar-buffer-buttons-engine (temp) | |
3992 "Create speedbar buffer buttons. | |
3993 If TEMP is non-nil, then clicking on a buffer restores the previous display." | |
3994 (insert "Active Buffers:\n") | |
3995 (let ((bl (buffer-list))) | |
3996 (while bl | |
3997 (if (string-match "^[ *]" (buffer-name (car bl))) | |
3998 nil | |
3999 (let* ((known (string-match speedbar-file-regexp | |
4000 (buffer-name (car bl)))) | |
4001 (expchar (if known ?+ ??)) | |
4002 (fn (if known 'speedbar-tag-file nil)) | |
4003 (fname (save-excursion (set-buffer (car bl)) | |
4004 (buffer-file-name)))) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4005 (speedbar-make-tag-line 'bracket expchar fn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4006 (if fname (file-name-nondirectory fname)) |
22735 | 4007 (buffer-name (car bl)) |
4008 'speedbar-buffer-click temp | |
4009 'speedbar-file-face 0))) | |
4010 (setq bl (cdr bl))) | |
4011 (setq bl (buffer-list)) | |
4012 (insert "Scratch Buffers:\n") | |
4013 (while bl | |
4014 (if (not (string-match "^\\*" (buffer-name (car bl)))) | |
4015 nil | |
4016 (if (eq (car bl) speedbar-buffer) | |
4017 nil | |
4018 (speedbar-make-tag-line 'bracket ?? nil nil | |
4019 (buffer-name (car bl)) | |
4020 'speedbar-buffer-click temp | |
4021 'speedbar-file-face 0))) | |
4022 (setq bl (cdr bl))) | |
4023 (setq bl (buffer-list)) | |
4024 (insert "Hidden Buffers:\n") | |
4025 (while bl | |
4026 (if (not (string-match "^ " (buffer-name (car bl)))) | |
4027 nil | |
4028 (if (eq (car bl) speedbar-buffer) | |
4029 nil | |
4030 (speedbar-make-tag-line 'bracket ?? nil nil | |
4031 (buffer-name (car bl)) | |
4032 'speedbar-buffer-click temp | |
4033 'speedbar-file-face 0))) | |
4034 (setq bl (cdr bl))))) | |
4035 | |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
4036 (defun speedbar-buffers-item-info () |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
4037 "Display information about the current buffer on the current line." |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
4038 (or (speedbar-item-info-tag-helper) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
4039 (let* ((item (speedbar-line-text)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
4040 (buffer (if item (get-buffer item) nil))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
4041 (and buffer |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
4042 (speedbar-message "%s%s %S %d %s" |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
4043 (if (buffer-modified-p buffer) "* " "") |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
4044 item |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
4045 (save-excursion (set-buffer buffer) major-mode) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
4046 (save-excursion (set-buffer buffer) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
4047 (buffer-size)) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
4048 (or (buffer-file-name buffer) "<No file>")))))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
4049 |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
4050 (defun speedbar-buffers-line-path (&optional depth) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
4051 "Fetch the full path to the file (buffer) specified on the current line. |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
4052 Optional argument DEPTH specifies the current depth of the back search." |
36047
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4053 (save-excursion |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4054 (end-of-line) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4055 (let ((start (point))) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4056 ;; Buffers are always at level 0 |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4057 (if (not (re-search-backward "^0:" nil t)) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4058 nil |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4059 (let* ((bn (speedbar-line-text)) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4060 (buffer (if bn (get-buffer bn)))) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4061 (if buffer |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4062 (if (save-excursion |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4063 (end-of-line) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4064 (eq start (point))) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4065 (file-name-directory (buffer-file-name buffer)) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
4066 (buffer-file-name buffer)))))))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
4067 |
22735 | 4068 (defun speedbar-buffer-click (text token indent) |
4069 "When the users clicks on a buffer-button in speedbar. | |
4070 TEXT is the buffer's name, TOKEN and INDENT are unused." | |
4071 (if speedbar-power-click | |
4072 (let ((pop-up-frames t)) (select-window (display-buffer text))) | |
4073 (select-frame speedbar-attached-frame) | |
4074 (switch-to-buffer text) | |
4075 (if token (speedbar-change-initial-expansion-list | |
4076 speedbar-previously-used-expansion-list-name)))) | |
4077 | |
4078 (defun speedbar-buffer-kill-buffer () | |
4079 "Kill the buffer the cursor is on in the speedbar buffer." | |
4080 (interactive) | |
4081 (or (save-excursion | |
4082 (beginning-of-line) | |
4083 ;; If this fails, then it is a non-standard click, and as such, | |
4084 ;; perfectly allowed. | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
4085 (if (re-search-forward "[]>?}] [^ ]" |
22735 | 4086 (save-excursion (end-of-line) (point)) |
4087 t) | |
4088 (let ((text (progn | |
4089 (forward-char -1) | |
4090 (buffer-substring (point) (save-excursion | |
4091 (end-of-line) | |
4092 (point)))))) | |
4093 (if (and (get-buffer text) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
4094 (speedbar-y-or-n-p (format "Kill buffer %s? " text))) |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
4095 (kill-buffer text)) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
4096 (speedbar-refresh)))))) |
22735 | 4097 |
4098 (defun speedbar-buffer-revert-buffer () | |
4099 "Revert the buffer the cursor is on in the speedbar buffer." | |
4100 (interactive) | |
4101 (save-excursion | |
4102 (beginning-of-line) | |
4103 ;; If this fails, then it is a non-standard click, and as such, | |
4104 ;; perfectly allowed | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
4105 (if (re-search-forward "[]>?}] [^ ]" |
22735 | 4106 (save-excursion (end-of-line) (point)) |
4107 t) | |
4108 (let ((text (progn | |
4109 (forward-char -1) | |
4110 (buffer-substring (point) (save-excursion | |
4111 (end-of-line) | |
4112 (point)))))) | |
4113 (if (get-buffer text) | |
4114 (progn | |
4115 (set-buffer text) | |
4116 (revert-buffer t))))))) | |
4117 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4118 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4119 ;;; Useful hook values and such. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4120 ;; |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4121 (defvar speedbar-highlight-one-tag-line nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4122 "Overlay used for highlighting the most recently jumped to tag line.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4123 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4124 (defun speedbar-highlight-one-tag-line () |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4125 "Highlight the current line, unhighlighting a previously jumped to line." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4126 (speedbar-unhighlight-one-tag-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4127 (setq speedbar-highlight-one-tag-line |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4128 (speedbar-make-overlay (save-excursion (beginning-of-line) (point)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4129 (save-excursion (end-of-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4130 (forward-char 1) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4131 (point)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4132 (speedbar-overlay-put speedbar-highlight-one-tag-line 'face |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4133 'speedbar-highlight-face) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4134 (add-hook 'pre-command-hook 'speedbar-unhighlight-one-tag-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4135 ) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4136 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4137 (defun speedbar-unhighlight-one-tag-line () |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
4138 "Unhighlight the currently highlighted line." |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4139 (if speedbar-highlight-one-tag-line |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4140 (progn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4141 (speedbar-delete-overlay speedbar-highlight-one-tag-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4142 (setq speedbar-highlight-one-tag-line nil))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4143 (remove-hook 'pre-command-hook 'speedbar-unhighlight-one-tag-line)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4144 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4145 (defun speedbar-recenter-to-top () |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4146 "Recenter the current buffer so POINT is on the top of the window." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4147 (recenter 1)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4148 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4149 (defun speedbar-recenter () |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4150 "Recenter the current buffer so POINT is in the center of the window." |
28925
89a795d90175
(speedbar-recenter): Typo, and fix logic.
Eric M. Ludlam <zappo@gnu.org>
parents:
28902
diff
changeset
|
4151 (recenter (/ (window-height (selected-window)) 2))) |
22735 | 4152 |
4153 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4154 ;;; Color loading section. |
21650 | 4155 ;; |
4156 (defface speedbar-button-face '((((class color) (background light)) | |
4157 (:foreground "green4")) | |
4158 (((class color) (background dark)) | |
4159 (:foreground "green3"))) | |
4160 "Face used for +/- buttons." | |
4161 :group 'speedbar-faces) | |
4162 | |
4163 (defface speedbar-file-face '((((class color) (background light)) | |
4164 (:foreground "cyan4")) | |
4165 (((class color) (background dark)) | |
4166 (:foreground "cyan")) | |
42456
8a4077ab418c
(various face definitions): Use :weight, not :bold.
Richard M. Stallman <rms@gnu.org>
parents:
41576
diff
changeset
|
4167 (t (:weight bold))) |
21650 | 4168 "Face used for file names." |
4169 :group 'speedbar-faces) | |
4170 | |
4171 (defface speedbar-directory-face '((((class color) (background light)) | |
4172 (:foreground "blue4")) | |
4173 (((class color) (background dark)) | |
4174 (:foreground "light blue"))) | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
4175 "Face used for directory names." |
21650 | 4176 :group 'speedbar-faces) |
4177 (defface speedbar-tag-face '((((class color) (background light)) | |
4178 (:foreground "brown")) | |
4179 (((class color) (background dark)) | |
4180 (:foreground "yellow"))) | |
4181 "Face used for displaying tags." | |
4182 :group 'speedbar-faces) | |
4183 | |
4184 (defface speedbar-selected-face '((((class color) (background light)) | |
4185 (:foreground "red" :underline t)) | |
4186 (((class color) (background dark)) | |
4187 (:foreground "red" :underline t)) | |
4188 (t (:underline t))) | |
4189 "Face used to underline the file in the active window." | |
4190 :group 'speedbar-faces) | |
4191 | |
4192 (defface speedbar-highlight-face '((((class color) (background light)) | |
4193 (:background "green")) | |
4194 (((class color) (background dark)) | |
4195 (:background "sea green")) | |
48686
ee68dbd692ce
(speedbar-highlight-face): Fix face spec.
Andreas Schwab <schwab@suse.de>
parents:
48380
diff
changeset
|
4196 (((class grayscale mono) |
21650 | 4197 (background light)) |
4198 (:background "black")) | |
48686
ee68dbd692ce
(speedbar-highlight-face): Fix face spec.
Andreas Schwab <schwab@suse.de>
parents:
48380
diff
changeset
|
4199 (((class grayscale mono) |
21650 | 4200 (background dark)) |
4201 (:background "white"))) | |
4202 "Face used for highlighting buttons with the mouse." | |
4203 :group 'speedbar-faces) | |
4204 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4205 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4206 ;;; Image loading and inlining |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4207 ;; |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4208 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4209 ;;; Some images if defimage is available: |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4210 (eval-when-compile |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4211 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4212 (if (fboundp 'defimage) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4213 (defalias 'defimage-speedbar 'defimage) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4214 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4215 (if (not (fboundp 'make-glyph)) |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48716
diff
changeset
|
4216 |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4217 (defmacro defimage-speedbar (variable imagespec docstring) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4218 "Don't bother loading up an image... |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
4219 Argument VARIABLE is the variable to define. |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4220 Argument IMAGESPEC is the list defining the image to create. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4221 Argument DOCSTRING is the documentation for VARIABLE." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4222 `(defvar ,variable nil ,docstring)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4223 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4224 ;; ELSE |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4225 (defun speedbar-find-image-on-load-path (image) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4226 "Find the image file IMAGE on the load path." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4227 (let ((l load-path) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4228 (r nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4229 (while (and l (not r)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4230 (if (file-exists-p (concat (car l) "/" image)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4231 (setq r (concat (car l) "/" image))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4232 (setq l (cdr l))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4233 r)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4234 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4235 (defun speedbar-convert-emacs21-imagespec-to-xemacs (spec) |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
4236 "Convert the Emacs21 image SPEC into an XEmacs image spec." |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4237 (let* ((sl (car spec)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4238 (itype (nth 1 sl)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4239 (ifile (nth 3 sl))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4240 (vector itype ':file (speedbar-find-image-on-load-path ifile)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4241 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4242 (defmacro defimage-speedbar (variable imagespec docstring) |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
4243 "Define VARIABLE as an image if `defimage' is not available. |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4244 IMAGESPEC is the image data, and DOCSTRING is documentation for the image." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4245 `(defvar ,variable |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4246 ;; The Emacs21 version of defimage looks just like the XEmacs image |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4247 ;; specifier, except that it needs a :type keyword. If we line |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4248 ;; stuff up right, we can use this cheat to support XEmacs specifiers. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4249 (condition-case nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4250 (make-glyph |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4251 (make-image-specifier |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4252 (speedbar-convert-emacs21-imagespec-to-xemacs (quote ,imagespec))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4253 'buffer) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4254 (error nil)) |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
4255 ,docstring))))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4256 |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4257 (defimage-speedbar speedbar-directory-plus |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4258 ((:type xpm :file "sb-dir-plus.xpm" :ascent center)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4259 "Image used for closed directories with stuff in them.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4260 |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4261 (defimage-speedbar speedbar-directory-minus |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4262 ((:type xpm :file "sb-dir-minus.xpm" :ascent center)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4263 "Image used for open directories with stuff in them.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4264 |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
4265 (defimage-speedbar speedbar-directory |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
4266 ((:type xpm :file "sb-dir.xpm" :ascent center)) |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
4267 "Image used for empty or unreadable directories.") |
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
4268 |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4269 (defimage-speedbar speedbar-page-plus |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4270 ((:type xpm :file "sb-pg-plus.xpm" :ascent center)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4271 "Image used for closed files with stuff in them.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4272 |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4273 (defimage-speedbar speedbar-page-minus |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4274 ((:type xpm :file "sb-pg-minus.xpm" :ascent center)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4275 "Image used for open files with stuff in them.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4276 |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4277 (defimage-speedbar speedbar-page |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4278 ((:type xpm :file "sb-pg.xpm" :ascent center)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4279 "Image used for files that can't be opened.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4280 |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4281 (defimage-speedbar speedbar-tag |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4282 ((:type xpm :file "sb-tag.xpm" :ascent center)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4283 "Image used for tags.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4284 |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4285 (defimage-speedbar speedbar-tag-plus |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4286 ((:type xpm :file "sb-tag-plus.xpm" :ascent center)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4287 "Image used for closed tag groups.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4288 |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4289 (defimage-speedbar speedbar-tag-minus |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4290 ((:type xpm :file "sb-tag-minus.xpm" :ascent center)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4291 "Image used for open tag groups.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4292 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4293 (defimage-speedbar speedbar-tag-gt |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4294 ((:type xpm :file "sb-tag-gt.xpm" :ascent center)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4295 "Image used for open tag groups.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4296 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4297 (defimage-speedbar speedbar-tag-v |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4298 ((:type xpm :file "sb-tag-v.xpm" :ascent center)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4299 "Image used for open tag groups.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4300 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4301 (defimage-speedbar speedbar-tag-type |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4302 ((:type xpm :file "sb-tag-type.xpm" :ascent center)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4303 "Image used for open tag groups.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4304 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4305 (defimage-speedbar speedbar-mail |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4306 ((:type xpm :file "sb-mail.xpm" :ascent center)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4307 "Image used for open tag groups.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4308 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4309 (defvar speedbar-expand-image-button-alist |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4310 '(("<+>" . speedbar-directory-plus) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4311 ("<->" . speedbar-directory-minus) |
56647
d21a8e697065
(speedbar-scan-subdirs): New option.
Daniel Pfeiffer <occitan@esperanto.org>
parents:
53487
diff
changeset
|
4312 ("< >" . speedbar-directory) |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4313 ("[+]" . speedbar-page-plus) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4314 ("[-]" . speedbar-page-minus) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4315 ("[?]" . speedbar-page) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4316 ("{+}" . speedbar-tag-plus) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4317 ("{-}" . speedbar-tag-minus) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4318 ("<M>" . speedbar-mail) |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4319 (" =>" . speedbar-tag) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4320 (" +>" . speedbar-tag-gt) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4321 (" ->" . speedbar-tag-v) |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
4322 (">" . speedbar-tag) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4323 ("@" . speedbar-tag-type) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4324 (" @" . speedbar-tag-type) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4325 ) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4326 "List of text and image associations.") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4327 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4328 (defun speedbar-insert-image-button-maybe (start length) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4329 "Insert an image button based on text starting at START for LENGTH chars. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4330 If buttontext is unknown, just insert that text. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4331 If we have an image associated with it, use that image." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4332 (if speedbar-use-images |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4333 (let* ((bt (buffer-substring start (+ length start))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4334 (a (assoc bt speedbar-expand-image-button-alist))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4335 ;; Regular images (created with `insert-image' are intangible |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4336 ;; which (I suppose) make them more compatible with XEmacs 21. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4337 ;; Unfortunatly, there is a giant pile o code dependent on the |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4338 ;; underlying text. This means if we leave it tangible, then I |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4339 ;; don't have to change said giant piles o code. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4340 (if (and a (symbol-value (cdr a))) |
37180
fc838f090bbe
(speedbar-insert-image-button-maybe): Check for `xemacs' feature
Eric M. Ludlam <zappo@gnu.org>
parents:
36047
diff
changeset
|
4341 (if (featurep 'xemacs) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4342 (add-text-properties (+ start (length bt)) start |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4343 (list 'end-glyph (symbol-value (cdr a)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4344 'rear-nonsticky (list 'display) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4345 'invisible t |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4346 'detachable t)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4347 (add-text-properties start (+ start (length bt)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4348 (list 'display (symbol-value (cdr a)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4349 'rear-nonsticky (list 'display)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4350 ;(message "Bad text [%s]" (buffer-substring start (+ start length))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4351 )))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4352 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4353 |
21650 | 4354 ;; some edebug hooks |
4355 (add-hook 'edebug-setup-hook | |
4356 (lambda () | |
4357 (def-edebug-spec speedbar-with-writable def-body))) | |
4358 | |
4359 (provide 'speedbar) | |
4360 | |
4361 ;; run load-time hooks | |
4362 (run-hooks 'speedbar-load-hook) | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38377
diff
changeset
|
4363 |
59751
57b41981928e
Avoid unnecessary use of locate-library.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57786
diff
changeset
|
4364 ;; arch-tag: 4477e6d1-f78c-48b9-a503-387d3c9767d5 |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38377
diff
changeset
|
4365 ;;; speedbar.el ends here |