Mercurial > emacs
annotate lisp/speedbar.el @ 65764:375ab086d366
* image.c (slurp_file, xbm_read_bitmap_data): Cast to the correct
type.
* xterm.c (handle_one_xevent, handle_one_xevent): Likewise.
* unexelf.c (fatal): Fix prototype.
* term.c (fatal): Implement using varargs.
* regex.c (re_char): Move typedef ...
* regex.h (re_char): ... here.
(re_iswctype, re_wctype, re_set_whitespace_regexp): New
prototypes.
* emacs.c (malloc_set_state): Fix return type.
(endif): Fix type.
* lisp.h (fatal): Add argument types.
* dispextern.h (fatal): Delete prototype.
* systime.h: (make_time): Prototype moved from ...
* editfns.c (make_time): ... here.
* editfns.c: Move systime.h include after lisp.h.
* dired.c:
* xsmfns.c:
* process.c: Likewise.
* alloc.c (old_malloc_hook, old_realloc_hook, old_realloc_hook):
Add parameter types.
(__malloc_hook, __realloc_hook, __free_hook): Fix prototypes.
(emacs_blocked_free): Change definition to match __free_hook.
(emacs_blocked_malloc): Change definition to match __malloc_hook.
(emacs_blocked_realloc): Change definition to match
__realloc_hook.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Fri, 30 Sep 2005 22:38:16 +0000 |
parents | 12e5c2513853 |
children | 444ba3362b80 |
rev | line source |
---|---|
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1 ;;; speedbar --- quick access to files and tags in a frame |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3 ;;; Copyright (C) 1996, 97, 98, 99, 00, 01, 02, 03, 04, 05 Free Software Foundation |
22735 | 4 |
5 ;; Author: Eric M. Ludlam <zappo@gnu.org> | |
6 ;; Keywords: file, tags, tools | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
7 ;; X-RCS: $Id: speedbar.el,v 1.247 2005/06/30 02:37:40 zappo Exp $ |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
8 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
9 (defvar speedbar-version "1.0pre3" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
10 "The current version of speedbar.") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
11 (defvar speedbar-incompatible-version "0.14beta4" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
12 "This version of speedbar is incompatible with this version. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
13 Due to massive API changes (removing the use of the word PATH) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
14 this version is not backward compatible to 0.14 or earlier.") |
22735 | 15 |
21650 | 16 ;; This file is part of GNU Emacs. |
22735 | 17 |
21650 | 18 ;; GNU Emacs is free software; you can redistribute it and/or modify |
19 ;; it under the terms of the GNU General Public License as published by | |
20 ;; the Free Software Foundation; either version 2, or (at your option) | |
21 ;; any later version. | |
22735 | 22 |
21650 | 23 ;; GNU Emacs is distributed in the hope that it will be useful, |
24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
26 ;; GNU General Public License for more details. | |
22735 | 27 |
21650 | 28 ;; You should have received a copy of the GNU General Public License |
29 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
30 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
31 ;; Boston, MA 02111-1307, USA. |
21650 | 32 |
33 ;;; Commentary: | |
34 ;; | |
35 ;; The speedbar provides a frame in which files, and locations in | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
36 ;; files are displayed. These items can be clicked on with mouse-2 in |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
37 ;; to display that file location. |
21650 | 38 ;; |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
39 ;;; Customizing and Developing for speedbar |
21650 | 40 ;; |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
41 ;; Please see the speedbar manual for informaion. |
21650 | 42 ;; |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
43 ;;; Notes: |
21650 | 44 ;; |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
45 ;; Users of really old emacsen without the need timer functions |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
46 ;; will not have speedbar updating automatically. Use "g" to refresh |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
47 ;; the display after changing directories. Remember, do not interrupt |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
48 ;; the stealthy updates or your display may not be completely |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
49 ;; refreshed. |
21650 | 50 ;; |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
51 ;; AUC-TEX users: The imenu tags for AUC-TEX mode don't work very |
21650 | 52 ;; well. Use the imenu keywords from tex-mode.el for better results. |
53 ;; | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
54 ;; This file requires the library package assoc (association lists) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
55 ;; assoc should be available in all modern versions of Emacs. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
56 ;; The custom package is optional (for easy configuration of speedbar) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
57 ;; http://www.dina.kvl.dk/~abraham/custom/ |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
58 ;; custom is available in all versions of Emacs version 20 or better. |
22735 | 59 ;; |
21650 | 60 |
61 ;;; TODO: | |
62 ;; - Timeout directories we haven't visited in a while. | |
63 | |
64 (require 'assoc) | |
65 (require 'easymenu) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
66 (require 'dframe) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
67 (require 'sb-image) |
22735 | 68 |
21650 | 69 ;; customization stuff |
70 (defgroup speedbar nil | |
71 "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
|
72 :group 'etags |
21658
d8a81542dbf9
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21650
diff
changeset
|
73 :group 'tools |
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21658
diff
changeset
|
74 :group 'convenience |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
75 ; :version "20.3" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
76 ) |
21650 | 77 |
78 (defgroup speedbar-faces nil | |
79 "Faces used in speedbar." | |
80 :prefix "speedbar-" | |
81 :group 'speedbar | |
82 :group 'faces) | |
83 | |
84 (defgroup speedbar-vc nil | |
85 "Version control display in speedbar." | |
86 :prefix "speedbar-" | |
87 :group 'speedbar) | |
88 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
89 ;;; Code: |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
90 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
91 ;; Note: `inversion-test' requires parts of the CEDET package that are |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
92 ;; not included with Emacs. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
93 ;; |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
94 ;; (defun speedbar-require-version (major minor &optional beta) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
95 ;; "Non-nil if this version of SPEEDBAR does not satisfy a specific version. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
96 ;; Arguments can be: |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
97 ;; |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
98 ;; (MAJOR MINOR &optional BETA) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
99 ;; |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
100 ;; Values MAJOR and MINOR must be integers. BETA can be an integer, or |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
101 ;; excluded if a released version is required. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
102 ;; |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
103 ;; It is assumed that if the current version is newer than that specified, |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
104 ;; everything passes. Exceptions occur when known incompatibilities are |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
105 ;; introduced." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
106 ;; (inversion-test 'speedbar |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
107 ;; (concat major "." minor |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
108 ;; (when beta (concat "beta" beta))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
109 |
22735 | 110 (defvar speedbar-initial-expansion-mode-alist |
111 '(("buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map | |
112 speedbar-buffer-buttons) | |
113 ("quick buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map | |
114 speedbar-buffer-buttons-temp) | |
115 ;; Files last, means first in the Displays menu | |
116 ("files" speedbar-easymenu-definition-special speedbar-file-key-map | |
117 speedbar-directory-buttons speedbar-default-directory-list) | |
118 ) | |
119 "List of named expansion elements for filling the speedbar frame. | |
120 These expansion lists are only valid for regular files. Special modes | |
121 still get to override this list on a mode-by-mode basis. This list of | |
122 lists is of the form (NAME MENU KEYMAP FN1 FN2 ...). NAME is a string | |
123 representing the types of things to be displayed. MENU is an easymenu | |
124 structure used when in this mode. KEYMAP is a local keymap to install | |
125 over the regular speedbar keymap. FN1 ... are functions that will be | |
126 called in order. These functions will always get the default | |
127 directory to use passed in as the first parameter, and a 0 as the | |
128 second parameter. The 0 indicates the uppermost indentation level. | |
129 They must assume that the cursor is at the position where they start | |
130 inserting buttons.") | |
21650 | 131 |
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
|
132 (defvar speedbar-initial-expansion-list-name "files" |
22735 | 133 "A symbol name representing the expansion list to use. |
134 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
|
135 the names and associated functions to use for buttons in speedbar.") |
22735 | 136 |
137 (defvar speedbar-previously-used-expansion-list-name "files" | |
138 "Save the last expansion list method. | |
139 This is used for returning to a previous expansion list method when | |
140 the user is done with the current expansion list.") | |
21650 | 141 |
142 (defvar speedbar-stealthy-function-list | |
22735 | 143 '(("files" |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
144 speedbar-update-current-file |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
145 speedbar-check-read-only |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
146 speedbar-check-vc |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
147 speedbar-check-objects) |
22735 | 148 ) |
21650 | 149 "List of functions to periodically call stealthily. |
22735 | 150 This list is of the form: |
151 '( (\"NAME\" FUNCTION ...) | |
152 ...) | |
153 where NAME is the name of the major display mode these functions are | |
154 for, and the remaining elements FUNCTION are functions to call in order. | |
21650 | 155 Each function must return nil if interrupted, or t if completed. |
156 Stealthy functions which have a single operation should always return | |
157 t. Functions which take a long time should maintain a state (where | |
158 they are in their speedbar related calculations) and permit | |
159 interruption. See `speedbar-check-vc' as a good example.") | |
160 | |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
161 (defvar speedbar-mode-functions-list |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
162 '(("files" (speedbar-item-info . speedbar-files-item-info) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
163 (speedbar-line-directory . speedbar-files-line-directory)) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
164 ("buffers" (speedbar-item-info . speedbar-buffers-item-info) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
165 (speedbar-line-directory . speedbar-buffers-line-directory)) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
166 ("quick buffers" (speedbar-item-info . speedbar-buffers-item-info) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
167 (speedbar-line-directory . speedbar-buffers-line-directory)) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
168 ) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
169 "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
|
170 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
|
171 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
|
172 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
|
173 (\"NAME\" (FUNCTIONSYMBOL . REPLACEMENTFUNCTION) ...) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
174 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
|
175 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
|
176 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
|
177 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
|
178 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
|
179 functionality individually.") |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
180 |
21650 | 181 (defcustom speedbar-mode-specific-contents-flag t |
182 "*Non-nil means speedbar will show special mode contents. | |
183 This permits some modes to create customized contents for the speedbar | |
184 frame." | |
185 :group 'speedbar | |
186 :type 'boolean) | |
187 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
188 (defcustom speedbar-query-confirmation-method 'all |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
189 "*Query control for file operations. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
190 The 'always flag means to always query before file operations. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
191 The 'none-but-delete flag means to not query before any file |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
192 operations, except before a file deletion." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
193 :group 'speedbar |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
194 :type '(radio (const :tag "Always Query before some file operations." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
195 all) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
196 (const :tag "Never Query before file operations, except for deletions." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
197 none-but-delete) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
198 ;;;; (const :tag "Never Every Query." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
199 ;;;; none) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
200 )) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
201 |
21650 | 202 (defvar speedbar-special-mode-expansion-list nil |
22735 | 203 "Default function list for creating specialized button lists. |
204 This list is set by modes that wish to have special speedbar displays. | |
205 The list is of function names. Each function is called with one | |
206 parameter BUFFER, the originating buffer. The current buffer is the | |
207 speedbar buffer.") | |
21650 | 208 |
22735 | 209 (defvar speedbar-special-mode-key-map nil |
210 "Default keymap used when identifying a specialized display mode. | |
211 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
|
212 effective when its display is shown.") |
21650 | 213 |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
214 (defcustom speedbar-before-visiting-file-hook '(push-mark) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
215 "*Hooks run before speedbar visits a file in the selected frame. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
216 The default buffer is the buffer in the selected window in the attached frame." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
217 :group 'speedbar |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
218 :type 'hook) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
219 |
21650 | 220 (defcustom speedbar-visiting-file-hook nil |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
221 "*Hooks run when speedbar visits a file in the selected frame." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
222 :group 'speedbar |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
223 :type 'hook) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
224 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
225 (defcustom speedbar-before-visiting-tag-hook '(push-mark) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
226 "*Hooks run before speedbar visits a tag in the selected frame. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
227 The default buffer is the buffer in the selected window in the attached frame." |
21650 | 228 :group 'speedbar |
229 :type 'hook) | |
230 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
231 (defcustom speedbar-visiting-tag-hook '(speedbar-highlight-one-tag-line) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
232 "*Hooks run when speedbar visits a tag in the selected frame." |
21650 | 233 :group 'speedbar |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
234 :type 'hook |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
235 :options '(speedbar-highlight-one-tag-line |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
236 speedbar-recenter-to-top |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
237 speedbar-recenter |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
238 )) |
21650 | 239 |
240 (defcustom speedbar-load-hook nil | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
241 "*Hooks run when speedbar is loaded." |
21650 | 242 :group 'speedbar |
243 :type 'hook) | |
244 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
245 (defcustom speedbar-reconfigure-keymaps-hook nil |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
246 "*Hooks run when the keymaps are regenerated." |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
247 :group 'speedbar |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
248 :type 'hook) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
249 |
21650 | 250 (defcustom speedbar-show-unknown-files nil |
251 "*Non-nil show files we can't expand with a ? in the expand button. | |
252 nil means don't show the file in the list." | |
253 :group 'speedbar | |
254 :type 'boolean) | |
255 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
256 ;;; EVENTUALLY REMOVE THESE |
21650 | 257 |
22735 | 258 ;; When I moved to a repeating timer, I had the horrible missfortune |
259 ;; of loosing the ability for adaptive speed choice. This update | |
260 ;; speed currently causes long delays when it should have been turned off. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
261 (defvar speedbar-update-speed dframe-update-speed |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
262 "*Obsoleted variable. Use `dframe-update-speed'.") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
263 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
264 (defvar speedbar-navigating-speed dframe-update-speed |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
265 "*Obsoleted variable. Use `dframe-update-speed'.") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
266 ;;; END REMOVE THESE |
21650 | 267 |
268 (defcustom speedbar-frame-parameters '((minibuffer . nil) | |
269 (width . 20) | |
270 (border-width . 0) | |
271 (menu-bar-lines . 0) | |
36047
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
272 (tool-bar-lines . 0) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
273 (unsplittable . t) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
274 (left-fringe . 0) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
275 ) |
21650 | 276 "*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
|
277 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
|
278 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
|
279 attached to and added to this list before the new frame is initialized." |
21650 | 280 :group 'speedbar |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
281 :type '(repeat (sexp :tag "Parameter:"))) |
21650 | 282 |
283 ;; These values by Hrvoje Niksic <hniksic@srce.hr> | |
284 (defcustom speedbar-frame-plist | |
285 '(minibuffer nil width 20 border-width 0 | |
286 internal-border-width 0 unsplittable t | |
287 default-toolbar-visible-p nil has-modeline-p nil | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
288 menubar-visible-p nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
289 default-gutter-visible-p nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
290 ) |
21650 | 291 "*Parameters to use when creating the speedbar frame in XEmacs. |
292 Parameters not listed here which will be added automatically are | |
293 `height' which will be initialized to the height of the frame speedbar | |
294 is attached to." | |
295 :group 'speedbar | |
296 :type '(repeat (group :inline t | |
297 (symbol :tag "Property") | |
298 (sexp :tag "Value")))) | |
299 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
300 (defcustom speedbar-use-imenu-flag (stringp (locate-library "imenu")) |
21650 | 301 "*Non-nil means use imenu for file parsing. nil to use etags. |
302 XEmacs prior to 20.4 doesn't support imenu, therefore the default is to | |
303 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
|
304 :tag "Use Imenu for tags" |
21650 | 305 :group 'speedbar |
306 :type 'boolean) | |
307 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
308 (defvar speedbar-dynamic-tags-function-list |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
309 '((speedbar-fetch-dynamic-imenu . speedbar-insert-imenu-list) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
310 (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
|
311 "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
|
312 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
|
313 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
|
314 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
|
315 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
|
316 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
|
317 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
|
318 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
|
319 |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
320 (defcustom speedbar-use-tool-tips-flag (and (not (featurep 'xemacs)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
321 (>= emacs-major-version 21)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
322 "*Non-nil means to use tool tips if they are avaialble. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
323 When tooltips are not available, mouse-tracking and minibuffer |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
324 display is used instead." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
325 :group 'speedbar |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
326 :type 'boolean) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
327 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
328 (defcustom speedbar-track-mouse-flag (not speedbar-use-tool-tips-flag) |
22735 | 329 "*Non-nil means to display info about the line under the mouse." |
330 :group 'speedbar | |
331 :type 'boolean) | |
332 | |
21650 | 333 (defcustom speedbar-sort-tags nil |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
334 "*If non-nil, sort tags in the speedbar display. *Obsolete*. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
335 Use `semantic-tag-hierarchy-method' instead." |
21650 | 336 :group 'speedbar |
337 :type 'boolean) | |
338 | |
22735 | 339 (defcustom speedbar-tag-hierarchy-method |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
340 '(speedbar-prefix-group-tag-hierarchy |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
341 speedbar-trim-words-tag-hierarchy) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
342 "*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
|
343 Groups are defined as expandable meta-tags. Imenu supports |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
344 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
|
345 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
|
346 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
|
347 form: |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
348 (ELT1 ELT2 ... ELTn) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
349 where each ELT is of the form |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
350 (TAG-NAME-STRING . NUMBER-OR-MARKER) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
351 or |
46286
6117ca314143
(speedbar-tag-hierarchy-method): Fix typos.
Juanma Barranquero <lekktu@gmail.com>
parents:
46282
diff
changeset
|
352 (GROUP-NAME-STRING ELT1 ELT2... ELTn)" |
22735 | 353 :group 'speedbar |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
354 :type 'hook |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
355 :options '(speedbar-prefix-group-tag-hierarchy |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
356 speedbar-trim-words-tag-hierarchy |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
357 speedbar-simple-group-tag-hierarchy |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
358 speedbar-sort-tag-hierarchy) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
359 ) |
22735 | 360 |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
361 (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
|
362 "*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
|
363 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
|
364 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
|
365 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
|
366 worda to wordb |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
367 instead of just |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
368 word |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
369 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
|
370 :group 'speedbar |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
371 :type 'integer) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
372 |
22735 | 373 (defcustom speedbar-tag-split-minimum-length 20 |
374 "*Minimum length before we stop trying to create sub-lists in tags. | |
375 This is used by all tag-hierarchy methods that break large lists into | |
376 sub-lists." | |
377 :group 'speedbar | |
378 :type 'integer) | |
379 | |
380 (defcustom speedbar-tag-regroup-maximum-length 10 | |
381 "*Maximum length of submenus that are regrouped. | |
382 If the regrouping option is used, then if two or more short subgroups | |
383 are next to each other, then they are combined until this number of | |
384 items is reached." | |
385 :group 'speedbar | |
386 :type 'integer) | |
387 | |
21650 | 388 (defcustom speedbar-directory-button-trim-method 'span |
389 "*Indicates how the directory button will be displayed. | |
390 Possible values are: | |
391 'span - span large directories over multiple lines. | |
392 'trim - trim large directories to only show the last few. | |
393 nil - no trimming." | |
394 :group 'speedbar | |
395 :type '(radio (const :tag "Span large directories over mutiple lines." | |
396 span) | |
397 (const :tag "Trim large directories to only show the last few." | |
398 trim) | |
399 (const :tag "No trimming." nil))) | |
400 | |
401 (defcustom speedbar-smart-directory-expand-flag t | |
402 "*Non-nil means speedbar should use smart expansion. | |
403 Smart expansion only affects when speedbar wants to display a | |
404 directory for a file in the attached frame. When smart expansion is | |
405 enabled, new directories which are children of a displayed directory | |
406 are expanded in the current framework. If nil, then the current | |
407 hierarchy would be replaced with the new directory." | |
408 :group 'speedbar | |
409 :type 'boolean) | |
410 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
411 (defcustom speedbar-indentation-width 1 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
412 "*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
|
413 :group 'speedbar |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
414 :type 'integer) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
415 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
416 (defcustom speedbar-hide-button-brackets-flag nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
417 "*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
|
418 :group 'speedbar |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
419 :type 'boolean) |
22735 | 420 |
21650 | 421 (defcustom speedbar-before-popup-hook nil |
422 "*Hooks called before popping up the speedbar frame." | |
423 :group 'speedbar | |
424 :type 'hook) | |
425 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
426 (defcustom speedbar-after-create-hook '(speedbar-frame-reposition-smartly) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
427 "*Hooks called before popping up the speedbar frame." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
428 :group 'speedbar |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
429 :type 'hook) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
430 |
21650 | 431 (defcustom speedbar-before-delete-hook nil |
432 "*Hooks called before deleting the speedbar frame." | |
433 :group 'speedbar | |
434 :type 'hook) | |
435 | |
436 (defcustom speedbar-mode-hook nil | |
437 "*Hooks called after creating a speedbar buffer." | |
438 :group 'speedbar | |
439 :type 'hook) | |
440 | |
441 (defcustom speedbar-timer-hook nil | |
442 "*Hooks called after running the speedbar timer function." | |
443 :group 'speedbar | |
444 :type 'hook) | |
445 | |
446 (defcustom speedbar-verbosity-level 1 | |
447 "*Verbosity level of the speedbar. 0 means say nothing. | |
448 1 means medium level verbosity. 2 and higher are higher levels of | |
449 verbosity." | |
450 :group 'speedbar | |
451 :type 'integer) | |
452 | |
22735 | 453 (defvar speedbar-indicator-separator " " |
454 "String separating file text from indicator characters.") | |
455 | |
21650 | 456 (defcustom speedbar-vc-do-check t |
457 "*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
|
458 Any file checked out is marked with `speedbar-vc-indicator'." |
21650 | 459 :group 'speedbar-vc |
460 :type 'boolean) | |
461 | |
22735 | 462 (defvar speedbar-vc-indicator "*" |
21650 | 463 "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
|
464 Other version control systems can be added by examining the function |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
465 `speedbar-vc-directory-enable-hook' and `speedbar-vc-in-control-hook'.") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
466 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
467 (defcustom speedbar-vc-directory-enable-hook nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
468 "*Return non-nil if the current directory should be checked for Version Control. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
469 Functions in this hook must accept one parameter which is the directory |
21650 | 470 being checked." |
471 :group 'speedbar-vc | |
472 :type 'hook) | |
473 | |
474 (defcustom speedbar-vc-in-control-hook nil | |
475 "*Return non-nil if the specified file is under Version Control. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
476 Functions in this hook must accept two parameters. The DIRECTORY of the |
21650 | 477 current file, and the FILENAME of the file being checked." |
478 :group 'speedbar-vc | |
479 :type 'hook) | |
480 | |
481 (defvar speedbar-vc-to-do-point nil | |
482 "Local variable maintaining the current version control check position.") | |
483 | |
22735 | 484 (defcustom speedbar-obj-do-check t |
485 "*Non-nil check all files in speedbar to see if they have an object file. | |
486 Any file checked out is marked with `speedbar-obj-indicator', and the | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
487 marking is based on `speedbar-obj-alist'" |
22735 | 488 :group 'speedbar-vc |
489 :type 'boolean) | |
490 | |
491 (defvar speedbar-obj-to-do-point nil | |
492 "Local variable maintaining the current version control check position.") | |
493 | |
494 (defvar speedbar-obj-indicator '("#" . "!") | |
495 "Text used to mark files that have a corresponding hidden object file. | |
496 The car is for an up-to-date object. The cdr is for an out of date object. | |
497 The expression `speedbar-obj-alist' defines who gets tagged.") | |
498 | |
499 (defvar speedbar-obj-alist | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
500 '(("\\.\\([cpC]\\|cpp\\|cc\\|cxx\\)$" . ".o") |
22735 | 501 ("\\.el$" . ".elc") |
502 ("\\.java$" . ".class") | |
503 ("\\.f\\(or\\|90\\|77\\)?$" . ".o") | |
504 ("\\.tex$" . ".dvi") | |
505 ("\\.texi$" . ".info")) | |
506 "Alist of file extensions, and their corresponding object file type.") | |
507 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
508 (defvar speedbar-ro-to-do-point nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
509 "Local variable maintaining the current read only check position.") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
510 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
511 (defvar speedbar-object-read-only-indicator "%" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
512 "Indicator to append onto a line if that item is Read Only.") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
513 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
514 ;; Note: Look for addition place to add indicator lists that |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
515 ;; use skip-chars instead of a regular expression. |
22735 | 516 (defvar speedbar-indicator-regex |
517 (concat (regexp-quote speedbar-indicator-separator) | |
518 "\\(" | |
519 (regexp-quote speedbar-vc-indicator) | |
520 "\\|" | |
521 (regexp-quote (car speedbar-obj-indicator)) | |
522 "\\|" | |
523 (regexp-quote (cdr speedbar-obj-indicator)) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
524 "\\|" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
525 (regexp-quote speedbar-object-read-only-indicator) |
22735 | 526 "\\)*") |
527 "Regular expression used when identifying files. | |
528 Permits stripping of indicator characters from a line.") | |
529 | |
530 (defcustom speedbar-scanner-reset-hook nil | |
531 "*Hook called whenever generic scanners are reset. | |
532 Set this to implement your own scanning / rescan safe functions with | |
533 state data." | |
534 :group 'speedbar | |
535 :type 'hook) | |
536 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
537 (defvar speedbar-ignored-modes '(fundamental-mode) |
21650 | 538 "*List of major modes which speedbar will not switch directories for.") |
539 | |
540 (defun speedbar-extension-list-to-regex (extlist) | |
541 "Takes EXTLIST, a list of extensions and transforms it into regexp. | |
22735 | 542 All the preceding `.' are stripped for an optimized expression starting |
543 with `.' followed by extensions, followed by full-filenames." | |
21650 | 544 (let ((regex1 nil) (regex2 nil)) |
545 (while extlist | |
546 (if (= (string-to-char (car extlist)) ?.) | |
547 (setq regex1 (concat regex1 (if regex1 "\\|" "") | |
548 (substring (car extlist) 1))) | |
549 (setq regex2 (concat regex2 (if regex2 "\\|" "") (car extlist)))) | |
550 (setq extlist (cdr extlist))) | |
551 ;; concat all the sub-exressions together, making sure all types | |
552 ;; of parts exist during concatination. | |
553 (concat "\\(" | |
554 (if regex1 (concat "\\(\\.\\(" regex1 "\\)\\)") "") | |
555 (if (and regex1 regex2) "\\|" "") | |
556 (if regex2 (concat "\\(" regex2 "\\)") "") | |
557 "\\)$"))) | |
558 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
559 (defvar speedbar-ignored-directory-regexp nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
560 "Regular expression matching directorys speedbar will not switch to. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
561 Created from `speedbar-ignored-directory-expressions' with the function |
21650 | 562 `speedbar-extension-list-to-regex' (A misnamed function in this case.) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
563 Use the function `speedbar-add-ignored-directory-regexp', or customize the |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
564 variable `speedbar-ignored-directory-expressions' to modify this variable.") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
565 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
566 (defcustom speedbar-ignored-directory-expressions |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
567 '("[/\\]logs?[/\\]\\'") |
21650 | 568 "*List of regular expressions matching directories speedbar will ignore. |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
569 They should included directorys to directories which are notoriously very |
21650 | 570 large and take a long time to load in. Use the function |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
571 `speedbar-add-ignored-directory-regexp' to add new items to this list after |
21650 | 572 speedbar is loaded. You may place anything you like in this list |
573 before speedbar has been loaded." | |
574 :group 'speedbar | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
575 :type '(repeat (regexp :tag "Directory Regexp")) |
21650 | 576 :set (lambda (sym val) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
577 (setq speedbar-ignored-directory-expressions val |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
578 speedbar-ignored-directory-regexp |
21650 | 579 (speedbar-extension-list-to-regex val)))) |
580 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
581 (defcustom speedbar-directory-unshown-regexp "^\\(CVS\\|RCS\\|SCCS\\|\\..*\\)\\'" |
22735 | 582 "*Regular expression matching directories not to show in speedbar. |
583 They should include commonly existing directories which are not | |
584 useful, such as version control." | |
585 :group 'speedbar | |
586 :type 'string) | |
587 | |
21650 | 588 (defvar speedbar-file-unshown-regexp |
589 (let ((nstr "") (noext completion-ignored-extensions)) | |
590 (while noext | |
591 (setq nstr (concat nstr (regexp-quote (car noext)) "\\'" | |
592 (if (cdr noext) "\\|" "")) | |
593 noext (cdr noext))) | |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
594 ;; backup refdir lockfile |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
595 (concat nstr "\\|#[^#]+#$\\|\\.\\.?\\'\\|\\.#")) |
21650 | 596 "*Regexp matching files we don't want displayed in a speedbar buffer. |
597 It is generated from the variable `completion-ignored-extensions'") | |
598 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
599 (defvar speedbar-file-regexp nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
600 "Regular expression matching files we know how to expand. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
601 Created from `speedbar-supported-extension-expressions' with the |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
602 function `speedbar-extension-list-to-regex'") |
56762
85c0c238dbbf
(speedbar-file-regexp): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents:
56754
diff
changeset
|
603 |
21650 | 604 ;; this is dangerous to customize, because the defaults will probably |
605 ;; change in the future. | |
606 (defcustom speedbar-supported-extension-expressions | |
22735 | 607 (append '(".[ch]\\(\\+\\+\\|pp\\|c\\|h\\|xx\\)?" ".tex\\(i\\(nfo\\)?\\)?" |
608 ".el" ".emacs" ".l" ".lsp" ".p" ".java" ".f\\(90\\|77\\|or\\)?") | |
21650 | 609 (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
|
610 '(".ada" ".p[lm]" ".tcl" ".m" ".scm" ".pm" ".py" ".g" |
22735 | 611 ;; html is not supported by default, but an imenu tags package |
612 ;; is available. Also, html files are nice to be able to see. | |
613 ".s?html" | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
614 ".ma?k" "[Mm]akefile\\(\\.in\\)?"))) |
21650 | 615 "*List of regular expressions which will match files supported by tagging. |
616 Do not prefix the `.' char with a double \\ to quote it, as the period | |
617 will be stripped by a simplified optimizer when compiled into a | |
618 singular expression. This variable will be turned into | |
619 `speedbar-file-regexp' for use with speedbar. You should use the | |
620 function `speedbar-add-supported-extension' to add a new extension at | |
621 runtime, or use the configuration dialog to set it in your .emacs | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
622 file. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
623 If you add an extension to this list, and it does not appear, you may |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
624 need to also modify `completion-ignored-extension' which will also help |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
625 file completion." |
21650 | 626 :group 'speedbar |
627 :type '(repeat (regexp :tag "Extension Regexp")) | |
628 :set (lambda (sym val) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
629 (set 'speedbar-supported-extension-expressions val) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
630 (set 'speedbar-file-regexp (speedbar-extension-list-to-regex val)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
631 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
632 (setq speedbar-file-regexp |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
633 (speedbar-extension-list-to-regex speedbar-supported-extension-expressions)) |
21650 | 634 |
635 (defun speedbar-add-supported-extension (extension) | |
636 "Add EXTENSION as a new supported extension for speedbar tagging. | |
637 This should start with a `.' if it is not a complete file name, and | |
638 the dot should NOT be quoted in with \\. Other regular expression | |
639 matchers are allowed however. EXTENSION may be a single string or a | |
640 list of strings." | |
44578
9c2b72b4b303
(speedbar-generic-item-info)
Pavel Janík <Pavel@Janik.cz>
parents:
44225
diff
changeset
|
641 (interactive "sExtension: ") |
21650 | 642 (if (not (listp extension)) (setq extension (list extension))) |
643 (while extension | |
644 (if (member (car extension) speedbar-supported-extension-expressions) | |
645 nil | |
646 (setq speedbar-supported-extension-expressions | |
647 (cons (car extension) speedbar-supported-extension-expressions))) | |
648 (setq extension (cdr extension))) | |
649 (setq speedbar-file-regexp (speedbar-extension-list-to-regex | |
650 speedbar-supported-extension-expressions))) | |
651 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
652 (defun speedbar-add-ignored-directory-regexp (directory-expression) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
653 "Add DIRECTORY-EXPRESSION as a new ignored directory for speedbar tracking. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
654 This function will modify `speedbar-ignored-directory-regexp' and add |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
655 DIRECTORY-EXPRESSION to `speedbar-ignored-directory-expressions'." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
656 (interactive "sDirectory regex: ") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
657 (if (not (listp directory-expression)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
658 (setq directory-expression (list directory-expression))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
659 (while directory-expression |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
660 (if (member (car directory-expression) speedbar-ignored-directory-expressions) |
21650 | 661 nil |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
662 (setq speedbar-ignored-directory-expressions |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
663 (cons (car directory-expression) speedbar-ignored-directory-expressions))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
664 (setq directory-expression (cdr directory-expression))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
665 (setq speedbar-ignored-directory-regexp (speedbar-extension-list-to-regex |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
666 speedbar-ignored-directory-expressions))) |
21650 | 667 |
668 ;; If we don't have custom, then we set it here by hand. | |
669 (if (not (fboundp 'custom-declare-variable)) | |
670 (setq speedbar-file-regexp (speedbar-extension-list-to-regex | |
671 speedbar-supported-extension-expressions) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
672 speedbar-ignored-directory-regexp (speedbar-extension-list-to-regex |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
673 speedbar-ignored-directory-expressions))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
674 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
675 (defvar speedbar-update-flag dframe-have-timer-flag |
21650 | 676 "*Non-nil means to automatically update the display. |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
677 When this is nil then speedbar will not follow the attached frame's directory. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
678 When speedbar is active, use: |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
679 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
680 \\<speedbar-key-map> `\\[speedbar-toggle-updates]' |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
681 |
21650 | 682 to toggle this value.") |
683 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
684 (defvar speedbar-update-flag-disable nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
685 "Permanently disable changing of the update flag.") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
686 |
21650 | 687 (defvar speedbar-syntax-table nil |
688 "Syntax-table used on the speedbar.") | |
689 | |
690 (if speedbar-syntax-table | |
691 nil | |
692 (setq speedbar-syntax-table (make-syntax-table)) | |
693 ;; turn off paren matching around here. | |
694 (modify-syntax-entry ?\' " " speedbar-syntax-table) | |
695 (modify-syntax-entry ?\" " " speedbar-syntax-table) | |
696 (modify-syntax-entry ?( " " speedbar-syntax-table) | |
697 (modify-syntax-entry ?) " " speedbar-syntax-table) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
698 (modify-syntax-entry ?{ " " speedbar-syntax-table) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
699 (modify-syntax-entry ?} " " speedbar-syntax-table) |
21650 | 700 (modify-syntax-entry ?[ " " speedbar-syntax-table) |
701 (modify-syntax-entry ?] " " speedbar-syntax-table)) | |
702 | |
703 (defvar speedbar-key-map nil | |
704 "Keymap used in speedbar buffer.") | |
705 | |
706 (if speedbar-key-map | |
707 nil | |
708 (setq speedbar-key-map (make-keymap)) | |
709 (suppress-keymap speedbar-key-map t) | |
710 | |
711 ;; control | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
712 (define-key speedbar-key-map "t" 'speedbar-toggle-updates) |
21650 | 713 (define-key speedbar-key-map "g" 'speedbar-refresh) |
714 | |
715 ;; navigation | |
716 (define-key speedbar-key-map "n" 'speedbar-next) | |
717 (define-key speedbar-key-map "p" 'speedbar-prev) | |
22735 | 718 (define-key speedbar-key-map "\M-n" 'speedbar-restricted-next) |
719 (define-key speedbar-key-map "\M-p" 'speedbar-restricted-prev) | |
720 (define-key speedbar-key-map "\C-\M-n" 'speedbar-forward-list) | |
721 (define-key speedbar-key-map "\C-\M-p" 'speedbar-backward-list) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
722 ;; These commands never seemed useful. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
723 ;; (define-key speedbar-key-map " " 'speedbar-scroll-up) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
724 ;; (define-key speedbar-key-map [delete] 'speedbar-scroll-down) |
21650 | 725 |
22735 | 726 ;; Short cuts I happen to find useful |
727 (define-key speedbar-key-map "r" | |
728 (lambda () (interactive) | |
729 (speedbar-change-initial-expansion-list | |
730 speedbar-previously-used-expansion-list-name))) | |
731 (define-key speedbar-key-map "b" | |
732 (lambda () (interactive) | |
733 (speedbar-change-initial-expansion-list "quick buffers"))) | |
734 (define-key speedbar-key-map "f" | |
735 (lambda () (interactive) | |
736 (speedbar-change-initial-expansion-list "files"))) | |
737 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
738 (dframe-update-keymap speedbar-key-map) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
739 ) |
22735 | 740 |
741 (defun speedbar-make-specialized-keymap () | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
742 "Create a keymap for use with a speedbar major or minor display mode. |
22735 | 743 This basically creates a sparse keymap, and makes it's parent be |
744 `speedbar-key-map'." | |
745 (let ((k (make-sparse-keymap))) | |
746 (set-keymap-parent k speedbar-key-map) | |
747 k)) | |
748 | |
749 (defvar speedbar-file-key-map nil | |
750 "Keymap used in speedbar buffer while files are displayed.") | |
751 | |
752 (if speedbar-file-key-map | |
753 nil | |
754 (setq speedbar-file-key-map (speedbar-make-specialized-keymap)) | |
755 | |
756 ;; Basic tree features | |
757 (define-key speedbar-file-key-map "e" 'speedbar-edit-line) | |
758 (define-key speedbar-file-key-map "\C-m" 'speedbar-edit-line) | |
759 (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
|
760 (define-key speedbar-file-key-map "=" 'speedbar-expand-line) |
22735 | 761 (define-key speedbar-file-key-map "-" 'speedbar-contract-line) |
762 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
763 (define-key speedbar-file-key-map "[" 'speedbar-expand-line-descendants) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
764 (define-key speedbar-file-key-map "]" 'speedbar-close-line-descendants) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
765 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
766 (define-key speedbar-file-key-map " " 'speedbar-toggle-line-expansion) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
767 |
22735 | 768 ;; file based commands |
769 (define-key speedbar-file-key-map "U" 'speedbar-up-directory) | |
770 (define-key speedbar-file-key-map "I" 'speedbar-item-info) | |
771 (define-key speedbar-file-key-map "B" 'speedbar-item-byte-compile) | |
772 (define-key speedbar-file-key-map "L" 'speedbar-item-load) | |
773 (define-key speedbar-file-key-map "C" 'speedbar-item-copy) | |
774 (define-key speedbar-file-key-map "D" 'speedbar-item-delete) | |
775 (define-key speedbar-file-key-map "O" 'speedbar-item-object-delete) | |
776 (define-key speedbar-file-key-map "R" 'speedbar-item-rename) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
777 (define-key speedbar-file-key-map "M" 'speedbar-create-directory) |
22735 | 778 ) |
21650 | 779 |
780 (defvar speedbar-easymenu-definition-base | |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
781 (append |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
782 '("Speedbar" |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
783 ["Update" speedbar-refresh t] |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
784 ["Auto Update" speedbar-toggle-updates |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
785 :active (not speedbar-update-flag-disable) |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
786 :style toggle :selected speedbar-update-flag]) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
787 (if (and (or (fboundp 'defimage) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
788 (fboundp 'make-image-specifier)) |
29260
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
789 (if (fboundp 'display-graphic-p) |
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
790 (display-graphic-p) |
7f1b3013a136
(speedbar-use-images, speedbar-update-flag)
Eli Zaretskii <eliz@gnu.org>
parents:
29130
diff
changeset
|
791 window-system)) |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
792 (list |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
793 ["Use Images" speedbar-toggle-images |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
794 :style toggle :selected speedbar-use-images])) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
795 ) |
21650 | 796 "Base part of the speedbar menu.") |
797 | |
798 (defvar speedbar-easymenu-definition-special | |
799 '(["Edit Item On Line" speedbar-edit-line t] | |
800 ["Show All Files" speedbar-toggle-show-all-files | |
801 :style toggle :selected speedbar-show-unknown-files] | |
22735 | 802 ["Expand File Tags" speedbar-expand-line |
21650 | 803 (save-excursion (beginning-of-line) |
804 (looking-at "[0-9]+: *.\\+. "))] | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
805 ["Flush Cache & Expand" speedbar-flush-expand-line |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
806 (save-excursion (beginning-of-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
807 (looking-at "[0-9]+: *.\\+. "))] |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
808 ["Expand All Descendants" speedbar-expand-line-descendants |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
809 (save-excursion (beginning-of-line) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
810 (looking-at "[0-9]+: *.\\+. ")) ] |
22735 | 811 ["Contract File Tags" speedbar-contract-line |
21650 | 812 (save-excursion (beginning-of-line) |
813 (looking-at "[0-9]+: *.-. "))] | |
22735 | 814 ; ["Sort Tags" speedbar-toggle-sorting |
815 ; :style toggle :selected speedbar-sort-tags] | |
21650 | 816 "----" |
22735 | 817 ["File/Tag Information" speedbar-item-info t] |
21650 | 818 ["Load Lisp File" speedbar-item-load |
819 (save-excursion | |
820 (beginning-of-line) | |
22735 | 821 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))] |
21650 | 822 ["Byte Compile File" speedbar-item-byte-compile |
823 (save-excursion | |
824 (beginning-of-line) | |
22735 | 825 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))] |
826 ["Copy File" speedbar-item-copy | |
21650 | 827 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *\\["))] |
22735 | 828 ["Rename File" speedbar-item-rename |
829 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))] | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
830 ["Create Directory" speedbar-create-directory |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
831 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))] |
22735 | 832 ["Delete File" speedbar-item-delete |
21650 | 833 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))] |
22735 | 834 ["Delete Object" speedbar-item-object-delete |
835 (save-excursion (beginning-of-line) | |
836 (looking-at "[0-9]+: *\\[[+-]\\] [^ \n]+ \\*?[!#]$"))] | |
837 ) | |
21650 | 838 "Additional menu items while in file-mode.") |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
839 |
21650 | 840 (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
|
841 (append |
22735 | 842 (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
|
843 (list ["Customize..." speedbar-customize t])) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
844 (list |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
845 ["Detach" speedbar-detach (and speedbar-frame |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
846 (eq (selected-frame) speedbar-frame)) ] |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
847 ["Close" dframe-close-frame t] |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
848 ["Quit" delete-frame t] )) |
21650 | 849 "Menu items appearing at the end of the speedbar menu.") |
850 | |
851 (defvar speedbar-desired-buffer nil | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
852 "Non-nil when speedbar is showing buttons specific to a special mode. |
21650 | 853 In this case it is the originating buffer.") |
854 (defvar speedbar-buffer nil | |
855 "The buffer displaying the speedbar.") | |
856 (defvar speedbar-frame nil | |
857 "The frame displaying speedbar.") | |
858 (defvar speedbar-cached-frame nil | |
859 "The frame that was last created, then removed from the display.") | |
860 (defvar speedbar-full-text-cache nil | |
861 "The last open directory is saved in its entirety for ultra-fast switching.") | |
862 | |
863 (defvar speedbar-last-selected-file nil | |
864 "The last file which was selected in speedbar buffer.") | |
865 | |
866 (defvar speedbar-shown-directories nil | |
867 "Maintain list of directories simultaneously open in the current speedbar.") | |
868 | |
869 (defvar speedbar-directory-contents-alist nil | |
870 "An association list of directories and their contents. | |
871 Each sublist was returned by `speedbar-file-lists'. This list is | |
872 maintained to speed up the refresh rate when switching between | |
873 directories.") | |
874 | |
875 (defvar speedbar-power-click nil | |
876 "Never set this by hand. Value is t when S-mouse activity occurs.") | |
877 | |
878 | |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
879 ;;; Compatibility |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
880 ;; |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
881 (defalias 'speedbar-make-overlay |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
882 (if (featurep 'xemacs) 'make-extent 'make-overlay)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
883 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
884 (defalias 'speedbar-overlay-put |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
885 (if (featurep 'xemacs) 'set-extent-property 'overlay-put)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
886 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
887 (defalias 'speedbar-delete-overlay |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
888 (if (featurep 'xemacs) 'delete-extent 'delete-overlay)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
889 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
890 (defalias 'speedbar-mode-line-update |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
891 (if (featurep 'xemacs) 'redraw-modeline 'force-mode-line-update)) |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
892 |
21650 | 893 ;;; Mode definitions/ user commands |
894 ;; | |
895 | |
896 ;;;###autoload | |
897 (defalias 'speedbar 'speedbar-frame-mode) | |
898 ;;;###autoload | |
899 (defun speedbar-frame-mode (&optional arg) | |
900 "Enable or disable speedbar. Positive ARG means turn on, negative turn off. | |
901 nil means toggle. Once the speedbar frame is activated, a buffer in | |
902 `speedbar-mode' will be displayed. Currently, only one speedbar is | |
903 supported at a time. | |
904 `speedbar-before-popup-hook' is called before popping up the speedbar frame. | |
905 `speedbar-before-delete-hook' is called before the frame is deleted." | |
906 (interactive "P") | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
907 ;; Get the buffer to play with |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
908 (if (not (buffer-live-p speedbar-buffer)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
909 (save-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
910 (setq speedbar-buffer (get-buffer-create " SPEEDBAR")) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
911 (set-buffer speedbar-buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
912 (speedbar-mode))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
913 ;; Do the frame thing |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
914 (dframe-frame-mode arg |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
915 'speedbar-frame |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
916 'speedbar-cached-frame |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
917 'speedbar-buffer |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
918 "Speedbar" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
919 #'speedbar-frame-mode |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
920 (if dframe-xemacsp |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
921 (append speedbar-frame-plist |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
922 ;; This is a hack to get speedbar to iconfiy |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
923 ;; with the selected frame. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
924 (list 'parent (selected-frame))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
925 speedbar-frame-parameters) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
926 speedbar-before-delete-hook |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
927 speedbar-before-popup-hook |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
928 speedbar-after-create-hook) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
929 ;; Start up the timer |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
930 (if (not speedbar-frame) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
931 (speedbar-set-timer nil) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
932 (speedbar-reconfigure-keymaps) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
933 (speedbar-update-contents) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
934 (speedbar-set-timer dframe-update-speed) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
935 ) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
936 ;; Frame modifications |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
937 (set (make-local-variable 'dframe-delete-frame-function) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
938 'speedbar-handle-delete-frame) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
939 ;; hscroll |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
940 (set (make-local-variable 'automatic-hscrolling) nil) ; Emacs 21 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
941 ;; reset the selection variable |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
942 (setq speedbar-last-selected-file nil)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
943 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
944 (defun speedbar-frame-reposition-smartly () |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
945 "Reposition the speedbar frame to be next to the attached frame." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
946 (cond ((and dframe-xemacsp |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
947 (or (member 'left speedbar-frame-plist) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
948 (member 'top speedbar-frame-plist))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
949 (dframe-reposition-frame |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
950 speedbar-frame |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
951 (dframe-attached-frame speedbar-frame) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
952 (cons (car (cdr (member 'left speedbar-frame-plist))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
953 (car (cdr (member 'top speedbar-frame-plist))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
954 ) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
955 ((and (not dframe-xemacsp) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
956 (or (assoc 'left speedbar-frame-parameters) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
957 (assoc 'top speedbar-frame-parameters))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
958 ;; if left/top were specified in the parameters, pass them |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
959 ;; down to the reposition function |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
960 (dframe-reposition-frame |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
961 speedbar-frame |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
962 (dframe-attached-frame speedbar-frame) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
963 (cons (cdr (assoc 'left speedbar-frame-parameters)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
964 (cdr (assoc 'top speedbar-frame-parameters)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
965 ) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
966 (t |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
967 (dframe-reposition-frame speedbar-frame |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
968 (dframe-attached-frame speedbar-frame) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
969 'left-right)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
970 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
971 (defun speedbar-detach () |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
972 "Detach the current Speedbar from auto-updating. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
973 Doing this allows the creation of a second speedbar." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
974 (interactive) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
975 (let ((buffer speedbar-buffer)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
976 (dframe-detach 'speedbar-frame 'speedbar-cached-frame 'speedbar-buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
977 (save-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
978 (set-buffer buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
979 ;; Permanently disable auto-updating in this speedbar buffer. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
980 (set (make-local-variable 'speedbar-update-flag) nil) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
981 (set (make-local-variable 'speedbar-update-flag-disable) t) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
982 ;; Make local copies of all the different variables to prevent |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
983 ;; funny stuff later... |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
984 ))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
985 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
986 (defsubst speedbar-current-frame () |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
987 "Return the frame to use for speedbar based on current context." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
988 (dframe-current-frame 'speedbar-frame 'speedbar-mode)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
989 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
990 (defun speedbar-handle-delete-frame (e) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
991 "Handle a delete frame event E. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
992 If the deleted frame is the frame SPEEDBAR is attached to, |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
993 we need to delete speedbar also." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
994 (let ((frame-to-be-deleted (car (car (cdr e))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
995 (if (eq frame-to-be-deleted dframe-attached-frame) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
996 (delete-frame speedbar-frame))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
997 ) |
21650 | 998 |
999 ;;;###autoload | |
1000 (defun speedbar-get-focus () | |
1001 "Change frame focus to or from the speedbar frame. | |
1002 If the selected frame is not speedbar, then speedbar frame is | |
1003 selected. If the speedbar frame is active, then select the attached frame." | |
1004 (interactive) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1005 (speedbar-reset-scanners) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1006 (dframe-get-focus 'speedbar-frame 'speedbar-frame-mode |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1007 (lambda () (let ((speedbar-update-flag t)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1008 (speedbar-timer-fn))))) |
22735 | 1009 |
21650 | 1010 (defmacro speedbar-frame-width () |
1011 "Return the width of the speedbar frame in characters. | |
1012 nil if it doesn't exist." | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1013 '(window-width (get-buffer-window speedbar-buffer))) |
21650 | 1014 |
1015 (defun speedbar-mode () | |
1016 "Major mode for managing a display of directories and tags. | |
1017 \\<speedbar-key-map> | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1018 The first line represents the default directory of the speedbar frame. |
21650 | 1019 Each directory segment is a button which jumps speedbar's default |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1020 directory to that directory. Buttons are activated by clicking `\\[speedbar-click]'. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1021 In some situations using `\\[dframe-power-click]' is a `power click' which will |
21650 | 1022 rescan cached items, or pop up new frames. |
1023 | |
1024 Each line starting with <+> represents a directory. Click on the <+> | |
1025 to insert the directory listing into the current tree. Click on the | |
1026 <-> to retract that list. Click on the directory name to go to that | |
1027 directory as the default. | |
1028 | |
1029 Each line starting with [+] is a file. If the variable | |
1030 `speedbar-show-unknown-files' is t, the lines starting with [?] are | |
1031 files which don't have imenu support, but are not expressly ignored. | |
1032 Files are completely ignored if they match `speedbar-file-unshown-regexp' | |
1033 which is generated from `completion-ignored-extensions'. | |
1034 | |
1035 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
|
1036 version control system. (Currently only RCS is supported.) New |
21650 | 1037 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
|
1038 for `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p'. |
21650 | 1039 |
22735 | 1040 Files with a `#' or `!' character after them are source files that |
1041 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
|
1042 files is out of date. You can control what source/object associations |
22735 | 1043 exist through the variable `speedbar-obj-alist'. |
1044 | |
21650 | 1045 Click on the [+] to display a list of tags from that file. Click on |
1046 the [-] to retract the list. Click on the file name to edit the file | |
1047 in the attached frame. | |
1048 | |
1049 If you open tags, you might find a node starting with {+}, which is a | |
1050 category of tags. Click the {+} to expand the category. Jump-able | |
1051 tags start with >. Click the name of the tag to go to that position | |
1052 in the selected file. | |
1053 | |
1054 \\{speedbar-key-map}" | |
1055 ;; NOT interactive | |
1056 (save-excursion | |
1057 (kill-all-local-variables) | |
1058 (setq major-mode 'speedbar-mode) | |
1059 (setq mode-name "Speedbar") | |
1060 (set-syntax-table speedbar-syntax-table) | |
1061 (setq font-lock-keywords nil) ;; no font-locking please | |
1062 (setq truncate-lines t) | |
1063 (make-local-variable 'frame-title-format) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1064 (setq frame-title-format (concat "Speedbar " speedbar-version)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1065 (setq case-fold-search nil) |
23083
2dea437fe88a
(speedbar-with-writable): remove `toggle-read-only'.
Eric M. Ludlam <zappo@gnu.org>
parents:
23080
diff
changeset
|
1066 (toggle-read-only 1) |
21650 | 1067 (speedbar-set-mode-line-format) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1068 ;; Add in our dframe hooks. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1069 (if speedbar-track-mouse-flag |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1070 (setq dframe-track-mouse-function #'speedbar-track-mouse)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1071 (setq dframe-help-echo-function #'speedbar-item-info |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1072 dframe-mouse-click-function #'speedbar-click |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1073 dframe-mouse-position-function #'speedbar-position-cursor-on-line) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1074 (run-hooks 'speedbar-mode-hook)) |
21650 | 1075 speedbar-buffer) |
1076 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1077 (defmacro speedbar-message (fmt &rest args) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1078 "Like message, but for use in the speedbar frame. |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1079 Argument FMT is the format string, and ARGS are the arguments for message." |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1080 `(dframe-message ,fmt ,@args)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1081 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1082 (defsubst speedbar-y-or-n-p (prompt &optional deleting) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1083 "Like `y-or-n-p', but for use in the speedbar frame. |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1084 Argument PROMPT is the prompt to use. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1085 Optional argument DELETING means this is a query that will delete something. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1086 The variable `speedbar-query-confirmation-method' can cause this to |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1087 return true without a query." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1088 (or (and (not deleting) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1089 (eq speedbar-query-confirmation-method 'none-but-delete)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1090 (dframe-y-or-n-p prompt))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1091 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1092 (defsubst speedbar-select-attached-frame () |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1093 "Select the frame attached to this speedbar." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1094 (dframe-select-attached-frame (speedbar-current-frame))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1095 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1096 ;; Backwards compatibility |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1097 (defalias 'speedbar-with-attached-buffer 'dframe-with-attached-buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1098 (defalias 'speedbar-maybee-jump-to-attached-frame 'dframe-maybee-jump-to-attached-frame) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1099 |
21650 | 1100 (defun speedbar-set-mode-line-format () |
1101 "Set the format of the mode line based on the current speedbar environment. | |
1102 This gives visual indications of what is up. It EXPECTS the speedbar | |
1103 frame and window to be the currently active frame and window." | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1104 (if (and (frame-live-p (speedbar-current-frame)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1105 (or (not dframe-xemacsp) |
56762
85c0c238dbbf
(speedbar-file-regexp): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents:
56754
diff
changeset
|
1106 (with-no-warnings |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1107 (specifier-instance has-modeline-p))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1108 speedbar-buffer) (save-excursion |
21650 | 1109 (set-buffer speedbar-buffer) |
1110 (let* ((w (or (speedbar-frame-width) 20)) | |
1111 (p1 "<<") | |
1112 (p5 ">>") | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1113 (p3 (if speedbar-update-flag "#" "!")) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1114 (p35 (capitalize speedbar-initial-expansion-list-name)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1115 (blank (- w (length p1) (length p3) (length p5) (length p35) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1116 (if line-number-mode 5 1))) |
21650 | 1117 (p2 (if (> blank 0) |
1118 (make-string (/ blank 2) ? ) | |
1119 "")) | |
1120 (p4 (if (> blank 0) | |
1121 (make-string (+ (/ blank 2) (% blank 2)) ? ) | |
1122 "")) | |
1123 (tf | |
1124 (if line-number-mode | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1125 (list (concat p1 p2 p3 " " p35) '(line-number-mode " %3l") |
21650 | 1126 (concat p4 p5)) |
1127 (list (concat p1 p2 p3 p4 p5))))) | |
1128 (if (not (equal mode-line-format tf)) | |
1129 (progn | |
1130 (setq mode-line-format tf) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1131 (speedbar-mode-line-update))))))) |
21650 | 1132 |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1133 (defvar speedbar-previous-menu nil |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1134 "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
|
1135 |
22735 | 1136 (defun speedbar-reconfigure-keymaps () |
21650 | 1137 "Reconfigure the menu-bar in a speedbar frame. |
1138 Different menu items are displayed depending on the current display mode | |
1139 and the existence of packages." | |
22735 | 1140 (let ((md (append |
1141 speedbar-easymenu-definition-base | |
1142 (if speedbar-shown-directories | |
1143 ;; file display mode version | |
1144 (speedbar-initial-menu) | |
1145 (save-excursion | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1146 (dframe-select-attached-frame speedbar-frame) |
22735 | 1147 (if (local-variable-p |
1148 'speedbar-easymenu-definition-special | |
1149 (current-buffer)) | |
1150 ;; If bound locally, we can use it | |
1151 speedbar-easymenu-definition-special))) | |
1152 ;; Dynamic menu stuff | |
1153 '("-") | |
1154 (list (cons "Displays" | |
1155 (let ((displays nil) | |
1156 (alist speedbar-initial-expansion-mode-alist)) | |
1157 (while alist | |
1158 (setq displays | |
1159 (cons | |
1160 (vector | |
1161 (capitalize (car (car alist))) | |
1162 (list | |
1163 'speedbar-change-initial-expansion-list | |
1164 (car (car alist))) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1165 :style 'radio |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1166 :selected |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1167 `(string= ,(car (car alist)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1168 speedbar-initial-expansion-list-name) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1169 ) |
22735 | 1170 displays)) |
1171 (setq alist (cdr alist))) | |
1172 displays))) | |
1173 ;; The trailer | |
1174 speedbar-easymenu-definition-trailer)) | |
1175 (localmap (save-excursion | |
1176 (let ((cf (selected-frame))) | |
1177 (prog2 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1178 (dframe-select-attached-frame speedbar-frame) |
22735 | 1179 (if (local-variable-p |
1180 'speedbar-special-mode-key-map | |
1181 (current-buffer)) | |
1182 speedbar-special-mode-key-map) | |
1183 (select-frame cf)))))) | |
1184 (save-excursion | |
1185 (set-buffer speedbar-buffer) | |
1186 (use-local-map (or localmap | |
1187 (speedbar-initial-keymap) | |
1188 ;; This creates a small keymap we can glom the | |
1189 ;; menu adjustments into. | |
1190 (speedbar-make-specialized-keymap))) | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1191 ;; Delete the old menu if applicable. |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1192 (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
|
1193 (setq speedbar-previous-menu md) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1194 ;; Now add the new menu |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1195 (if (not dframe-xemacsp) |
22735 | 1196 (easy-menu-define speedbar-menu-map (current-local-map) |
1197 "Speedbar menu" md) | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1198 (easy-menu-add md (current-local-map)) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1199 ;; XEmacs-specific: |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1200 (if (fboundp 'set-buffer-menubar) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1201 (set-buffer-menubar (list md))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1202 |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1203 (run-hooks 'speedbar-reconfigure-keymaps-hook))) |
21650 | 1204 |
1205 | |
1206 ;;; User Input stuff | |
1207 ;; | |
1208 (defun speedbar-customize () | |
1209 "Customize speedbar using the Custom package." | |
1210 (interactive) | |
1211 (let ((sf (selected-frame))) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1212 (dframe-select-attached-frame speedbar-frame) |
21650 | 1213 (customize-group 'speedbar) |
1214 (select-frame sf)) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1215 (dframe-maybee-jump-to-attached-frame)) |
21650 | 1216 |
22735 | 1217 (defun speedbar-track-mouse (event) |
1218 "For motion EVENT, display info about the current line." | |
1219 (if (not speedbar-track-mouse-flag) | |
1220 nil | |
1221 (save-excursion | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1222 (save-window-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1223 (condition-case nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1224 (progn |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1225 (mouse-set-point event) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1226 (if (eq major-mode 'speedbar-mode) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1227 ;; XEmacs may let us get in here in other mode buffers. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1228 (speedbar-item-info))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1229 (t (speedbar-message nil))))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1230 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1231 (defun speedbar-show-info-under-mouse () |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1232 "Call the info function for the line under the mouse. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1233 Optional EVENT is currently not used." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1234 (let ((pos (mouse-position))) ; we ignore event until I use it later. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1235 (if (equal (car pos) speedbar-frame) |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1236 (save-excursion |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1237 (save-window-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1238 (apply 'set-mouse-position pos) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1239 (speedbar-item-info)))))) |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1240 |
21650 | 1241 (defun speedbar-next (arg) |
1242 "Move to the next ARGth line in a speedbar buffer." | |
1243 (interactive "p") | |
1244 (forward-line (or arg 1)) | |
1245 (speedbar-item-info) | |
1246 (speedbar-position-cursor-on-line)) | |
1247 | |
1248 (defun speedbar-prev (arg) | |
1249 "Move to the previous ARGth line in a speedbar buffer." | |
1250 (interactive "p") | |
1251 (speedbar-next (if arg (- arg) -1))) | |
1252 | |
22735 | 1253 (defun speedbar-restricted-move (arg) |
1254 "Move to the next ARGth line in a speedbar buffer at the same depth. | |
1255 This means that movement is restricted to a subnode, and that siblings | |
1256 of intermediate nodes are skipped." | |
1257 (if (not (numberp arg)) (signal 'wrong-type-argument (list arg 'numberp))) | |
1258 ;; First find the extent for which we are allowed to move. | |
1259 (let ((depth (save-excursion (beginning-of-line) | |
1260 (if (looking-at "[0-9]+:") | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1261 (string-to-number (match-string 0)) |
22735 | 1262 0))) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1263 (crement (if (< arg 0) 1 -1)) ; decrement or increment |
22735 | 1264 (lastmatch (point))) |
1265 (while (/= arg 0) | |
1266 (forward-line (- crement)) | |
1267 (let ((subdepth (save-excursion (beginning-of-line) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1268 (if (looking-at "[0-9]+:") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1269 (string-to-number (match-string 0)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1270 0)))) |
22735 | 1271 (cond ((or (< subdepth depth) |
1272 (progn (end-of-line) (eobp)) | |
1273 (progn (beginning-of-line) (bobp))) | |
1274 ;; We have reached the end of this block. | |
1275 (goto-char lastmatch) | |
1276 (setq arg 0) | |
1277 (error "End of sub-list")) | |
1278 ((= subdepth depth) | |
1279 (setq lastmatch (point) | |
1280 arg (+ arg crement)))))) | |
1281 (speedbar-position-cursor-on-line))) | |
1282 | |
1283 (defun speedbar-restricted-next (arg) | |
1284 "Move to the next ARGth line in a speedbar buffer at the same depth. | |
1285 This means that movement is restricted to a subnode, and that siblings | |
1286 of intermediate nodes are skipped." | |
1287 (interactive "p") | |
1288 (speedbar-restricted-move (or arg 1)) | |
1289 (speedbar-item-info)) | |
1290 | |
1291 (defun speedbar-restricted-prev (arg) | |
1292 "Move to the previous ARGth line in a speedbar buffer at the same depth. | |
1293 This means that movement is restricted to a subnode, and that siblings | |
1294 of intermediate nodes are skipped." | |
1295 (interactive "p") | |
1296 (speedbar-restricted-move (if arg (- arg) -1)) | |
1297 (speedbar-item-info)) | |
1298 | |
1299 (defun speedbar-navigate-list (arg) | |
1300 "Move across ARG groups of similarly typed items in speedbar. | |
1301 Stop on the first line of the next type of item, or on the last or first item | |
1302 if we reach a buffer boundary." | |
1303 (interactive "p") | |
1304 (beginning-of-line) | |
1305 (if (looking-at "[0-9]+: *[[<{][-+?][]>}] ") | |
1306 (let ((str (regexp-quote (match-string 0)))) | |
1307 (while (looking-at str) | |
1308 (speedbar-restricted-move arg) | |
1309 (beginning-of-line)))) | |
1310 (speedbar-position-cursor-on-line)) | |
1311 | |
1312 (defun speedbar-forward-list () | |
1313 "Move forward over the current list. | |
1314 A LIST in speedbar is a group of similarly typed items, such as directories, | |
1315 files, or the directory button." | |
1316 (interactive) | |
1317 (speedbar-navigate-list 1) | |
1318 (speedbar-item-info)) | |
1319 | |
1320 (defun speedbar-backward-list () | |
1321 "Move backward over the current list. | |
1322 A LIST in speedbar is a group of similarly typed items, such as directories, | |
1323 files, or the directory button." | |
1324 (interactive) | |
1325 (speedbar-navigate-list -1) | |
1326 (speedbar-item-info)) | |
1327 | |
21650 | 1328 (defun speedbar-scroll-up (&optional arg) |
1329 "Page down one screen-full of the speedbar, or ARG lines." | |
1330 (interactive "P") | |
1331 (scroll-up arg) | |
1332 (speedbar-position-cursor-on-line)) | |
1333 | |
1334 (defun speedbar-scroll-down (&optional arg) | |
1335 "Page up one screen-full of the speedbar, or ARG lines." | |
1336 (interactive "P") | |
1337 (scroll-down arg) | |
1338 (speedbar-position-cursor-on-line)) | |
1339 | |
1340 (defun speedbar-up-directory () | |
1341 "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
|
1342 Assumes that the current buffer is the speedbar buffer." |
21650 | 1343 (interactive) |
1344 (setq default-directory (expand-file-name (concat default-directory "../"))) | |
1345 (speedbar-update-contents)) | |
1346 | |
1347 ;;; Speedbar file activity (aka creeping featurism) | |
1348 ;; | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1349 (defun speedbar-refresh (&optional arg) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1350 "Refresh the current speedbar display, disposing of any cached data. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1351 Argument ARG represents to force a refresh past any caches that may exist." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1352 (interactive "P") |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1353 (let ((dl speedbar-shown-directories) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1354 (dframe-power-click arg) |
47627
33bcb75e91e8
(speedbar-refresh): Simply bind deactivate-mark.
Richard M. Stallman <rms@gnu.org>
parents:
47286
diff
changeset
|
1355 deactivate-mark) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1356 ;; We need to hack something so this works in detached frames. |
21650 | 1357 (while dl |
1358 (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
|
1359 (setq dl (cdr dl))) |
22906
adfc04c48002
Updated refresh messages to clear themselves.
Eric M. Ludlam <zappo@gnu.org>
parents:
22893
diff
changeset
|
1360 (if (<= 1 speedbar-verbosity-level) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1361 (speedbar-message "Refreshing speedbar...")) |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1362 (speedbar-update-contents) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1363 (speedbar-stealthy-updates) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1364 ;; Reset the timer in case it got really hosed for some reason... |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1365 (speedbar-set-timer dframe-update-speed) |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
1366 (if (<= 1 speedbar-verbosity-level) |
47627
33bcb75e91e8
(speedbar-refresh): Simply bind deactivate-mark.
Richard M. Stallman <rms@gnu.org>
parents:
47286
diff
changeset
|
1367 (speedbar-message "Refreshing speedbar...done")))) |
21650 | 1368 |
1369 (defun speedbar-item-load () | |
22735 | 1370 "Load the item under the cursor or mouse if it is a Lisp file." |
21650 | 1371 (interactive) |
1372 (let ((f (speedbar-line-file))) | |
1373 (if (and (file-exists-p f) (string-match "\\.el\\'" f)) | |
1374 (if (and (file-exists-p (concat f "c")) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1375 (speedbar-y-or-n-p (format "Load %sc? " f))) |
21650 | 1376 ;; If the compiled version exists, load that instead... |
1377 (load-file (concat f "c")) | |
1378 (load-file f)) | |
22735 | 1379 (error "Not a loadable file")))) |
21650 | 1380 |
1381 (defun speedbar-item-byte-compile () | |
22735 | 1382 "Byte compile the item under the cursor or mouse if it is a Lisp file." |
21650 | 1383 (interactive) |
1384 (let ((f (speedbar-line-file)) | |
1385 (sf (selected-frame))) | |
1386 (if (and (file-exists-p f) (string-match "\\.el\\'" f)) | |
1387 (progn | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1388 (dframe-select-attached-frame speedbar-frame) |
21650 | 1389 (byte-compile-file f nil) |
22735 | 1390 (select-frame sf) |
1391 (speedbar-reset-scanners))) | |
21650 | 1392 )) |
1393 | |
1394 (defun speedbar-mouse-item-info (event) | |
1395 "Provide information about what the user clicked on. | |
1396 This should be bound to a mouse EVENT." | |
1397 (interactive "e") | |
1398 (mouse-set-point event) | |
1399 (speedbar-item-info)) | |
1400 | |
22735 | 1401 (defun speedbar-generic-item-info () |
44578
9c2b72b4b303
(speedbar-generic-item-info)
Pavel Janík <Pavel@Janik.cz>
parents:
44225
diff
changeset
|
1402 "Attempt to derive, and then display information about this line item. |
22735 | 1403 File style information is displayed with `speedbar-item-info'." |
1404 (save-excursion | |
1405 (beginning-of-line) | |
1406 ;; Skip invisible number info. | |
1407 (if (looking-at "\\([0-9]+\\):") (goto-char (match-end 0))) | |
1408 ;; Skip items in "folder" type text characters. | |
1409 (if (looking-at "\\s-*[[<({].[]>)}] ") (goto-char (match-end 0))) | |
1410 ;; Get the text | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1411 (speedbar-message "Text: %s" (buffer-substring-no-properties |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1412 (point) (progn (end-of-line) (point)))))) |
22735 | 1413 |
21650 | 1414 (defun speedbar-item-info () |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1415 "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
|
1416 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
|
1417 `speedbar-item-info'." |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1418 (interactive) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1419 (let (message-log-max) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1420 (funcall (or (speedbar-fetch-replacement-function 'speedbar-item-info) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1421 'speedbar-generic-item-info)))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1422 |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1423 (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
|
1424 "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
|
1425 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
|
1426 it from the speedbar buffer." |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1427 (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
|
1428 (attr (if item (file-attributes item) nil))) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1429 (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
|
1430 (nth 7 attr) item) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1431 nil))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1432 |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1433 (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
|
1434 "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
|
1435 nil if not applicable." |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1436 (save-excursion |
24321
0e5b7bb19ddc
(speedbar-item-info-tag-helper): Scan the whole line.
Richard M. Stallman <rms@gnu.org>
parents:
24232
diff
changeset
|
1437 (beginning-of-line) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1438 (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
|
1439 (save-excursion(end-of-line)(point)) t) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1440 (let* ((tag (match-string 1)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1441 (attr (speedbar-line-token)) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1442 (item nil) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1443 (semantic-tagged (if (fboundp 'semantic-tag-p) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1444 (semantic-tag-p attr)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1445 (if semantic-tagged |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1446 (with-no-warnings |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1447 (save-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1448 (when (and (semantic-tag-overlay attr) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1449 (semantic-tag-buffer attr)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1450 (set-buffer (semantic-tag-buffer attr))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1451 (speedbar-message |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1452 (funcall semantic-sb-info-format-tag-function attr) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1453 ))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1454 (looking-at "\\([0-9]+\\):") |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1455 (setq item (file-name-nondirectory (speedbar-line-directory))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1456 (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
|
1457 (if (re-search-forward "{[+-]} \\([^\n]+\\)$" |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1458 (save-excursion(end-of-line)(point)) t) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1459 (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
|
1460 (if (re-search-forward " [+-]?[()|@] \\([^\n]+\\)$" nil t) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1461 (let* ((detailtext (match-string 1)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1462 (detail (or (speedbar-line-token) detailtext)) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1463 (parent (save-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1464 (beginning-of-line) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1465 (let ((dep (if (looking-at "[0-9]+:") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1466 (1- (string-to-number (match-string 0))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1467 0))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1468 (re-search-backward (concat "^" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1469 (int-to-string dep) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1470 ":") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1471 nil t)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1472 (if (looking-at "[0-9]+: +[-+=>]> \\([^\n]+\\)$") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1473 (speedbar-line-token) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1474 nil)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1475 (if (featurep 'semantic) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1476 (with-no-warnings |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1477 (if (semantic-tag-p detail) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1478 (speedbar-message |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1479 (funcall semantic-sb-info-format-tag-function detail parent)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1480 (if parent |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1481 (speedbar-message "Detail: %s of tag %s" detail |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1482 (if (semantic-tag-p parent) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1483 (semantic-format-tag-name parent nil t) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1484 parent)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1485 (speedbar-message "Detail: %s" detail)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1486 ;; Not using `semantic': |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1487 (if parent |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1488 (speedbar-message "Detail: %s of tag %s" detail parent) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1489 (speedbar-message "Detail: %s" detail)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1490 nil))))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1491 |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1492 (defun speedbar-files-item-info () |
21650 | 1493 "Display info in the mini-buffer about the button the mouse is over." |
1494 (if (not speedbar-shown-directories) | |
22735 | 1495 (speedbar-generic-item-info) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1496 (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
|
1497 (speedbar-item-info-tag-helper) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1498 (speedbar-generic-item-info)))) |
21650 | 1499 |
1500 (defun speedbar-item-copy () | |
1501 "Copy the item under the cursor. | |
1502 Files can be copied to new names or places." | |
1503 (interactive) | |
1504 (let ((f (speedbar-line-file))) | |
22735 | 1505 (if (not f) (error "Not a file")) |
21650 | 1506 (if (file-directory-p f) |
22735 | 1507 (error "Cannot copy directory") |
21650 | 1508 (let* ((rt (read-file-name (format "Copy %s to: " |
1509 (file-name-nondirectory f)) | |
1510 (file-name-directory f))) | |
1511 (refresh (member (expand-file-name (file-name-directory rt)) | |
1512 speedbar-shown-directories))) | |
1513 ;; Create the right file name part | |
1514 (if (file-directory-p rt) | |
1515 (setq rt | |
1516 (concat (expand-file-name rt) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1517 (if (string-match "[/\\]$" rt) "" "/") |
21650 | 1518 (file-name-nondirectory f)))) |
1519 (if (or (not (file-exists-p rt)) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1520 (speedbar-y-or-n-p (format "Overwrite %s with %s? " rt f) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1521 t)) |
21650 | 1522 (progn |
1523 (copy-file f rt t t) | |
1524 ;; refresh display if the new place is currently displayed. | |
1525 (if refresh | |
1526 (progn | |
1527 (speedbar-refresh) | |
1528 (if (not (speedbar-goto-this-file rt)) | |
1529 (speedbar-goto-this-file f)))) | |
1530 )))))) | |
1531 | |
1532 (defun speedbar-item-rename () | |
1533 "Rename the item under the cursor or mouse. | |
1534 Files can be renamed to new names or moved to new directories." | |
1535 (interactive) | |
1536 (let ((f (speedbar-line-file))) | |
1537 (if f | |
1538 (let* ((rt (read-file-name (format "Rename %s to: " | |
1539 (file-name-nondirectory f)) | |
1540 (file-name-directory f))) | |
1541 (refresh (member (expand-file-name (file-name-directory rt)) | |
1542 speedbar-shown-directories))) | |
1543 ;; Create the right file name part | |
1544 (if (file-directory-p rt) | |
1545 (setq rt | |
1546 (concat (expand-file-name rt) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1547 (if (string-match "[/\\]\\'" rt) "" "/") |
21650 | 1548 (file-name-nondirectory f)))) |
1549 (if (or (not (file-exists-p rt)) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1550 (speedbar-y-or-n-p (format "Overwrite %s with %s? " rt f) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1551 t)) |
21650 | 1552 (progn |
1553 (rename-file f rt t) | |
1554 ;; refresh display if the new place is currently displayed. | |
1555 (if refresh | |
1556 (progn | |
1557 (speedbar-refresh) | |
1558 (speedbar-goto-this-file rt) | |
1559 ))))) | |
22735 | 1560 (error "Not a file")))) |
21650 | 1561 |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1562 (defun speedbar-create-directory () |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1563 "Create a directory in speedbar." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1564 (interactive) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1565 (let ((f (speedbar-line-file))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1566 (if f |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1567 (let* ((basedir (file-name-directory f)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1568 (nd (read-file-name "Create directory: " |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1569 basedir))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1570 ;; Make the directory |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1571 (make-directory nd t) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1572 (speedbar-refresh) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1573 (speedbar-goto-this-file nd) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1574 ) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1575 (error "Not a file")))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1576 |
21650 | 1577 (defun speedbar-item-delete () |
1578 "Delete the item under the cursor. Files are removed from disk." | |
1579 (interactive) | |
1580 (let ((f (speedbar-line-file))) | |
22735 | 1581 (if (not f) (error "Not a file")) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1582 (if (speedbar-y-or-n-p (format "Delete %s? " f) t) |
21650 | 1583 (progn |
1584 (if (file-directory-p f) | |
1585 (delete-directory f) | |
1586 (delete-file f)) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
1587 (speedbar-message "Okie dokie..") |
21650 | 1588 (let ((p (point))) |
1589 (speedbar-refresh) | |
1590 (goto-char p)) | |
1591 )) | |
1592 )) | |
1593 | |
22735 | 1594 (defun speedbar-item-object-delete () |
1595 "Delete the object associated from the item under the cursor. | |
1596 The file is removed from disk. The object is determined from the | |
1597 variable `speedbar-obj-alist'." | |
1598 (interactive) | |
1599 (let* ((f (speedbar-line-file)) | |
1600 (obj nil) | |
1601 (oa speedbar-obj-alist)) | |
1602 (if (not f) (error "Not a file")) | |
1603 (while (and oa (not (string-match (car (car oa)) f))) | |
1604 (setq oa (cdr oa))) | |
1605 (setq obj (concat (file-name-sans-extension f) (cdr (car oa)))) | |
1606 (if (and oa (file-exists-p obj) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1607 (speedbar-y-or-n-p (format "Delete %s? " obj) t)) |
22735 | 1608 (progn |
1609 (delete-file obj) | |
1610 (speedbar-reset-scanners))))) | |
1611 | |
21650 | 1612 (defun speedbar-enable-update () |
1613 "Enable automatic updating in speedbar via timers." | |
1614 (interactive) | |
1615 (setq speedbar-update-flag t) | |
1616 (speedbar-set-mode-line-format) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1617 (speedbar-set-timer dframe-update-speed)) |
21650 | 1618 |
1619 (defun speedbar-disable-update () | |
1620 "Disable automatic updating and stop consuming resources." | |
1621 (interactive) | |
1622 (setq speedbar-update-flag nil) | |
1623 (speedbar-set-mode-line-format) | |
1624 (speedbar-set-timer nil)) | |
1625 | |
1626 (defun speedbar-toggle-updates () | |
1627 "Toggle automatic update for the speedbar frame." | |
1628 (interactive) | |
1629 (if speedbar-update-flag | |
1630 (speedbar-disable-update) | |
1631 (speedbar-enable-update))) | |
1632 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1633 (defun speedbar-toggle-images () |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1634 "Toggle use of images in the speedbar frame. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1635 Images are not available in Emacs 20 or earlier." |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1636 (interactive) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1637 (setq speedbar-use-images (not speedbar-use-images)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1638 (speedbar-refresh)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1639 |
21650 | 1640 (defun speedbar-toggle-sorting () |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1641 "Toggle tag sorting." |
21650 | 1642 (interactive) |
1643 (setq speedbar-sort-tags (not speedbar-sort-tags))) | |
1644 | |
1645 (defun speedbar-toggle-show-all-files () | |
1646 "Toggle display of files speedbar can not tag." | |
1647 (interactive) | |
1648 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files)) | |
1649 (speedbar-refresh)) | |
1650 | |
1651 (defmacro speedbar-with-writable (&rest forms) | |
1652 "Allow the buffer to be writable and evaluate FORMS." | |
1653 (list 'let '((inhibit-read-only t)) | |
1654 (cons 'progn forms))) | |
1655 (put 'speedbar-with-writable 'lisp-indent-function 0) | |
1656 | |
1657 (defun speedbar-insert-button (text face mouse function | |
1658 &optional token prevline) | |
1659 "Insert TEXT as the next logical speedbar button. | |
1660 FACE is the face to put on the button, MOUSE is the highlight face to use. | |
1661 When the user clicks on TEXT, FUNCTION is called with the TOKEN parameter. | |
1662 This function assumes that the current buffer is the speedbar buffer. | |
1663 If PREVLINE, then put this button on the previous line. | |
1664 | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
1665 This is a convenience function for special modes that create their own |
21650 | 1666 specialized speedbar displays." |
1667 (goto-char (point-max)) | |
29130
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
1668 (let ((start (point))) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
1669 (if (/= (current-column) 0) (insert "\n")) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
1670 (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
|
1671 (if prevline (progn (delete-char -1) |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
1672 (insert " ") ;back up if desired... |
b37210b05707
(speedbar-easymenu-definition-base): Image toggle fix.
Eric M. Ludlam <zappo@gnu.org>
parents:
28925
diff
changeset
|
1673 (put-text-property (1- (point)) (point) 'invisible nil))) |
21650 | 1674 (let ((start (point))) |
1675 (insert text) | |
1676 (speedbar-make-button start (point) face mouse function token)) | |
1677 (let ((start (point))) | |
1678 (insert "\n") | |
1679 (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
|
1680 (put-text-property start (point) 'invisible nil) |
21650 | 1681 (put-text-property start (point) 'mouse-face nil))) |
1682 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1683 (defun speedbar-insert-separator (text) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1684 "Insert a separation label of TEXT. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1685 Separators are not active, have no labels, depth, or actions." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1686 (if speedbar-use-images |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1687 (let ((start (point))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1688 (insert "//") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1689 (speedbar-insert-image-button-maybe start 2))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1690 (let ((start (point))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1691 (insert text "\n") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1692 (speedbar-make-button start (point) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1693 'speedbar-separator-face |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1694 nil nil nil))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1695 |
21650 | 1696 (defun speedbar-make-button (start end face mouse function &optional token) |
1697 "Create a button from START to END, with FACE as the display face. | |
1698 MOUSE is the mouse face. When this button is clicked on FUNCTION | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1699 will be run with the TOKEN parameter (any Lisp object)" |
21650 | 1700 (put-text-property start end 'face face) |
1701 (put-text-property start end 'mouse-face mouse) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1702 (if speedbar-use-tool-tips-flag |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1703 (put-text-property start end 'help-echo #'dframe-help-echo)) |
21650 | 1704 (put-text-property start end 'invisible nil) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1705 (put-text-property start end 'speedbar-text |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1706 (buffer-substring-no-properties start end)) |
21650 | 1707 (if function (put-text-property start end 'speedbar-function function)) |
1708 (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
|
1709 ;; 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
|
1710 (if (<= (- end start) 3) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1711 (speedbar-insert-image-button-maybe start (- end start))) |
21650 | 1712 ) |
1713 | |
22735 | 1714 ;;; Initial Expansion list management |
1715 ;; | |
1716 (defun speedbar-initial-expansion-list () | |
1717 "Return the current default expansion list. | |
1718 This is based on `speedbar-initial-expansion-list-name' referencing | |
1719 `speedbar-initial-expansion-mode-alist'." | |
1720 ;; cdr1 - name, cdr2 - menu | |
1721 (cdr (cdr (cdr (assoc speedbar-initial-expansion-list-name | |
1722 speedbar-initial-expansion-mode-alist))))) | |
1723 | |
1724 (defun speedbar-initial-menu () | |
1725 "Return the current default menu data. | |
1726 This is based on `speedbar-initial-expansion-list-name' referencing | |
1727 `speedbar-initial-expansion-mode-alist'." | |
1728 (symbol-value | |
1729 (car (cdr (assoc speedbar-initial-expansion-list-name | |
1730 speedbar-initial-expansion-mode-alist))))) | |
1731 | |
1732 (defun speedbar-initial-keymap () | |
1733 "Return the current default menu data. | |
1734 This is based on `speedbar-initial-expansion-list-name' referencing | |
1735 `speedbar-initial-expansion-mode-alist'." | |
1736 (symbol-value | |
1737 (car (cdr (cdr (assoc speedbar-initial-expansion-list-name | |
1738 speedbar-initial-expansion-mode-alist)))))) | |
1739 | |
1740 (defun speedbar-initial-stealthy-functions () | |
1741 "Return a list of functions to call stealthily. | |
1742 This is based on `speedbar-initial-expansion-list-name' referencing | |
1743 `speedbar-stealthy-function-list'." | |
1744 (cdr (assoc speedbar-initial-expansion-list-name | |
1745 speedbar-stealthy-function-list))) | |
1746 | |
1747 (defun speedbar-add-expansion-list (new-list) | |
1748 "Add NEW-LIST to the list of expansion lists." | |
1749 (add-to-list 'speedbar-initial-expansion-mode-alist new-list)) | |
1750 | |
1751 (defun speedbar-change-initial-expansion-list (new-default) | |
1752 "Change speedbar's default expansion list to NEW-DEFAULT." | |
1753 (interactive | |
1754 (list | |
1755 (completing-read (format "Speedbar Mode (default %s): " | |
1756 speedbar-previously-used-expansion-list-name) | |
1757 speedbar-initial-expansion-mode-alist | |
1758 nil t "" nil | |
1759 speedbar-previously-used-expansion-list-name))) | |
1760 (setq speedbar-previously-used-expansion-list-name | |
1761 speedbar-initial-expansion-list-name | |
1762 speedbar-initial-expansion-list-name new-default) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1763 (if (and (speedbar-current-frame) (frame-live-p (speedbar-current-frame))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1764 (progn |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1765 (speedbar-refresh) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1766 (speedbar-reconfigure-keymaps)))) |
22735 | 1767 |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1768 (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
|
1769 "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
|
1770 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
|
1771 for FUNCTION." |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1772 (cdr (assoc function |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1773 (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
|
1774 speedbar-mode-functions-list))))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1775 |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
1776 (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
|
1777 "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
|
1778 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
|
1779 (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
|
1780 |
22735 | 1781 |
1782 ;;; Special speedbar display management | |
1783 ;; | |
1784 (defun speedbar-maybe-add-localized-support (buffer) | |
1785 "Quick check function called on BUFFERs by the speedbar timer function. | |
1786 Maintains the value of local variables which control speedbars use | |
1787 of the special mode functions." | |
1788 (or speedbar-special-mode-expansion-list | |
1789 (speedbar-add-localized-speedbar-support buffer))) | |
1790 | |
1791 (defun speedbar-add-localized-speedbar-support (buffer) | |
1792 "Add localized speedbar support to BUFFER's mode if it is available." | |
1793 (interactive "bBuffer: ") | |
1794 (if (stringp buffer) (setq buffer (get-buffer buffer))) | |
1795 (if (not (buffer-live-p buffer)) | |
1796 nil | |
1797 (save-excursion | |
1798 (set-buffer buffer) | |
1799 (save-match-data | |
1800 (let ((ms (symbol-name major-mode)) v) | |
1801 (if (not (string-match "-mode$" ms)) | |
1802 nil ;; do nothing to broken mode | |
1803 (setq ms (substring ms 0 (match-beginning 0))) | |
1804 (setq v (intern-soft (concat ms "-speedbar-buttons"))) | |
1805 (make-local-variable 'speedbar-special-mode-expansion-list) | |
1806 (if (not v) | |
1807 (setq speedbar-special-mode-expansion-list t) | |
1808 ;; If it is autoloaded, we need to load it now so that | |
1809 ;; we have access to the varialbe -speedbar-menu-items. | |
1810 ;; Is this XEmacs safe? | |
1811 (let ((sf (symbol-function v))) | |
1812 (if (and (listp sf) (eq (car sf) 'autoload)) | |
1813 (load-library (car (cdr sf))))) | |
1814 (setq speedbar-special-mode-expansion-list (list v)) | |
1815 (setq v (intern-soft (concat ms "-speedbar-key-map"))) | |
1816 (if (not v) | |
1817 nil ;; don't add special keymap | |
1818 (make-local-variable 'speedbar-special-mode-key-map) | |
1819 (setq speedbar-special-mode-key-map | |
1820 (symbol-value v))) | |
1821 (setq v (intern-soft (concat ms "-speedbar-menu-items"))) | |
1822 (if (not v) | |
1823 nil ;; don't add special menus | |
1824 (make-local-variable 'speedbar-easymenu-definition-special) | |
1825 (setq speedbar-easymenu-definition-special | |
1826 (symbol-value v))) | |
1827 ))))))) | |
1828 | |
1829 (defun speedbar-remove-localized-speedbar-support (buffer) | |
1830 "Remove any traces that BUFFER supports speedbar in a specialized way." | |
1831 (save-excursion | |
1832 (set-buffer buffer) | |
1833 (kill-local-variable 'speedbar-special-mode-expansion-list) | |
1834 (kill-local-variable 'speedbar-special-mode-key-map) | |
1835 (kill-local-variable 'speedbar-easymenu-definition-special))) | |
1836 | |
21650 | 1837 ;;; File button management |
1838 ;; | |
1839 (defun speedbar-file-lists (directory) | |
1840 "Create file lists for DIRECTORY. | |
1841 The car is the list of directories, the cdr is list of files not | |
1842 matching ignored headers. Cache any directory files found in | |
1843 `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
|
1844 the file-system." |
21650 | 1845 (setq directory (expand-file-name directory)) |
1846 ;; If in powerclick mode, then the directory we are getting | |
1847 ;; should be rescanned. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1848 (if dframe-power-click |
21650 | 1849 (adelete 'speedbar-directory-contents-alist directory)) |
1850 ;; find the directory, either in the cache, or build it. | |
1851 (or (cdr-safe (assoc directory speedbar-directory-contents-alist)) | |
1852 (let ((default-directory directory) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1853 (dir (directory-files directory nil)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1854 (dirs nil) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1855 (files nil)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1856 (while dir |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1857 (if (not |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1858 (or (string-match speedbar-file-unshown-regexp (car dir)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1859 (string-match speedbar-directory-unshown-regexp (car dir)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1860 (if (file-directory-p (car dir)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1861 (setq dirs (cons (car dir) dirs)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1862 (setq files (cons (car dir) files)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1863 (setq dir (cdr dir))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1864 (let ((nl (cons (nreverse dirs) (list (nreverse files))))) |
21650 | 1865 (aput 'speedbar-directory-contents-alist directory nl) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1866 nl)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1867 )) |
21650 | 1868 |
1869 (defun speedbar-directory-buttons (directory index) | |
1870 "Insert a single button group at point for DIRECTORY. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1871 Each directory directory part is a different button. If part of the directory |
21650 | 1872 matches the user directory ~, then it is replaced with a ~. |
1873 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
|
1874 (let* ((tilde (expand-file-name "~/")) |
21650 | 1875 (dd (expand-file-name directory)) |
1876 (junk (string-match (regexp-quote tilde) dd)) | |
1877 (displayme (if junk | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1878 (concat "~/" (substring dd (match-end 0))) |
21650 | 1879 dd)) |
1880 (p (point))) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1881 (if (string-match "^~[/\\]?\\'" displayme) (setq displayme tilde)) |
21650 | 1882 (insert displayme) |
1883 (save-excursion | |
1884 (goto-char p) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1885 (while (re-search-forward "\\([^/\\]+\\)[/\\]" nil t) |
21650 | 1886 (speedbar-make-button (match-beginning 1) (match-end 1) |
1887 'speedbar-directory-face | |
1888 'speedbar-highlight-face | |
1889 'speedbar-directory-buttons-follow | |
25432
07df7c764669
(speedbar-directory-buttons): Recognize
Richard M. Stallman <rms@gnu.org>
parents:
24809
diff
changeset
|
1890 (if (and (= (match-beginning 1) p) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1891 (not (char-equal (char-after (+ p 1)) ?:))) |
21650 | 1892 (expand-file-name "~/") ;the tilde |
1893 (buffer-substring-no-properties | |
1894 p (match-end 0))))) | |
1895 ;; Nuke the beginning of the directory if it's too long... | |
1896 (cond ((eq speedbar-directory-button-trim-method 'span) | |
1897 (beginning-of-line) | |
1898 (let ((ww (or (speedbar-frame-width) 20))) | |
1899 (move-to-column ww nil) | |
1900 (while (>= (current-column) ww) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1901 (re-search-backward "[/\\]" nil t) |
21650 | 1902 (if (<= (current-column) 2) |
1903 (progn | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1904 (re-search-forward "[/\\]" nil t) |
21650 | 1905 (if (< (current-column) 4) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1906 (re-search-forward "[/\\]" nil t)) |
21650 | 1907 (forward-char -1))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1908 (if (looking-at "[/\\]?$") |
21650 | 1909 (beginning-of-line) |
1910 (insert "/...\n ") | |
1911 (move-to-column ww nil))))) | |
1912 ((eq speedbar-directory-button-trim-method 'trim) | |
1913 (end-of-line) | |
1914 (let ((ww (or (speedbar-frame-width) 20)) | |
1915 (tl (current-column))) | |
1916 (if (< ww tl) | |
1917 (progn | |
1918 (move-to-column (- tl ww)) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1919 (if (re-search-backward "[/\\]" nil t) |
21650 | 1920 (progn |
1921 (delete-region (point-min) (point)) | |
1922 (insert "$") | |
1923 ))))))) | |
1924 ) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1925 (if (string-match "\\`[/\\][^/\\]+[/\\]\\'" displayme) |
21650 | 1926 (progn |
1927 (insert " ") | |
1928 (let ((p (point))) | |
1929 (insert "<root>") | |
1930 (speedbar-make-button p (point) | |
1931 'speedbar-directory-face | |
1932 'speedbar-highlight-face | |
1933 'speedbar-directory-buttons-follow | |
1934 "/")))) | |
1935 (end-of-line) | |
1936 (insert-char ?\n 1 nil))) | |
1937 | |
1938 (defun speedbar-make-tag-line (exp-button-type | |
1939 exp-button-char exp-button-function | |
1940 exp-button-data | |
1941 tag-button tag-button-function tag-button-data | |
1942 tag-button-face depth) | |
1943 "Create a tag line with EXP-BUTTON-TYPE for the small expansion button. | |
1944 This is the button that expands or contracts a node (if applicable), | |
1945 and EXP-BUTTON-CHAR the character in it (+, -, ?, etc). EXP-BUTTON-FUNCTION | |
1946 is the function to call if it's clicked on. Button types are | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1947 'bracket, 'angle, 'curly, 'expandtag, 'statictag, t, or nil. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1948 EXP-BUTTON-DATA is extra data attached to the text forming the expansion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1949 button. |
21650 | 1950 |
1951 Next, TAG-BUTTON is the text of the tag. TAG-BUTTON-FUNCTION is the | |
1952 function to call if clicked on, and TAG-BUTTON-DATA is the data to | |
1953 attach to the text field (such a tag positioning, etc). | |
1954 TAG-BUTTON-FACE is a face used for this type of tag. | |
1955 | |
1956 Lastly, DEPTH shows the depth of expansion. | |
1957 | |
1958 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
|
1959 position to insert a new item, and that the new item will end with a CR." |
21650 | 1960 (let ((start (point)) |
1961 (end (progn | |
1962 (insert (int-to-string depth) ":") | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1963 (point))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1964 (depthspacesize (* depth speedbar-indentation-width))) |
21650 | 1965 (put-text-property start end 'invisible t) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1966 (insert-char ? depthspacesize nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1967 (put-text-property (- (point) depthspacesize) (point) 'invisible nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1968 (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
|
1969 ((eq exp-button-type 'angle) "<%c>") |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1970 ((eq exp-button-type 'curly) "{%c}") |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1971 ((eq exp-button-type 'expandtag) " %c>") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1972 ((eq exp-button-type 'statictag) " =>") |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1973 (t ">"))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1974 (buttxt (format exp-button exp-button-char)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1975 (start (point)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1976 (end (progn (insert buttxt) (point))) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1977 (bf (if (and exp-button-type (not (eq exp-button-type 'statictag))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1978 'speedbar-button-face nil)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1979 (mf (if exp-button-function 'speedbar-highlight-face nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1980 ) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1981 (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
|
1982 (if speedbar-hide-button-brackets-flag |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1983 (progn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1984 (put-text-property start (1+ start) 'invisible t) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1985 (put-text-property end (1- end) 'invisible t))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1986 ) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1987 (insert-char ? 1 nil) |
21650 | 1988 (put-text-property (1- (point)) (point) 'invisible nil) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1989 (let ((start (point)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1990 (end (progn (insert tag-button) (point)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1991 (insert-char ?\n 1 nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1992 (put-text-property (1- (point)) (point) 'invisible nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1993 (speedbar-make-button start end tag-button-face |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1994 (if tag-button-function 'speedbar-highlight-face nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1995 tag-button-function tag-button-data)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
1996 )) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
1997 |
21650 | 1998 (defun speedbar-change-expand-button-char (char) |
1999 "Change the expansion button character to CHAR for the current line." | |
2000 (save-excursion | |
2001 (beginning-of-line) | |
2002 (if (re-search-forward ":\\s-*.\\([-+?]\\)" (save-excursion (end-of-line) | |
2003 (point)) t) | |
2004 (speedbar-with-writable | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2005 (goto-char (match-end 1)) |
22735 | 2006 (insert-char char 1 t) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2007 (forward-char -1) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2008 (delete-char -1) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2009 ;;(put-text-property (point) (1- (point)) 'invisible nil) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2010 ;; make sure we fix the image on the text here. |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2011 (speedbar-insert-image-button-maybe (- (point) 1) 3))))) |
21650 | 2012 |
2013 | |
2014 ;;; Build button lists | |
2015 ;; | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2016 (defun speedbar-insert-files-at-point (files level) |
21650 | 2017 "Insert list of FILES starting at point, and indenting all files to LEVEL. |
2018 Tag expandable items with a +, otherwise a ?. Don't highlight ? as we | |
2019 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
|
2020 cell of the form ( 'DIRLIST . 'FILELIST )." |
21650 | 2021 ;; Start inserting all the directories |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2022 (let ((dirs (car files))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2023 (while dirs |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2024 (speedbar-make-tag-line 'angle ?+ 'speedbar-dired (car dirs) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2025 (car dirs) 'speedbar-dir-follow nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2026 'speedbar-directory-face level) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2027 (setq dirs (cdr dirs)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2028 (let ((lst (car (cdr files))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2029 (case-fold-search t)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2030 (while lst |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2031 (let* ((known (string-match speedbar-file-regexp (car lst))) |
21650 | 2032 (expchar (if known ?+ ??)) |
2033 (fn (if known 'speedbar-tag-file nil))) | |
2034 (if (or speedbar-show-unknown-files (/= expchar ??)) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2035 (speedbar-make-tag-line 'bracket expchar fn (car lst) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2036 (car lst) 'speedbar-find-file nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2037 'speedbar-file-face level))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2038 (setq lst (cdr lst))))) |
21650 | 2039 |
2040 (defun speedbar-default-directory-list (directory index) | |
2041 "Insert files for DIRECTORY with level INDEX at point." | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2042 (speedbar-insert-files-at-point |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2043 (speedbar-file-lists directory) index) |
21650 | 2044 (speedbar-reset-scanners) |
2045 (if (= index 0) | |
2046 ;; If the shown files variable has extra directories, then | |
2047 ;; it is our responsibility to redraw them all | |
2048 ;; Luckilly, the nature of inserting items into this list means | |
2049 ;; that by reversing it, we can easilly go in the right order | |
2050 (let ((sf (cdr (reverse speedbar-shown-directories)))) | |
2051 (setq speedbar-shown-directories | |
2052 (list (expand-file-name default-directory))) | |
2053 ;; exand them all as we find them | |
2054 (while sf | |
2055 (if (speedbar-goto-this-file (car sf)) | |
2056 (progn | |
2057 (beginning-of-line) | |
2058 (if (looking-at "[0-9]+:[ ]*<") | |
2059 (progn | |
2060 (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
|
2061 (speedbar-do-function-pointer))))) |
e47fc6bb028d
(speedbar-default-directory-list): Made robust against deleted directories.
Richard M. Stallman <rms@gnu.org>
parents:
42456
diff
changeset
|
2062 (setq sf (cdr sf))) |
21650 | 2063 ))) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2064 ;;; Generic List support |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2065 ;; |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2066 ;; Generic lists are hierarchies of tags which we may need to permute |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2067 ;; in order to make it look nice. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2068 ;; |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2069 ;; A generic list is of the form: |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2070 ;; ( ("name" . marker-or-number) <-- one tag at this level |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2071 ;; ("name" ("name" . mon) ("name" . mon) ) <-- one group of tags |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2072 ;; ("name" mon ("name" . mon) ) <-- group w/ a position and tags |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2073 (defun speedbar-generic-list-group-p (sublst) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2074 "Non-nil if SUBLST is a group. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2075 Groups may optionally contain a position." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2076 (and (stringp (car-safe sublst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2077 (or (and (listp (cdr-safe sublst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2078 (or (speedbar-generic-list-tag-p (car-safe (cdr-safe sublst))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2079 (speedbar-generic-list-group-p (car-safe (cdr-safe sublst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2080 ))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2081 (and (number-or-marker-p (car-safe (cdr-safe sublst))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2082 (listp (cdr-safe (cdr-safe sublst))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2083 (speedbar-generic-list-tag-p |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2084 (car-safe (cdr-safe (cdr-safe sublst))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2085 ))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2086 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2087 (defun speedbar-generic-list-positioned-group-p (sublst) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2088 "Non-nil of SUBLST is a group with a position." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2089 (and (stringp (car-safe sublst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2090 (number-or-marker-p (car-safe (cdr-safe sublst))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2091 (listp (cdr-safe (cdr-safe sublst))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2092 (let ((rest (car-safe (cdr-safe (cdr-safe sublst))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2093 (or (speedbar-generic-list-tag-p rest) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2094 (speedbar-generic-list-group-p rest) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2095 (speedbar-generic-list-positioned-group-p rest) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2096 )))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2097 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2098 (defun speedbar-generic-list-tag-p (sublst) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2099 "Non nil if SUBLST is a tag." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2100 (and (stringp (car-safe sublst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2101 (or (and (number-or-marker-p (cdr-safe sublst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2102 (not (cdr-safe (cdr-safe sublst)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2103 ;; For semantic/bovine items, this is needed |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2104 (symbolp (car-safe (cdr-safe sublst)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2105 )) |
21650 | 2106 |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2107 (defun speedbar-sort-tag-hierarchy (lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2108 "Sort all elements of tag hierarchy LST." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2109 (sort (copy-alist lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2110 (lambda (a b) (string< (car a) (car b))))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2111 |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2112 (defun speedbar-try-completion (string alist) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2113 "A wrapper for `try-completion'. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2114 Passes STRING and ALIST to `try-completion' if ALIST |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2115 passes some tests." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2116 (if (and (listp alist) (not (null alist)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2117 (listp (car alist)) (stringp (car (car alist)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2118 (try-completion string alist) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2119 nil)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2120 |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2121 (defun speedbar-prefix-group-tag-hierarchy (lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2122 "Prefix group names for tag hierarchy LST." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2123 (let ((newlst nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2124 (sublst nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2125 (work-list nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2126 (junk-list nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2127 (short-group-list nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2128 (short-start-name nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2129 (short-end-name nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2130 (num-shorts-grouped 0) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2131 (bins (make-vector 256 nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2132 (diff-idx 0)) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2133 (if (<= (length lst) speedbar-tag-regroup-maximum-length) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2134 ;; Do nothing. Too short to bother with. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2135 lst |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2136 ;; Break out sub-lists |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2137 (while lst |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2138 (if (speedbar-generic-list-group-p (car-safe lst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2139 (setq newlst (cons (car lst) newlst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2140 (setq sublst (cons (car lst) sublst))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2141 (setq lst (cdr lst))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2142 ;; Reverse newlst because it was made backwards. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2143 ;; Sublist doesn't need reversing because the act |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2144 ;; of binning things will reverse it for us. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2145 (setq newlst (nreverse newlst) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2146 sublst sublst) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2147 ;; Now, first find out how long our list is. Never let a |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2148 ;; list get-shorter than our minimum. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2149 (if (<= (length sublst) speedbar-tag-split-minimum-length) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2150 (setq work-list sublst) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2151 (setq diff-idx (length (speedbar-try-completion "" sublst))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2152 ;; Sort the whole list into bins. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2153 (while sublst |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2154 (let ((e (car sublst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2155 (s (car (car sublst)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2156 (cond ((<= (length s) diff-idx) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2157 ;; 0 storage bin for shorty. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2158 (aset bins 0 (cons e (aref bins 0)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2159 (t |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2160 ;; stuff into a bin based on ascii value at diff |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2161 (aset bins (aref s diff-idx) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2162 (cons e (aref bins (aref s diff-idx))))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2163 (setq sublst (cdr sublst))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2164 ;; Go through all our bins Stick singles into our |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2165 ;; junk-list, everything else as sublsts in work-list. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2166 ;; If two neighboring lists are both small, make a grouped |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2167 ;; group combinding those two sub-lists. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2168 (setq diff-idx 0) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2169 (while (> 256 diff-idx) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2170 ;; The bins contents are currently in forward order. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2171 (let ((l (aref bins diff-idx))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2172 (if l |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2173 (let ((tmp (cons (speedbar-try-completion "" l) l))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2174 (if (or (> (length l) speedbar-tag-regroup-maximum-length) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2175 (> (+ (length l) (length short-group-list)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2176 speedbar-tag-split-minimum-length)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2177 (progn |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2178 ;; We have reached a longer list, so we |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2179 ;; must finish off a grouped group. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2180 (cond |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2181 ((and short-group-list |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2182 (= (length short-group-list) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2183 num-shorts-grouped)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2184 ;; All singles? Junk list |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2185 (setq junk-list (append (nreverse short-group-list) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2186 junk-list))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2187 ((= num-shorts-grouped 1) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2188 ;; Only one short group? Just stick it in |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2189 ;; there by itself. Make a group, and find |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2190 ;; a subexpression |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2191 (let ((subexpression (speedbar-try-completion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2192 "" short-group-list))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2193 (if (< (length subexpression) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2194 speedbar-tag-group-name-minimum-length) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2195 (setq subexpression |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2196 (concat short-start-name |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2197 " (" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2198 (substring |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2199 (car (car short-group-list)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2200 (length short-start-name)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2201 ")"))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2202 (setq work-list |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2203 (cons (cons subexpression |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2204 short-group-list) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2205 work-list )))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2206 (short-group-list |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2207 ;; Multiple groups to be named in a special |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2208 ;; way by displaying the range over which we |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2209 ;; have grouped them. |
22735 | 2210 (setq work-list |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2211 (cons (cons (concat short-start-name |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2212 " to " |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2213 short-end-name) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2214 short-group-list) |
22735 | 2215 work-list)))) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2216 ;; Reset short group list information every time. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2217 (setq short-group-list nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2218 short-start-name nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2219 short-end-name nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2220 num-shorts-grouped 0))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2221 ;; Ok, now that we cleaned up the short-group-list, |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2222 ;; we can deal with this new list, to decide if it |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2223 ;; should go on one of these sub-lists or not. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2224 (if (< (length l) speedbar-tag-regroup-maximum-length) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2225 (setq short-group-list (append l short-group-list) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2226 num-shorts-grouped (1+ num-shorts-grouped) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2227 short-end-name (car tmp) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2228 short-start-name (if short-start-name |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2229 short-start-name |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2230 (car tmp))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2231 (setq work-list (cons tmp work-list)))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2232 (setq diff-idx (1+ diff-idx)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2233 ;; Did we run out of things? Drop our new list onto the end. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2234 (cond |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2235 ((and short-group-list (= (length short-group-list) num-shorts-grouped)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2236 ;; All singles? Junk list |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2237 (setq junk-list (append short-group-list junk-list))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2238 ((= num-shorts-grouped 1) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2239 ;; Only one short group? Just stick it in |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2240 ;; there by itself. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2241 (setq work-list |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2242 (cons (cons (speedbar-try-completion "" short-group-list) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2243 short-group-list) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2244 work-list))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2245 (short-group-list |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2246 ;; Multiple groups to be named in a special |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2247 ;; way by displaying the range over which we |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2248 ;; have grouped them. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2249 (setq work-list |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2250 (cons (cons (concat short-start-name " to " short-end-name) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2251 short-group-list) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2252 work-list)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2253 ;; Reverse the work list nreversed when consing. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2254 (setq work-list (nreverse work-list)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2255 ;; Now, stick our new list onto the end of |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2256 (if work-list |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2257 (if junk-list |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2258 (append newlst work-list junk-list) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2259 (append newlst work-list)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2260 (append newlst junk-list))))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2261 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2262 (defun speedbar-trim-words-tag-hierarchy (lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2263 "Trim all words in a tag hierarchy. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2264 Base trimming information on word separators, and group names. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2265 Argument LST is the list of tags to trim." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2266 (let ((newlst nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2267 (sublst nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2268 (trim-prefix nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2269 (trim-chars 0) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2270 (trimlst nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2271 (while lst |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2272 (if (speedbar-generic-list-group-p (car-safe lst)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2273 (setq newlst (cons (car lst) newlst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2274 (setq sublst (cons (car lst) sublst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2275 (setq lst (cdr lst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2276 ;; 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
|
2277 ;; off silly pieces, only complete understandable words. |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2278 (setq trim-prefix (speedbar-try-completion "" sublst) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2279 newlst (nreverse newlst)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2280 (if (or (= (length sublst) 1) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2281 (not trim-prefix) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2282 (not (string-match "\\(\\w+\\W+\\)+" trim-prefix))) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2283 (append newlst (nreverse sublst)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2284 (setq trim-prefix (substring trim-prefix (match-beginning 0) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2285 (match-end 0))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2286 (setq trim-chars (length trim-prefix)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2287 (while sublst |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2288 (setq trimlst (cons |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2289 (cons (substring (car (car sublst)) trim-chars) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2290 (cdr (car sublst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2291 trimlst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2292 sublst (cdr sublst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2293 ;; Put the lists together |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2294 (append newlst trimlst)))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2295 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2296 (defun speedbar-simple-group-tag-hierarchy (lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2297 "Create a simple 'Tags' group with orphaned tags. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2298 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
|
2299 (let ((newlst nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2300 (sublst nil)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2301 (while lst |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2302 (if (speedbar-generic-list-group-p (car-safe lst)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2303 (setq newlst (cons (car lst) newlst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2304 (setq sublst (cons (car lst) sublst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2305 (setq lst (cdr lst))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2306 (if (not newlst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2307 (nreverse sublst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2308 (setq newlst (cons (cons "Tags" (nreverse sublst)) newlst)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2309 (nreverse newlst)))) |
22735 | 2310 |
2311 (defun speedbar-create-tag-hierarchy (lst) | |
2312 "Adjust the tag hierarchy in LST, and return it. | |
2313 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
|
2314 the list." |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2315 (let* ((f (save-excursion |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2316 (forward-line -1) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2317 (or (speedbar-line-file) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2318 (speedbar-line-directory)))) |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2319 (methods (if (get-file-buffer f) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2320 (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
|
2321 speedbar-tag-hierarchy-method) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2322 speedbar-tag-hierarchy-method)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2323 (lst (if (fboundp 'copy-tree) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2324 (copy-tree lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2325 lst))) |
22735 | 2326 (while methods |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2327 (setq lst (funcall (car methods) lst) |
22735 | 2328 methods (cdr methods))) |
2329 lst)) | |
2330 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2331 (defvar speedbar-generic-list-group-expand-button-type 'curly |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2332 "The type of button created for groups of tags. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2333 Good values for this are `curly' and `expandtag'. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2334 Make buffer local for your mode.") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2335 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2336 (defvar speedbar-generic-list-tag-button-type nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2337 "The type of button created for tags in generic lists. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2338 Good values for this are nil and `statictag'. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2339 Make buffer local for your mode.") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2340 |
21650 | 2341 (defun speedbar-insert-generic-list (level lst expand-fun find-fun) |
2342 "At LEVEL, insert a generic multi-level alist LST. | |
2343 Associations with lists get {+} tags (to expand into more nodes) and | |
2344 those with positions just get a > as the indicator. {+} buttons will | |
2345 have the function EXPAND-FUN and the token is the CDR list. The token | |
2346 name will have the function FIND-FUN and not token." | |
2347 ;; Remove imenu rescan button | |
2348 (if (string= (car (car lst)) "*Rescan*") | |
2349 (setq lst (cdr lst))) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2350 ;; Get, and set up variables that define how we treat these tags. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2351 (let ((f (save-excursion (forward-line -1) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2352 (or (speedbar-line-file) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2353 (speedbar-line-directory)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2354 expand-button tag-button) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2355 (save-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2356 (if (get-file-buffer f) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2357 (set-buffer (get-file-buffer f))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2358 (setq expand-button speedbar-generic-list-group-expand-button-type |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2359 tag-button speedbar-generic-list-tag-button-type)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2360 ;; Adjust the list. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2361 (setq lst (speedbar-create-tag-hierarchy lst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2362 ;; insert the parts |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2363 (while lst |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2364 (cond ((null (car-safe lst)) nil) ;this would be a separator |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2365 ((speedbar-generic-list-tag-p (car lst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2366 (speedbar-make-tag-line tag-button |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2367 nil nil nil ;no expand button data |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2368 (car (car lst)) ;button name |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2369 find-fun ;function |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2370 (cdr (car lst)) ;token is position |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2371 'speedbar-tag-face |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2372 (1+ level))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2373 ((speedbar-generic-list-positioned-group-p (car lst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2374 (speedbar-make-tag-line expand-button |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2375 ?+ expand-fun (cdr (cdr (car lst))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2376 (car (car lst)) ;button name |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2377 find-fun ;function |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2378 (car (cdr (car lst))) ;token is posn |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2379 'speedbar-tag-face |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2380 (1+ level))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2381 ((speedbar-generic-list-group-p (car lst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2382 (speedbar-make-tag-line expand-button |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2383 ?+ expand-fun (cdr (car lst)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2384 (car (car lst)) ;button name |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2385 nil nil 'speedbar-tag-face |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2386 (1+ level))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2387 (t (speedbar-message "speedbar-insert-generic-list: malformed list!") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2388 )) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2389 (setq lst (cdr lst))))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2390 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2391 (defun speedbar-insert-imenu-list (indent lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2392 "At level INDENT, insert the imenu generated LST." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2393 (speedbar-insert-generic-list indent lst |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2394 'speedbar-tag-expand |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2395 'speedbar-tag-find)) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2396 |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2397 (defun speedbar-insert-etags-list (indent lst) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2398 "At level INDENT, insert the etags generated LST." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2399 (speedbar-insert-generic-list indent lst |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2400 'speedbar-tag-expand |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2401 'speedbar-tag-find)) |
21650 | 2402 |
2403 ;;; Timed functions | |
2404 ;; | |
2405 (defun speedbar-update-contents () | |
2406 "Generically update the contents of the speedbar buffer." | |
2407 (interactive) | |
2408 ;; Set the current special buffer | |
2409 (setq speedbar-desired-buffer nil) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2410 |
22735 | 2411 ;; Check for special modes |
2412 (speedbar-maybe-add-localized-support (current-buffer)) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2413 |
22735 | 2414 ;; Choose the correct method of doodling. |
21650 | 2415 (if (and speedbar-mode-specific-contents-flag |
22735 | 2416 (listp speedbar-special-mode-expansion-list) |
21650 | 2417 speedbar-special-mode-expansion-list |
2418 (local-variable-p | |
2419 'speedbar-special-mode-expansion-list | |
2420 (current-buffer))) | |
2421 ;;(eq (get major-mode 'mode-class 'special))) | |
2422 (speedbar-update-special-contents) | |
2423 (speedbar-update-directory-contents))) | |
2424 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2425 (defun speedbar-update-localized-contents () |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2426 "Update the contents of the speedbar buffer for the current situation." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2427 ;; Due to the historical growth of speedbar, we need to do something |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2428 ;; special for "files" mode. Too bad. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2429 (let ((name speedbar-initial-expansion-list-name) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2430 (funclst (speedbar-initial-expansion-list)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2431 ) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2432 (if (string= name "files") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2433 ;; Do all the files type work. It still goes through the |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2434 ;; expansion list stuff. :( |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2435 (if (or (member (expand-file-name default-directory) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2436 speedbar-shown-directories) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2437 (and speedbar-ignored-directory-regexp |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2438 (string-match |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2439 speedbar-ignored-directory-regexp |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2440 (expand-file-name default-directory)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2441 nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2442 (if (<= 1 speedbar-verbosity-level) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2443 (speedbar-message "Updating speedbar to: %s..." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2444 default-directory)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2445 (speedbar-update-directory-contents) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2446 (if (<= 1 speedbar-verbosity-level) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2447 (progn |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2448 (speedbar-message "Updating speedbar to: %s...done" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2449 default-directory) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2450 (speedbar-message nil)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2451 ;; Else, we can do a short cut. No text cache. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2452 (let ((cbd (expand-file-name default-directory)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2453 ) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2454 (set-buffer speedbar-buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2455 (speedbar-with-writable |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2456 (erase-buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2457 (while funclst |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2458 (setq default-directory cbd) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2459 (funcall (car funclst) cbd 0) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2460 (setq funclst (cdr funclst))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2461 (speedbar-reconfigure-keymaps) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2462 (goto-char (point-min))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2463 )))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2464 |
21650 | 2465 (defun speedbar-update-directory-contents () |
2466 "Update the contents of the speedbar buffer based on the current directory." | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2467 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2468 (save-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2469 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2470 (let ((cbd (expand-file-name default-directory)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2471 cbd-parent |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2472 (funclst (speedbar-initial-expansion-list)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2473 (cache speedbar-full-text-cache) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2474 ;; disable stealth during update |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2475 (speedbar-stealthy-function-list nil) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2476 (use-cache nil) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2477 (expand-local nil) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2478 ;; Because there is a bug I can't find just yet |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2479 (inhibit-quit nil)) |
21650 | 2480 (set-buffer speedbar-buffer) |
2481 ;; If we are updating contents to where we are, then this is | |
2482 ;; really a request to update existing contents, so we must be | |
2483 ;; careful with our text cache! | |
2484 (if (member cbd speedbar-shown-directories) | |
22735 | 2485 (progn |
2486 (setq cache nil) | |
2487 ;; If the current directory is not the last element in the dir | |
2488 ;; list, then we ALSO need to zap the list of expanded directories | |
2489 (if (/= (length (member cbd speedbar-shown-directories)) 1) | |
2490 (setq speedbar-shown-directories (list cbd)))) | |
21650 | 2491 |
2492 ;; Build cbd-parent, and see if THAT is in the current shown | |
2493 ;; directories. First, go through pains to get the parent directory | |
2494 (if (and speedbar-smart-directory-expand-flag | |
2495 (save-match-data | |
2496 (setq cbd-parent cbd) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
2497 (if (string-match "[/\\]$" cbd-parent) |
22735 | 2498 (setq cbd-parent (substring cbd-parent 0 |
2499 (match-beginning 0)))) | |
21650 | 2500 (setq cbd-parent (file-name-directory cbd-parent))) |
2501 (member cbd-parent speedbar-shown-directories)) | |
2502 (setq expand-local t) | |
2503 | |
2504 ;; If this directory is NOT in the current list of available | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2505 ;; directorys, then use the cache, and set the cache to our new |
21650 | 2506 ;; value. Make sure to unhighlight the current file, or if we |
2507 ;; come back to this directory, it might be a different file | |
2508 ;; and then we get a mess! | |
2509 (if (> (point-max) 1) | |
2510 (progn | |
2511 (speedbar-clear-current-file) | |
2512 (setq speedbar-full-text-cache | |
2513 (cons speedbar-shown-directories (buffer-string))))) | |
2514 | |
2515 ;; Check if our new directory is in the list of directories | |
2516 ;; shown in the text-cache | |
2517 (if (member cbd (car cache)) | |
2518 (setq speedbar-shown-directories (car cache) | |
2519 use-cache t) | |
2520 ;; default the shown directories to this list... | |
2521 (setq speedbar-shown-directories (list cbd))) | |
2522 )) | |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2523 (if (not expand-local) (setq speedbar-last-selected-file nil)) |
21650 | 2524 (speedbar-with-writable |
2525 (if (and expand-local | |
2526 ;; Find this directory as a speedbar node. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2527 (speedbar-directory-line cbd)) |
21650 | 2528 ;; Open it. |
2529 (speedbar-expand-line) | |
2530 (erase-buffer) | |
2531 (cond (use-cache | |
2532 (setq default-directory | |
2533 (nth (1- (length speedbar-shown-directories)) | |
2534 speedbar-shown-directories)) | |
2535 (insert (cdr cache))) | |
2536 (t | |
2537 (while funclst | |
2538 (setq default-directory cbd) | |
2539 (funcall (car funclst) cbd 0) | |
2540 (setq funclst (cdr funclst)))))) | |
2541 (goto-char (point-min))))) | |
22735 | 2542 (speedbar-reconfigure-keymaps)) |
21650 | 2543 |
2544 (defun speedbar-update-special-contents () | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
2545 "Use the mode-specific variable to fill in the speedbar buffer. |
21650 | 2546 This should only be used by modes classified as special." |
2547 (let ((funclst speedbar-special-mode-expansion-list) | |
2548 (specialbuff (current-buffer))) | |
2549 (save-excursion | |
2550 (setq speedbar-desired-buffer specialbuff) | |
2551 (set-buffer speedbar-buffer) | |
2552 ;; If we are leaving a directory, cache it. | |
2553 (if (not speedbar-shown-directories) | |
2554 ;; Do nothing | |
2555 nil | |
2556 ;; Clean up directory maintenance stuff | |
2557 (speedbar-clear-current-file) | |
2558 (setq speedbar-full-text-cache | |
2559 (cons speedbar-shown-directories (buffer-string)) | |
2560 speedbar-shown-directories nil)) | |
2561 ;; Now fill in the buffer with our newly found specialized list. | |
2562 (speedbar-with-writable | |
2563 (while funclst | |
2564 ;; We do not erase the buffer because these functions may | |
2565 ;; decide NOT to update themselves. | |
2566 (funcall (car funclst) specialbuff) | |
2567 (setq funclst (cdr funclst)))) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2568 |
21650 | 2569 (goto-char (point-min)))) |
22735 | 2570 (speedbar-reconfigure-keymaps)) |
21650 | 2571 |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2572 (defun speedbar-set-timer (timeout) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2573 "Set up the speedbar timer with TIMEOUT. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2574 Uses `dframe-set-timer'. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2575 Also resets scanner functions." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2576 (dframe-set-timer timeout 'speedbar-timer-fn 'speedbar-update-flag) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2577 ;; Apply a revert hook that will reset the scanners. We attach to revert |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2578 ;; because most reverts occur during VC state change, and this lets our |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2579 ;; VC scanner fix itself. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2580 (if timeout |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2581 (add-hook 'after-revert-hook 'speedbar-reset-scanners) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2582 (remove-hook 'after-revert-hook 'speedbar-reset-scanners)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2583 ;; change this if it changed for some reason |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2584 (speedbar-set-mode-line-format)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2585 |
21650 | 2586 (defun speedbar-timer-fn () |
22735 | 2587 "Run whenever Emacs is idle to update the speedbar item." |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2588 (if (or (not (speedbar-current-frame)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2589 (not (frame-live-p (speedbar-current-frame)))) |
21650 | 2590 (speedbar-set-timer nil) |
2591 ;; Save all the match data so that we don't mess up executing fns | |
2592 (save-match-data | |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2593 ;; 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
|
2594 ;; 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
|
2595 (if (and speedbar-update-flag |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2596 (speedbar-current-frame) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2597 (frame-visible-p (speedbar-current-frame)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2598 (not (eq (frame-visible-p (speedbar-current-frame)) 'icon))) |
21650 | 2599 (let ((af (selected-frame))) |
2600 (save-window-excursion | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2601 (dframe-select-attached-frame speedbar-frame) |
21650 | 2602 ;; make sure we at least choose a window to |
2603 ;; 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
|
2604 (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
|
2605 nil |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2606 ;; Check for special modes |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2607 (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
|
2608 ;; 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
|
2609 (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
|
2610 (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
|
2611 speedbar-special-mode-expansion-list |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2612 (local-variable-p |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2613 'speedbar-special-mode-expansion-list |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2614 (current-buffer))) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2615 ;;(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
|
2616 (progn |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2617 (if (<= 2 speedbar-verbosity-level) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2618 (speedbar-message |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2619 "Updating speedbar to special mode: %s..." |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2620 major-mode)) |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2621 (speedbar-update-special-contents) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2622 (if (<= 2 speedbar-verbosity-level) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2623 (progn |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2624 (speedbar-message |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2625 "Updating speedbar to special mode: %s...done" |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2626 major-mode) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2627 (speedbar-message nil)))) |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2628 ;; Update all the contents if directories change! |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2629 (if (or (member major-mode speedbar-ignored-modes) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2630 (eq af (speedbar-current-frame)) |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2631 (not (buffer-file-name))) |
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2632 nil |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2633 (speedbar-update-localized-contents) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2634 )) |
23073
a0e975baf1e1
(speedbar-timer-fn): Disable updating if the frame
Eric M. Ludlam <zappo@gnu.org>
parents:
23015
diff
changeset
|
2635 (select-frame af))) |
21650 | 2636 ;; Now run stealthy updates of time-consuming items |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2637 (speedbar-stealthy-updates))))) |
21650 | 2638 (run-hooks 'speedbar-timer-hook)) |
2639 | |
2640 | |
2641 ;;; Stealthy activities | |
2642 ;; | |
22735 | 2643 (defvar speedbar-stealthy-update-recurse nil |
2644 "Recursion avoidance variable for stealthy update.") | |
2645 | |
21650 | 2646 (defun speedbar-stealthy-updates () |
2647 "For a given speedbar, run all items in the stealthy function list. | |
2648 Each item returns t if it completes successfully, or nil if | |
2649 interrupted by the user." | |
22735 | 2650 (if (not speedbar-stealthy-update-recurse) |
2651 (let ((l (speedbar-initial-stealthy-functions)) | |
2652 (speedbar-stealthy-update-recurse t)) | |
2653 (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
|
2654 (speedbar-with-writable |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2655 (while (and l (funcall (car l))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2656 ;;(sit-for 0) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
2657 (setq l (cdr l)))) |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2658 ;;(speedbar-message "Exit with %S" (car l)) |
22735 | 2659 )))) |
21650 | 2660 |
2661 (defun speedbar-reset-scanners () | |
2662 "Reset any variables used by functions in the stealthy list as state. | |
2663 If new functions are added, their state needs to be updated here." | |
22735 | 2664 (setq speedbar-vc-to-do-point t |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2665 speedbar-obj-to-do-point t |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2666 speedbar-ro-to-do-point t) |
21650 | 2667 (run-hooks 'speedbar-scanner-reset-hook) |
2668 ) | |
2669 | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2670 (defun speedbar-find-selected-file (file) |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
2671 "Go to the line where FILE is." |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2672 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2673 (set-buffer speedbar-buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2674 |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2675 (goto-char (point-min)) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2676 (let ((m nil)) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2677 (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
|
2678 (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
|
2679 "\\)\\(" speedbar-indicator-regex "\\)?\n") |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2680 nil t)) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2681 (not (string= file |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2682 (concat |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2683 (speedbar-line-directory |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2684 (save-excursion |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2685 (goto-char (match-beginning 0)) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2686 (beginning-of-line) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2687 (save-match-data |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2688 (looking-at "[0-9]+:") |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2689 (string-to-number (match-string 0))))) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2690 (match-string 1)))))) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2691 (if m |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2692 (progn |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2693 (goto-char (match-beginning 1)) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2694 (match-string 1))))) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2695 |
21650 | 2696 (defun speedbar-clear-current-file () |
2697 "Locate the file thought to be current, and remove its highlighting." | |
2698 (save-excursion | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2699 ;;(set-buffer speedbar-buffer) |
21650 | 2700 (if speedbar-last-selected-file |
2701 (speedbar-with-writable | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2702 (if (speedbar-find-selected-file speedbar-last-selected-file) |
21650 | 2703 (put-text-property (match-beginning 1) |
2704 (match-end 1) | |
2705 'face | |
2706 'speedbar-file-face)))))) | |
2707 | |
2708 (defun speedbar-update-current-file () | |
2709 "Find the current file, and update our visuals to indicate its name. | |
2710 This is specific to file names. If the file name doesn't show up, but | |
2711 it should be in the list, then the directory cache needs to be | |
2712 updated." | |
2713 (let* ((lastf (selected-frame)) | |
2714 (newcfd (save-excursion | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2715 (dframe-select-attached-frame speedbar-frame) |
21650 | 2716 (let ((rf (if (buffer-file-name) |
2717 (buffer-file-name) | |
2718 nil))) | |
2719 (select-frame lastf) | |
2720 rf))) | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2721 (newcf (if newcfd newcfd)) |
21650 | 2722 (lastb (current-buffer)) |
22735 | 2723 (sucf-recursive (boundp 'sucf-recursive)) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2724 (case-fold-search t)) |
21650 | 2725 (if (and newcf |
2726 ;; check here, that way we won't refresh to newcf until | |
2727 ;; its been written, thus saving ourselves some time | |
2728 (file-exists-p newcf) | |
2729 (not (string= newcf speedbar-last-selected-file))) | |
2730 (progn | |
2731 ;; It is important to select the frame, otherwise the window | |
2732 ;; we want the cursor to move in will not be updated by the | |
2733 ;; search-forward command. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2734 (select-frame (speedbar-current-frame)) |
21650 | 2735 ;; Remove the old file... |
2736 (speedbar-clear-current-file) | |
2737 ;; now highlight the new one. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2738 ;; (set-buffer speedbar-buffer) |
21650 | 2739 (speedbar-with-writable |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2740 (if (speedbar-find-selected-file newcf) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2741 ;; put the property on it |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2742 (put-text-property (match-beginning 1) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2743 (match-end 1) |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2744 'face |
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2745 'speedbar-selected-face) |
21650 | 2746 ;; Oops, it's not in the list. Should it be? |
2747 (if (and (string-match speedbar-file-regexp newcf) | |
2748 (string= (file-name-directory newcfd) | |
2749 (expand-file-name default-directory))) | |
2750 ;; yes, it is (we will ignore unknowns for now...) | |
2751 (progn | |
2752 (speedbar-refresh) | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
2753 (if (speedbar-find-selected-file newcf) |
21650 | 2754 ;; put the property on it |
2755 (put-text-property (match-beginning 1) | |
2756 (match-end 1) | |
2757 'face | |
2758 'speedbar-selected-face))) | |
2759 ;; if it's not in there now, whatever... | |
2760 )) | |
2761 (setq speedbar-last-selected-file newcf)) | |
2762 (if (not sucf-recursive) | |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
2763 (progn |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2764 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2765 ;;Sat Dec 15 2001 12:40 AM (burton@openprivacy.org): this |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2766 ;;doesn't need to be in. We don't want to recenter when we are |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2767 ;;updating files. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2768 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2769 ;;(speedbar-center-buffer-smartly) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2770 |
22893
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
2771 (speedbar-position-cursor-on-line) |
322179a8fd20
(speedbar-update-current-file): Added call to
Eric M. Ludlam <zappo@gnu.org>
parents:
22735
diff
changeset
|
2772 )) |
21650 | 2773 (set-buffer lastb) |
2774 (select-frame lastf) | |
2775 ))) | |
2776 ;; return that we are done with this activity. | |
2777 t) | |
2778 | |
22735 | 2779 (defun speedbar-add-indicator (indicator-string &optional replace-this) |
2780 "Add INDICATOR-STRING to the end of this speedbar line. | |
2781 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
|
2782 the existing indicator is removed. If there is already an |
22735 | 2783 indicator, then do not add a space." |
2784 (beginning-of-line) | |
2785 ;; The nature of the beast: Assume we are in "the right place" | |
2786 (end-of-line) | |
2787 (skip-chars-backward (concat " " speedbar-vc-indicator | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2788 speedbar-object-read-only-indicator |
22735 | 2789 (car speedbar-obj-indicator) |
2790 (cdr speedbar-obj-indicator))) | |
2791 (if (and (not (looking-at speedbar-indicator-regex)) | |
2792 (not (string= indicator-string " "))) | |
2793 (insert speedbar-indicator-separator)) | |
2794 (speedbar-with-writable | |
2795 (save-excursion | |
2796 (if (and replace-this | |
2797 (re-search-forward replace-this (save-excursion (end-of-line) | |
2798 (point)) | |
2799 t)) | |
2800 (delete-region (match-beginning 0) (match-end 0)))) | |
2801 (end-of-line) | |
2802 (if (not (string= " " indicator-string)) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2803 (let ((start (point))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2804 (insert indicator-string) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2805 (speedbar-insert-image-button-maybe start (length indicator-string)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2806 )))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2807 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2808 (defun speedbar-check-read-only () |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2809 "Scan all the files in a directory, and for each see if it is read only." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2810 ;; Check for to-do to be reset. If reset but no RCS is available |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2811 ;; then set to nil (do nothing) otherwise, start at the beginning |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2812 (save-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2813 (if speedbar-buffer (set-buffer speedbar-buffer)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2814 (if (eq speedbar-ro-to-do-point t) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2815 (setq speedbar-ro-to-do-point 0)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2816 (if (numberp speedbar-ro-to-do-point) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2817 (progn |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2818 (goto-char speedbar-ro-to-do-point) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2819 (while (and (not (input-pending-p)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2820 (re-search-forward "^\\([0-9]+\\):\\s-*[[<][+-\?][]>] " |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2821 nil t)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2822 (setq speedbar-ro-to-do-point (point)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2823 (if (not (file-writable-p (speedbar-line-file))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2824 (speedbar-add-indicator |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2825 speedbar-object-read-only-indicator |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2826 (regexp-quote speedbar-object-read-only-indicator)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2827 (speedbar-add-indicator |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2828 " " (regexp-quote speedbar-object-read-only-indicator)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2829 (if (input-pending-p) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2830 ;; return that we are incomplete |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2831 nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2832 ;; we are done, set to-do to nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2833 (setq speedbar-ro-to-do-point nil) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2834 ;; and return t |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2835 t)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2836 t))) |
22735 | 2837 |
2838 ;; Load efs/ange-ftp only if compiling to remove byte-compiler warnings. | |
21650 | 2839 ;; Steven L Baur <steve@xemacs.org> said this was important: |
22735 | 2840 (eval-when-compile (or (featurep 'xemacs) |
2841 (condition-case () (require 'efs) | |
2842 (error (require 'ange-ftp))))) | |
21650 | 2843 |
2844 (defun speedbar-check-vc () | |
2845 "Scan all files in a directory, and for each see if it's checked out. | |
2846 See `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p' for how | |
2847 to add more types of version control systems." | |
2848 ;; Check for to-do to be reset. If reset but no RCS is available | |
2849 ;; then set to nil (do nothing) otherwise, start at the beginning | |
2850 (save-excursion | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2851 (if speedbar-buffer (set-buffer speedbar-buffer)) |
21650 | 2852 (if (and speedbar-vc-do-check (eq speedbar-vc-to-do-point t) |
2853 (speedbar-vc-check-dir-p default-directory) | |
22735 | 2854 (not (or (and (featurep 'ange-ftp) |
2855 (string-match | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2856 (car (symbol-value |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2857 (if dframe-xemacsp |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2858 'ange-ftp-directory-format |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2859 'ange-ftp-name-format))) |
22735 | 2860 (expand-file-name default-directory))) |
2861 ;; efs support: Bob Weiner | |
2862 (and (featurep 'efs) | |
2863 (string-match | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2864 (let ((reg (symbol-value 'efs-directory-regexp))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2865 (if (stringp reg) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2866 reg |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2867 (car reg))) |
22735 | 2868 (expand-file-name default-directory)))))) |
21650 | 2869 (setq speedbar-vc-to-do-point 0)) |
2870 (if (numberp speedbar-vc-to-do-point) | |
2871 (progn | |
2872 (goto-char speedbar-vc-to-do-point) | |
2873 (while (and (not (input-pending-p)) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2874 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-?]\\] " |
21650 | 2875 nil t)) |
2876 (setq speedbar-vc-to-do-point (point)) | |
2877 (if (speedbar-check-vc-this-line (match-string 1)) | |
22735 | 2878 (speedbar-add-indicator speedbar-vc-indicator |
2879 (regexp-quote speedbar-vc-indicator)) | |
2880 (speedbar-add-indicator " " | |
2881 (regexp-quote speedbar-vc-indicator)))) | |
21650 | 2882 (if (input-pending-p) |
2883 ;; return that we are incomplete | |
2884 nil | |
2885 ;; we are done, set to-do to nil | |
2886 (setq speedbar-vc-to-do-point nil) | |
2887 ;; and return t | |
2888 t)) | |
2889 t))) | |
2890 | |
2891 (defun speedbar-check-vc-this-line (depth) | |
2892 "Return t if the file on this line is check of of a version control system. | |
2893 Parameter DEPTH is a string with the current depth of indentation of | |
2894 the file being checked." | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2895 (let* ((d (string-to-number depth)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2896 (f (speedbar-line-directory d)) |
21650 | 2897 (fn (buffer-substring-no-properties |
2898 ;; Skip-chars: thanks ptype@dra.hmg.gb | |
2899 (point) (progn | |
2900 (skip-chars-forward "^ " | |
2901 (save-excursion (end-of-line) | |
2902 (point))) | |
2903 (point)))) | |
2904 (fulln (concat f fn))) | |
2905 (if (<= 2 speedbar-verbosity-level) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
2906 (speedbar-message "Speedbar vc check...%s" fulln)) |
21650 | 2907 (and (file-writable-p fulln) |
2908 (speedbar-this-file-in-vc f fn)))) | |
2909 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2910 (defun speedbar-vc-check-dir-p (directory) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2911 "Return t if we should bother checking DIRECTORY for version control files. |
21650 | 2912 This can be overloaded to add new types of version control systems." |
2913 (or | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2914 ;; Local CVS available in Emacs 21 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2915 (and (fboundp 'vc-state) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2916 (file-exists-p (concat directory "CVS/"))) |
21650 | 2917 ;; Local RCS |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2918 (file-exists-p (concat directory "RCS/")) |
21650 | 2919 ;; Local SCCS |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2920 (file-exists-p (concat directory "SCCS/")) |
21650 | 2921 ;; Remote SCCS project |
2922 (let ((proj-dir (getenv "PROJECTDIR"))) | |
2923 (if proj-dir | |
2924 (file-exists-p (concat proj-dir "/SCCS")) | |
2925 nil)) | |
2926 ;; User extension | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2927 (run-hook-with-args-until-success 'speedbar-vc-directory-enable-hook |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2928 directory) |
21650 | 2929 )) |
2930 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2931 (defun speedbar-this-file-in-vc (directory name) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2932 "Check to see if the file in DIRECTORY with NAME is in a version control system. |
21650 | 2933 You can add new VC systems by overriding this function. You can |
2934 optimize this function by overriding it and only doing those checks | |
2935 that will occur on your system." | |
2936 (or | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2937 (if (fboundp 'vc-state) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2938 ;; Emacs 21 handles VC state in a nice way. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2939 (condition-case nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2940 (let ((state (vc-state (concat directory name)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2941 (not (or (eq 'up-to-date state) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2942 (null state)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2943 ;; An error means not in a VC system |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2944 (error nil)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2945 (or |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2946 ;; RCS file name |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2947 (file-exists-p (concat directory "RCS/" name ",v")) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2948 (file-exists-p (concat directory "RCS/" name)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2949 ;; Local SCCS file name |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2950 (file-exists-p (concat directory "SCCS/s." name)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2951 ;; Remote SCCS file name |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2952 (let ((proj-dir (getenv "PROJECTDIR"))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2953 (if proj-dir |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2954 (file-exists-p (concat proj-dir "/SCCS/s." name)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2955 nil)))) |
21650 | 2956 ;; User extension |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2957 (run-hook-with-args 'speedbar-vc-in-control-hook directory name) |
21650 | 2958 )) |
22735 | 2959 |
2960 ;; Objet File scanning | |
2961 (defun speedbar-check-objects () | |
2962 "Scan all files in a directory, and for each see if there is an object. | |
2963 See `speedbar-check-obj-this-line' and `speedbar-obj-alist' for how | |
2964 to add more object types." | |
2965 ;; Check for to-do to be reset. If reset but no RCS is available | |
2966 ;; then set to nil (do nothing) otherwise, start at the beginning | |
2967 (save-excursion | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2968 (if speedbar-buffer (set-buffer speedbar-buffer)) |
22735 | 2969 (if (and speedbar-obj-do-check (eq speedbar-obj-to-do-point t)) |
2970 (setq speedbar-obj-to-do-point 0)) | |
2971 (if (numberp speedbar-obj-to-do-point) | |
2972 (progn | |
2973 (goto-char speedbar-obj-to-do-point) | |
2974 (while (and (not (input-pending-p)) | |
2975 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] " | |
2976 nil t)) | |
2977 (setq speedbar-obj-to-do-point (point)) | |
2978 (let ((ind (speedbar-check-obj-this-line (match-string 1)))) | |
2979 (if (not ind) (setq ind " ")) | |
2980 (speedbar-add-indicator ind (concat | |
2981 (car speedbar-obj-indicator) | |
2982 "\\|" | |
2983 (cdr speedbar-obj-indicator))))) | |
2984 (if (input-pending-p) | |
2985 ;; return that we are incomplete | |
2986 nil | |
2987 ;; we are done, set to-do to nil | |
2988 (setq speedbar-obj-to-do-point nil) | |
2989 ;; and return t | |
2990 t)) | |
2991 t))) | |
2992 | |
2993 (defun speedbar-check-obj-this-line (depth) | |
2994 "Return t if the file on this line has an associated object. | |
2995 Parameter DEPTH is a string with the current depth of indentation of | |
2996 the file being checked." | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2997 (let* ((d (string-to-number depth)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
2998 (f (speedbar-line-directory d)) |
22735 | 2999 (fn (buffer-substring-no-properties |
3000 ;; Skip-chars: thanks ptype@dra.hmg.gb | |
3001 (point) (progn | |
3002 (skip-chars-forward "^ " | |
3003 (save-excursion (end-of-line) | |
3004 (point))) | |
3005 (point)))) | |
3006 (fulln (concat f fn))) | |
3007 (if (<= 2 speedbar-verbosity-level) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3008 (speedbar-message "Speedbar obj check...%s" fulln)) |
22735 | 3009 (let ((oa speedbar-obj-alist)) |
3010 (while (and oa (not (string-match (car (car oa)) fulln))) | |
3011 (setq oa (cdr oa))) | |
3012 (if (not (and oa (file-exists-p (concat (file-name-sans-extension fulln) | |
3013 (cdr (car oa)))))) | |
3014 nil | |
3015 ;; Find out if the object is out of date or not. | |
3016 (let ((date1 (nth 5 (file-attributes fulln))) | |
3017 (date2 (nth 5 (file-attributes (concat | |
3018 (file-name-sans-extension fulln) | |
3019 (cdr (car oa))))))) | |
3020 (if (or (< (car date1) (car date2)) | |
3021 (and (= (car date1) (car date2)) | |
3022 (< (nth 1 date1) (nth 1 date2)))) | |
3023 (car speedbar-obj-indicator) | |
3024 (cdr speedbar-obj-indicator))))))) | |
21650 | 3025 |
3026 ;;; Clicking Activity | |
3027 ;; | |
3028 (defun speedbar-position-cursor-on-line () | |
3029 "Position the cursor on a line." | |
3030 (let ((oldpos (point))) | |
3031 (beginning-of-line) | |
3032 (if (looking-at "[0-9]+:\\s-*..?.? ") | |
3033 (goto-char (1- (match-end 0))) | |
3034 (goto-char oldpos)))) | |
3035 | |
3036 (defun speedbar-click (e) | |
3037 "Activate any speedbar buttons where the mouse is clicked. | |
3038 This must be bound to a mouse event. A button is any location of text | |
3039 with a mouse face that has a text property called `speedbar-function'. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3040 Argument E is the click event." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3041 ;; Backward compatibility let statement. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3042 (let ((speedbar-power-click dframe-power-click)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3043 (speedbar-do-function-pointer)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3044 (dframe-quick-mouse e)) |
21650 | 3045 |
3046 (defun speedbar-do-function-pointer () | |
3047 "Look under the cursor and examine the text properties. | |
3048 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
|
3049 a function if appropriate." |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3050 (let* ((speedbar-frame (speedbar-current-frame)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3051 (fn (get-text-property (point) 'speedbar-function)) |
21650 | 3052 (tok (get-text-property (point) 'speedbar-token)) |
3053 ;; The 1-,+ is safe because scaning starts AFTER the point | |
3054 ;; specified. This lets the search include the character the | |
3055 ;; cursor is on. | |
3056 (tp (previous-single-property-change | |
3057 (1+ (point)) 'speedbar-function)) | |
3058 (np (next-single-property-change | |
3059 (point) 'speedbar-function)) | |
3060 (txt (buffer-substring-no-properties (or tp (point-min)) | |
3061 (or np (point-max)))) | |
3062 (dent (save-excursion (beginning-of-line) | |
3063 (string-to-number | |
3064 (if (looking-at "[0-9]+") | |
3065 (buffer-substring-no-properties | |
3066 (match-beginning 0) (match-end 0)) | |
3067 "0"))))) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3068 ;;(speedbar-message "%S:%S:%S:%s" fn tok txt dent) |
21650 | 3069 (and fn (funcall fn txt tok dent))) |
3070 (speedbar-position-cursor-on-line)) | |
3071 | |
3072 ;;; Reading info from the speedbar buffer | |
3073 ;; | |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3074 (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
|
3075 "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
|
3076 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
|
3077 (save-excursion |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3078 (if p (goto-char p)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3079 (beginning-of-line) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3080 (if (looking-at (concat |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3081 "\\([0-9]+\\): *[[<{]?[-+?= ][]>}@()|] \\([^ \n]+\\)")) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3082 (get-text-property (match-beginning 2) 'speedbar-text) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3083 nil))) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3084 |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3085 (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
|
3086 "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
|
3087 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
|
3088 (save-excursion |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3089 (if p (goto-char p)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3090 (beginning-of-line) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3091 (if (looking-at (concat |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3092 "\\([0-9]+\\): *[[<{]?[-+?= ][]>}@()|] \\([^ \n]+\\)\\(" |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3093 speedbar-indicator-regex "\\)?")) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3094 (progn |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3095 (goto-char (match-beginning 2)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3096 (get-text-property (point) 'speedbar-token)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3097 nil))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3098 |
21650 | 3099 (defun speedbar-line-file (&optional p) |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3100 "Retrieve the file or whatever from the line at point P. |
21650 | 3101 The return value is a string representing the file. If it is a |
3102 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
|
3103 (save-match-data |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3104 (save-restriction |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3105 (widen) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3106 (let ((f (speedbar-line-text p))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3107 (if f |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3108 (let* ((depth (string-to-number (match-string 1))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3109 (directory (speedbar-line-directory depth))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3110 (if (file-exists-p (concat directory f)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3111 (concat directory f) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3112 nil)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3113 nil))))) |
21650 | 3114 |
3115 (defun speedbar-goto-this-file (file) | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3116 "If FILE is displayed, go to this line and return t. |
21650 | 3117 Otherwise do not move and return nil." |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3118 (let ((directory (substring (file-name-directory (expand-file-name file)) |
21650 | 3119 (length (expand-file-name default-directory)))) |
3120 (dest (point))) | |
3121 (save-match-data | |
3122 (goto-char (point-min)) | |
3123 ;; scan all the directories | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3124 (while (and directory (not (eq directory t))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3125 (if (string-match "^[/\\]?\\([^/\\]+\\)" directory) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3126 (let ((pp (match-string 1 directory))) |
21650 | 3127 (if (save-match-data |
3128 (re-search-forward (concat "> " (regexp-quote pp) "$") | |
3129 nil t)) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3130 (setq directory (substring directory (match-end 1))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3131 (setq directory nil))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3132 (setq directory t))) |
21650 | 3133 ;; find the file part |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3134 (if (or (not directory) (string= (file-name-nondirectory file) "")) |
21650 | 3135 ;; only had a dir part |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3136 (if directory |
21650 | 3137 (progn |
3138 (speedbar-position-cursor-on-line) | |
3139 t) | |
3140 (goto-char dest) nil) | |
3141 ;; find the file part | |
3142 (let ((nd (file-name-nondirectory file))) | |
3143 (if (re-search-forward | |
3144 (concat "] \\(" (regexp-quote nd) | |
22735 | 3145 "\\)\\(" speedbar-indicator-regex "\\)$") |
21650 | 3146 nil t) |
3147 (progn | |
3148 (speedbar-position-cursor-on-line) | |
3149 t) | |
3150 (goto-char dest) | |
3151 nil)))))) | |
3152 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3153 (defun speedbar-line-directory (&optional depth) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3154 "Retrieve the directoryname associated with the current line. |
21650 | 3155 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
|
3156 directory with these items. This function is replaceable in |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3157 `speedbar-mode-functions-list' as `speedbar-line-directory'." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3158 (save-restriction |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3159 (widen) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3160 (let ((rf (speedbar-fetch-replacement-function 'speedbar-line-directory))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3161 (if rf (funcall rf depth) default-directory)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3162 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3163 (defun speedbar-files-line-directory (&optional depth) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3164 "Retrieve the directoryname associated with the current line. |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3165 This may require traversing backwards from DEPTH and combining the default |
21650 | 3166 directory with these items." |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3167 (save-excursion |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3168 (save-match-data |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3169 (if (not depth) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3170 (progn |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3171 (beginning-of-line) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3172 (looking-at "^\\([0-9]+\\):") |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3173 (setq depth (string-to-number (match-string 1))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3174 (let ((directory nil)) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3175 (setq depth (1- depth)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3176 (while (/= depth -1) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3177 (if (not (re-search-backward (format "^%d:" depth) nil t)) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3178 (error "Error building filename of tag") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3179 (cond ((looking-at "[0-9]+:\\s-*<->\\s-+\\([^\n]+\\)") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3180 (setq directory (concat (speedbar-line-text) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3181 "/" |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3182 directory))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3183 ((looking-at "[0-9]+:\\s-*[-]\\s-+\\([^\n]+\\)") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3184 ;; This is the start of our directory. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3185 (setq directory (speedbar-line-text))))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3186 (setq depth (1- depth))) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3187 (if (and directory |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3188 (string-match (concat speedbar-indicator-regex "$") |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3189 directory)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3190 (setq directory (substring directory 0 (match-beginning 0)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3191 (concat default-directory directory))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3192 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3193 (defun speedbar-directory-line (directory) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3194 "Position the cursor on the line specified by DIRECTORY." |
21650 | 3195 (save-match-data |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3196 (if (string-match "[/\\]$" directory) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3197 (setq directory (substring directory 0 (match-beginning 0)))) |
21650 | 3198 (let ((nomatch t) (depth 0) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3199 (fname (file-name-nondirectory directory)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3200 (pname (file-name-directory directory))) |
21650 | 3201 (if (not (member pname speedbar-shown-directories)) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3202 (error "Internal Error: File %s not shown in speedbar" directory)) |
21650 | 3203 (goto-char (point-min)) |
3204 (while (and nomatch | |
3205 (re-search-forward | |
3206 (concat "[]>] \\(" (regexp-quote fname) | |
22735 | 3207 "\\)\\(" speedbar-indicator-regex "\\)?$") |
21650 | 3208 nil t)) |
3209 (beginning-of-line) | |
3210 (looking-at "\\([0-9]+\\):") | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3211 (setq depth (string-to-number (match-string 0)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3212 nomatch (not (string= pname (speedbar-line-directory depth)))) |
21650 | 3213 (end-of-line)) |
3214 (beginning-of-line) | |
3215 (not nomatch)))) | |
3216 | |
3217 (defun speedbar-edit-line () | |
3218 "Edit whatever tag or file is on the current speedbar line." | |
3219 (interactive) | |
3220 (or (save-excursion | |
3221 (beginning-of-line) | |
3222 ;; If this fails, then it is a non-standard click, and as such, | |
3223 ;; perfectly allowed. | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
3224 (if (re-search-forward "[]>?}] [^ ]" |
21650 | 3225 (save-excursion (end-of-line) (point)) |
3226 t) | |
53487
25ff62ff164d
(speedbar-edit-line): Change regexp to position
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
3227 (progn |
25ff62ff164d
(speedbar-edit-line): Change regexp to position
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
3228 (forward-char -1) |
25ff62ff164d
(speedbar-edit-line): Change regexp to position
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
3229 (speedbar-do-function-pointer)) |
21650 | 3230 nil)) |
3231 (speedbar-do-function-pointer))) | |
3232 | |
28925
89a795d90175
(speedbar-recenter): Typo, and fix logic.
Eric M. Ludlam <zappo@gnu.org>
parents:
28902
diff
changeset
|
3233 (defun speedbar-expand-line (&optional arg) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3234 "Expand the line under the cursor. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3235 With universal argument ARG, flush cached data." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3236 (interactive "P") |
21650 | 3237 (beginning-of-line) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3238 (let* ((dframe-power-click arg) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3239 (speedbar-power-click arg)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3240 (condition-case nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3241 (progn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3242 (re-search-forward ":\\s-*.\\+. " |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3243 (save-excursion (end-of-line) (point))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3244 (forward-char -2) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3245 (speedbar-do-function-pointer)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3246 (error (speedbar-position-cursor-on-line))))) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3247 |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3248 (defun speedbar-flush-expand-line () |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3249 "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
|
3250 (interactive) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3251 (speedbar-expand-line 1)) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3252 |
21650 | 3253 (defun speedbar-contract-line () |
3254 "Contract the line under the cursor." | |
3255 (interactive) | |
3256 (beginning-of-line) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3257 (condition-case nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3258 (progn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3259 (re-search-forward ":\\s-*.-. " |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3260 (save-excursion (end-of-line) (point))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3261 (forward-char -2) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3262 (speedbar-do-function-pointer)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3263 (error (speedbar-position-cursor-on-line)))) |
21650 | 3264 |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3265 (defun speedbar-toggle-line-expansion () |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3266 "Contract or expand the line under the cursor." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3267 (interactive) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3268 (beginning-of-line) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3269 (condition-case nil |
21650 | 3270 (progn |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3271 (re-search-forward ":\\s-*.[-+]. " |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3272 (save-excursion (end-of-line) (point))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3273 (forward-char -2) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3274 (speedbar-do-function-pointer)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3275 (error (speedbar-position-cursor-on-line)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3276 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3277 (defun speedbar-expand-line-descendants (&optional arg) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3278 "Expand the line under the cursor and all descendants. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3279 Optional argument ARG indicates that any cache should be flushed." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3280 (interactive "P") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3281 (speedbar-expand-line arg) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3282 ;; Now, inside the area expaded here, expand all subnodes of |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3283 ;; the same descendant type. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3284 (save-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3285 (speedbar-next 1) ;; Move into the list. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3286 (let ((err nil)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3287 (while (not err) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3288 (condition-case nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3289 (progn |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3290 (speedbar-expand-line-descendants arg) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3291 (speedbar-restricted-next 1)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3292 (error (setq err t)))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3293 ) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3294 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3295 (defun speedbar-contract-line-descendants () |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3296 "Expand the line under the cursor and all descendants." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3297 (interactive) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3298 (speedbar-contract-line) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3299 ;; Don't need to do anything else since all descendants are |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3300 ;; hidden by default anyway. Yay! It's easy. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3301 ) |
21650 | 3302 |
3303 (defun speedbar-find-file (text token indent) | |
3304 "Speedbar click handler for filenames. | |
3305 TEXT, the file will be displayed in the attached frame. | |
3306 TOKEN is unused, but required by the click handler. INDENT is the | |
3307 current indentation level." | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3308 (let ((cdd (speedbar-line-directory indent))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3309 ;; Run before visiting file hook here. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3310 (let ((f (selected-frame))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3311 (dframe-select-attached-frame speedbar-frame) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3312 (run-hooks 'speedbar-before-visiting-file-hook) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3313 (select-frame f)) |
21650 | 3314 (speedbar-find-file-in-frame (concat cdd text)) |
3315 (speedbar-stealthy-updates) | |
3316 (run-hooks 'speedbar-visiting-file-hook) | |
3317 ;; Reset the timer with a new timeout when cliking a file | |
3318 ;; in case the user was navigating directories, we can cancel | |
3319 ;; that other timer. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3320 (speedbar-set-timer dframe-update-speed)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3321 (dframe-maybee-jump-to-attached-frame)) |
21650 | 3322 |
3323 (defun speedbar-dir-follow (text token indent) | |
3324 "Speedbar click handler for directory names. | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3325 Clicking a directory will cause the speedbar to list files in |
21650 | 3326 the subdirectory TEXT. TOKEN is an unused requirement. The |
3327 subdirectory chosen will be at INDENT level." | |
3328 (setq default-directory | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3329 (concat (expand-file-name (concat (speedbar-line-directory indent) text)) |
21650 | 3330 "/")) |
3331 ;; Because we leave speedbar as the current buffer, | |
3332 ;; update contents will change directory without | |
22735 | 3333 ;; having to touch the attached frame. Turn off smart expand just |
3334 ;; in case. | |
3335 (let ((speedbar-smart-directory-expand-flag nil)) | |
3336 (speedbar-update-contents)) | |
21650 | 3337 (speedbar-set-timer speedbar-navigating-speed) |
3338 (setq speedbar-last-selected-file nil) | |
3339 (speedbar-stealthy-updates)) | |
3340 | |
3341 (defun speedbar-delete-subblock (indent) | |
3342 "Delete text from point to indentation level INDENT or greater. | |
3343 Handles end-of-sublist smartly." | |
3344 (speedbar-with-writable | |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3345 (save-excursion |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3346 (end-of-line) (forward-char 1) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3347 (let ((start (point))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3348 (while (and (looking-at "^\\([0-9]+\\):") |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3349 (> (string-to-number (match-string 1)) indent) |
23917
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3350 (not (eobp))) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3351 (forward-line 1) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3352 (beginning-of-line)) |
4182d24c6d9f
(speedbar-frame-parameters) Add : to custom prompt.
Eric M. Ludlam <zappo@gnu.org>
parents:
23372
diff
changeset
|
3353 (delete-region start (point)))))) |
21650 | 3354 |
3355 (defun speedbar-dired (text token indent) | |
3356 "Speedbar click handler for directory expand button. | |
3357 Clicking this button expands or contracts a directory. TEXT is the | |
3358 button clicked which has either a + or -. TOKEN is the directory to be | |
3359 expanded. INDENT is the current indentation level." | |
3360 (cond ((string-match "+" text) ;we have to expand this dir | |
3361 (setq speedbar-shown-directories | |
3362 (cons (expand-file-name | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3363 (concat (speedbar-line-directory indent) token "/")) |
21650 | 3364 speedbar-shown-directories)) |
3365 (speedbar-change-expand-button-char ?-) | |
3366 (speedbar-reset-scanners) | |
3367 (save-excursion | |
3368 (end-of-line) (forward-char 1) | |
3369 (speedbar-with-writable | |
3370 (speedbar-default-directory-list | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3371 (concat (speedbar-line-directory indent) token "/") |
21650 | 3372 (1+ indent))))) |
3373 ((string-match "-" text) ;we have to contract this node | |
3374 (speedbar-reset-scanners) | |
3375 (let ((oldl speedbar-shown-directories) | |
3376 (newl nil) | |
3377 (td (expand-file-name | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3378 (concat (speedbar-line-directory indent) token)))) |
21650 | 3379 (while oldl |
3380 (if (not (string-match (concat "^" (regexp-quote td)) (car oldl))) | |
3381 (setq newl (cons (car oldl) newl))) | |
3382 (setq oldl (cdr oldl))) | |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3383 (setq speedbar-shown-directories (nreverse newl))) |
21650 | 3384 (speedbar-change-expand-button-char ?+) |
3385 (speedbar-delete-subblock indent) | |
3386 ) | |
22735 | 3387 (t (error "Ooops... not sure what to do"))) |
21650 | 3388 (speedbar-center-buffer-smartly) |
3389 (save-excursion (speedbar-stealthy-updates))) | |
3390 | |
3391 (defun speedbar-directory-buttons-follow (text token indent) | |
3392 "Speedbar click handler for default directory buttons. | |
3393 TEXT is the button clicked on. TOKEN is the directory to follow. | |
3394 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
|
3395 (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
|
3396 (setq default-directory (concat token "/")) |
22735 | 3397 (setq default-directory token)) |
21650 | 3398 ;; Because we leave speedbar as the current buffer, |
3399 ;; update contents will change directory without | |
3400 ;; having to touch the attached frame. | |
3401 (speedbar-update-contents) | |
3402 (speedbar-set-timer speedbar-navigating-speed)) | |
3403 | |
3404 (defun speedbar-tag-file (text token indent) | |
3405 "The cursor is on a selected line. Expand the tags in the specified file. | |
3406 The parameter TEXT and TOKEN are required, where TEXT is the button | |
3407 clicked, and TOKEN is the file to expand. INDENT is the current | |
3408 indentation level." | |
3409 (cond ((string-match "+" text) ;we have to expand this file | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3410 (let* ((fn (expand-file-name (concat (speedbar-line-directory indent) |
21650 | 3411 token))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3412 (mode nil) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3413 (lst (speedbar-fetch-dynamic-tags fn))) |
21650 | 3414 ;; if no list, then remove expando button |
3415 (if (not lst) | |
3416 (speedbar-change-expand-button-char ??) | |
3417 (speedbar-change-expand-button-char ?-) | |
3418 (speedbar-with-writable | |
3419 (save-excursion | |
3420 (end-of-line) (forward-char 1) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3421 (funcall (car lst) indent (cdr lst))))))) |
21650 | 3422 ((string-match "-" text) ;we have to contract this node |
3423 (speedbar-change-expand-button-char ?+) | |
3424 (speedbar-delete-subblock indent)) | |
22735 | 3425 (t (error "Ooops... not sure what to do"))) |
21650 | 3426 (speedbar-center-buffer-smartly)) |
3427 | |
3428 (defun speedbar-tag-find (text token indent) | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3429 "For the tag TEXT in a file TOKEN, go to that position. |
21650 | 3430 INDENT is the current indentation level." |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3431 (let ((file (speedbar-line-directory indent))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3432 (let ((f (selected-frame))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3433 (dframe-select-attached-frame speedbar-frame) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3434 (run-hooks 'speedbar-before-visiting-tag-hook) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3435 (select-frame f)) |
21650 | 3436 (speedbar-find-file-in-frame file) |
3437 (save-excursion (speedbar-stealthy-updates)) | |
3438 ;; Reset the timer with a new timeout when cliking a file | |
3439 ;; in case the user was navigating directories, we can cancel | |
3440 ;; that other timer. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3441 (speedbar-set-timer dframe-update-speed) |
21650 | 3442 (goto-char token) |
3443 (run-hooks 'speedbar-visiting-tag-hook) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3444 (dframe-maybee-jump-to-attached-frame) |
21650 | 3445 )) |
3446 | |
3447 (defun speedbar-tag-expand (text token indent) | |
3448 "Expand a tag sublist. Imenu will return sub-lists of specialized tag types. | |
3449 Etags does not support this feature. TEXT will be the button | |
3450 string. TOKEN will be the list, and INDENT is the current indentation | |
3451 level." | |
3452 (cond ((string-match "+" text) ;we have to expand this file | |
3453 (speedbar-change-expand-button-char ?-) | |
3454 (speedbar-with-writable | |
3455 (save-excursion | |
3456 (end-of-line) (forward-char 1) | |
22735 | 3457 (speedbar-insert-generic-list indent token 'speedbar-tag-expand |
21650 | 3458 'speedbar-tag-find)))) |
3459 ((string-match "-" text) ;we have to contract this node | |
3460 (speedbar-change-expand-button-char ?+) | |
3461 (speedbar-delete-subblock indent)) | |
22735 | 3462 (t (error "Ooops... not sure what to do"))) |
21650 | 3463 (speedbar-center-buffer-smartly)) |
3464 | |
3465 ;;; Loading files into the attached frame. | |
3466 ;; | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3467 (defcustom speedbar-select-frame-method 'attached |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3468 "*Specify how to select a frame for displaying a file. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3469 A value of 'attached means to use the attached frame (the frame |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3470 that speedbar was started from.) A number such as 1 or -1 means to |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3471 pass that number to `other-frame' while selecting a frame from speedbar." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3472 :group 'speedbar |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3473 :type 'sexp) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3474 |
21650 | 3475 (defun speedbar-find-file-in-frame (file) |
3476 "This will load FILE into the speedbar attached frame. | |
3477 If the file is being displayed in a different frame already, then raise that | |
3478 frame instead." | |
3479 (let* ((buff (find-file-noselect file)) | |
3480 (bwin (get-buffer-window buff 0))) | |
3481 (if bwin | |
3482 (progn | |
3483 (select-window bwin) | |
3484 (raise-frame (window-frame bwin))) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3485 (if dframe-power-click |
21650 | 3486 (let ((pop-up-frames t)) (select-window (display-buffer buff))) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3487 (if (numberp speedbar-select-frame-method) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3488 (other-frame speedbar-select-frame-method) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3489 (dframe-select-attached-frame speedbar-frame)) |
21650 | 3490 (switch-to-buffer buff)))) |
22735 | 3491 ) |
21650 | 3492 |
3493 ;;; Centering Utility | |
3494 ;; | |
3495 (defun speedbar-center-buffer-smartly () | |
3496 "Recenter a speedbar buffer so the current indentation level is all visible. | |
3497 This assumes that the cursor is on a file, or tag of a file which the user is | |
3498 interested in." | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3499 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3500 (save-selected-window |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3501 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3502 (select-window (get-buffer-window speedbar-buffer t)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3503 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3504 (set-buffer speedbar-buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3505 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3506 (if (<= (count-lines (point-min) (point-max)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3507 (1- (window-height (selected-window)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3508 ;; whole buffer fits |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3509 (let ((cp (point))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3510 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3511 (goto-char (point-min)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3512 (recenter 0) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3513 (goto-char cp)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3514 ;; too big |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3515 (let (depth start end exp p) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3516 (save-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3517 (beginning-of-line) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3518 (setq depth (if (looking-at "[0-9]+") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3519 (string-to-number (buffer-substring-no-properties |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3520 (match-beginning 0) (match-end 0))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3521 0)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3522 (setq exp (format "^%d:" depth))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3523 (save-excursion |
21650 | 3524 (end-of-line) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3525 (if (re-search-backward exp nil t) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3526 (setq start (point)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3527 (setq start (point-min))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3528 (save-excursion ;Not sure about this part. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3529 (end-of-line) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3530 (setq p (point)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3531 (while (and (not (re-search-forward exp nil t)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3532 (>= depth 0)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3533 (setq depth (1- depth)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3534 (setq exp (format "^%d:" depth))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3535 (if (/= (point) p) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3536 (setq end (point)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3537 (setq end (point-max))))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3538 ;; Now work out the details of centering |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3539 (let ((nl (count-lines start end)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3540 (wl (1- (window-height (selected-window)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3541 (cp (point))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3542 (if (> nl wl) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3543 ;; We can't fit it all, so just center on cursor |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3544 (progn (goto-char start) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3545 (recenter 1)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3546 ;; we can fit everything on the screen, but... |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3547 (if (and (pos-visible-in-window-p start (selected-window)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3548 (pos-visible-in-window-p end (selected-window))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3549 ;; we are all set! |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3550 nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3551 ;; we need to do something... |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3552 (goto-char start) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3553 (let ((newcent (/ (- (window-height (selected-window)) nl) 2)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3554 (lte (count-lines start (point-max)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3555 (if (and (< (+ newcent lte) (window-height (selected-window))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3556 (> (- (window-height (selected-window)) lte 1) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3557 newcent)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3558 (setq newcent (- (window-height (selected-window)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3559 lte 1))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3560 (recenter newcent)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3561 (goto-char cp)))))) |
21650 | 3562 |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3563 ;;; Tag Management -- List of expanders: |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3564 ;; |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3565 (defun speedbar-fetch-dynamic-tags (file) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3566 "Return a list of tags generated dynamically from FILE. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3567 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
|
3568 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
|
3569 functions to do caching and flushing if appropriate." |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3570 (save-excursion |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3571 ;; If a file is in memory, switch to that buffer. This allows |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3572 ;; us to use the local variable. If the file is on disk, we |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3573 ;; can try a few of the defaults that can get tags without |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3574 ;; opening the file. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3575 (if (get-file-buffer file) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3576 (set-buffer (get-file-buffer file))) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3577 ;; If there is a buffer-local value of |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3578 ;; 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
|
3579 (let ((dtf speedbar-dynamic-tags-function-list) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3580 (ret t)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3581 (while (and (eq ret t) dtf) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3582 (setq ret |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3583 (if (fboundp (car (car dtf))) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3584 (funcall (car (car dtf)) file) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3585 t)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3586 (if (eq ret t) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3587 (setq dtf (cdr dtf)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3588 (if (eq ret t) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3589 ;; No valid tag list, return nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3590 nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3591 ;; 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
|
3592 ;; prepended |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3593 (cons (cdr (car dtf)) ret))))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3594 |
21650 | 3595 ;;; Tag Management -- Imenu |
3596 ;; | |
3597 (if (not speedbar-use-imenu-flag) | |
3598 | |
3599 nil | |
3600 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3601 (eval-when-compile (if (locate-library "imenu") (require 'imenu))) |
21650 | 3602 |
3603 (defun speedbar-fetch-dynamic-imenu (file) | |
3604 "Load FILE into a buffer, and generate tags using Imenu. | |
3605 Returns the tag list, or t for an error." | |
3606 ;; Load this AND compile it in | |
3607 (require 'imenu) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3608 (set-buffer (find-file-noselect file)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3609 (if dframe-power-click (setq imenu--index-alist nil)) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3610 (condition-case nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3611 (let ((index-alist (imenu--make-index-alist t))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3612 (if speedbar-sort-tags |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3613 (sort (copy-alist index-alist) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3614 (lambda (a b) (string< (car a) (car b)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3615 index-alist)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3616 (error t))) |
21650 | 3617 ) |
3618 | |
3619 ;;; Tag Management -- etags (old XEmacs compatibility part) | |
3620 ;; | |
3621 (defvar speedbar-fetch-etags-parse-list | |
3622 '(;; Note that java has the same parse-group as c | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3623 ("\\.\\([cChH]\\|c\\+\\+\\|cpp\\|cc\\|hh\\|java\\|cxx\\|hxx\\)\\'" . |
21650 | 3624 speedbar-parse-c-or-c++tag) |
3625 ("^\\.emacs$\\|.\\(el\\|l\\|lsp\\)\\'" . | |
3626 "def[^i]+\\s-+\\(\\(\\w\\|[-_]\\)+\\)\\s-*\C-?") | |
22735 | 3627 ; ("\\.\\([fF]\\|for\\|FOR\\|77\\|90\\)\\'" . |
3628 ; speedbar-parse-fortran77-tag) | |
21650 | 3629 ("\\.tex\\'" . speedbar-parse-tex-string) |
3630 ("\\.p\\'" . | |
3631 "\\(\\(FUNCTION\\|function\\|PROCEDURE\\|procedure\\)\\s-+\\([a-zA-Z0-9_.:]+\\)\\)\\s-*(?^?") | |
3632 ) | |
3633 "Associations of file extensions and expressions for extracting tags. | |
3634 To add a new file type, you would want to add a new association to the | |
3635 list, where the car is the file match, and the cdr is the way to | |
3636 extract an element from the tags output. If the output is complex, | |
3637 use a function symbol instead of regexp. The function should expect | |
3638 to be at the beginning of a line in the etags buffer. | |
3639 | |
3640 This variable is ignored if `speedbar-use-imenu-flag' is non-nil.") | |
3641 | |
3642 (defvar speedbar-fetch-etags-command "etags" | |
3643 "*Command used to create an etags file. | |
3644 | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3645 This variable is ignored if `speedbar-use-imenu-flag' is t.") |
21650 | 3646 |
3647 (defvar speedbar-fetch-etags-arguments '("-D" "-I" "-o" "-") | |
3648 "*List of arguments to use with `speedbar-fetch-etags-command'. | |
3649 This creates an etags output buffer. Use `speedbar-toggle-etags' to | |
3650 modify this list conveniently. | |
3651 | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3652 This variable is ignored if `speedbar-use-imenu-flag' is t.") |
21650 | 3653 |
3654 (defun speedbar-toggle-etags (flag) | |
3655 "Toggle FLAG in `speedbar-fetch-etags-arguments'. | |
3656 FLAG then becomes a member of etags command line arguments. If flag | |
3657 is \"sort\", then toggle the value of `speedbar-sort-tags'. If its | |
3658 value is \"show\" then toggle the value of | |
3659 `speedbar-show-unknown-files'. | |
3660 | |
3661 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
|
3662 Farzin Guilak <farzin@protocol.com>." |
21650 | 3663 (interactive) |
3664 (cond | |
3665 ((equal flag "sort") | |
3666 (setq speedbar-sort-tags (not speedbar-sort-tags))) | |
3667 ((equal flag "show") | |
3668 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files))) | |
3669 ((or (equal flag "-C") | |
3670 (equal flag "-S") | |
3671 (equal flag "-D")) | |
3672 (if (member flag speedbar-fetch-etags-arguments) | |
3673 (setq speedbar-fetch-etags-arguments | |
3674 (delete flag speedbar-fetch-etags-arguments)) | |
3675 (add-to-list 'speedbar-fetch-etags-arguments flag))) | |
3676 (t nil))) | |
3677 | |
3678 (defun speedbar-fetch-dynamic-etags (file) | |
3679 "For FILE, run etags and create a list of symbols extracted. | |
3680 Each symbol will be associated with its line position in FILE." | |
3681 (let ((newlist nil)) | |
3682 (unwind-protect | |
3683 (save-excursion | |
3684 (if (get-buffer "*etags tmp*") | |
3685 (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
|
3686 (if (<= 1 speedbar-verbosity-level) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3687 (speedbar-message "Fetching etags...")) |
21650 | 3688 (set-buffer (get-buffer-create "*etags tmp*")) |
3689 (apply 'call-process speedbar-fetch-etags-command nil | |
3690 (current-buffer) nil | |
3691 (append speedbar-fetch-etags-arguments (list file))) | |
3692 (goto-char (point-min)) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3693 (if (<= 1 speedbar-verbosity-level) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3694 (speedbar-message "Fetching etags...")) |
21650 | 3695 (let ((expr |
3696 (let ((exprlst speedbar-fetch-etags-parse-list) | |
3697 (ans nil)) | |
3698 (while (and (not ans) exprlst) | |
3699 (if (string-match (car (car exprlst)) file) | |
3700 (setq ans (car exprlst))) | |
3701 (setq exprlst (cdr exprlst))) | |
3702 (cdr ans)))) | |
3703 (if expr | |
3704 (let (tnl) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3705 (set-buffer (get-buffer-create "*etags tmp*")) |
21650 | 3706 (while (not (save-excursion (end-of-line) (eobp))) |
3707 (save-excursion | |
3708 (setq tnl (speedbar-extract-one-symbol expr))) | |
3709 (if tnl (setq newlist (cons tnl newlist))) | |
3710 (forward-line 1))) | |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3711 (speedbar-message |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3712 "Sorry, no support for a file of that extension")))) |
21650 | 3713 ) |
3714 (if speedbar-sort-tags | |
3715 (sort newlist (lambda (a b) (string< (car a) (car b)))) | |
3716 (reverse newlist)))) | |
3717 | |
3718 ;; This bit donated by Farzin Guilak <farzin@protocol.com> but I'm not | |
3719 ;; sure it's needed with the different sorting method. | |
3720 ;; | |
3721 ;(defun speedbar-clean-etags() | |
3722 ; "Removes spaces before the ^? character, and removes `#define', | |
3723 ;return types, etc. preceding tags. This ensures that the sort operation | |
3724 ;works on the tags, not the return types." | |
3725 ; (save-excursion | |
3726 ; (goto-char (point-min)) | |
3727 ; (while | |
3728 ; (re-search-forward "(?[ \t](?\C-?" nil t) | |
3729 ; (replace-match "\C-?" nil nil)) | |
3730 ; (goto-char (point-min)) | |
3731 ; (while | |
3732 ; (re-search-forward "\\(.*[ \t]+\\)\\([^ \t\n]+.*\C-?\\)" nil t) | |
3733 ; (delete-region (match-beginning 1) (match-end 1))))) | |
3734 | |
3735 (defun speedbar-extract-one-symbol (expr) | |
22735 | 3736 "At point, return nil, or one alist in the form: (SYMBOL . POSITION) |
21650 | 3737 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
|
3738 regular expression EXPR." |
21650 | 3739 (let* ((sym (if (stringp expr) |
3740 (if (save-excursion | |
3741 (re-search-forward expr (save-excursion | |
3742 (end-of-line) | |
3743 (point)) t)) | |
3744 (buffer-substring-no-properties (match-beginning 1) | |
3745 (match-end 1))) | |
3746 (funcall expr))) | |
3747 (pos (let ((j (re-search-forward "[\C-?\C-a]\\([0-9]+\\),\\([0-9]+\\)" | |
3748 (save-excursion | |
3749 (end-of-line) | |
3750 (point)) | |
3751 t))) | |
3752 (if (and j sym) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3753 (1+ (string-to-number (buffer-substring-no-properties |
21650 | 3754 (match-beginning 2) |
3755 (match-end 2)))) | |
3756 0)))) | |
3757 (if (/= pos 0) | |
3758 (cons sym pos) | |
3759 nil))) | |
3760 | |
3761 (defun speedbar-parse-c-or-c++tag () | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3762 "Parse a C or C++ tag, which tends to be a little complex." |
21650 | 3763 (save-excursion |
3764 (let ((bound (save-excursion (end-of-line) (point)))) | |
3765 (cond ((re-search-forward "\C-?\\([^\C-a]+\\)\C-a" bound t) | |
3766 (buffer-substring-no-properties (match-beginning 1) | |
3767 (match-end 1))) | |
3768 ((re-search-forward "\\<\\([^ \t]+\\)\\s-+new(" bound t) | |
3769 (buffer-substring-no-properties (match-beginning 1) | |
3770 (match-end 1))) | |
3771 ((re-search-forward "\\<\\([^ \t(]+\\)\\s-*(\C-?" bound t) | |
3772 (buffer-substring-no-properties (match-beginning 1) | |
3773 (match-end 1))) | |
3774 (t nil)) | |
3775 ))) | |
3776 | |
3777 (defun speedbar-parse-tex-string () | |
3778 "Parse a Tex string. Only find data which is relevant." | |
3779 (save-excursion | |
3780 (let ((bound (save-excursion (end-of-line) (point)))) | |
3781 (cond ((re-search-forward "\\(\\(sub\\)*section\\|chapter\\|cite\\)\\s-*{[^\C-?}]*}?" bound t) | |
3782 (buffer-substring-no-properties (match-beginning 0) | |
3783 (match-end 0))) | |
3784 (t nil))))) | |
3785 | |
3786 | |
22735 | 3787 ;;; BUFFER DISPLAY mode. |
3788 ;; | |
3789 (defvar speedbar-buffers-key-map nil | |
3790 "Keymap used when in the buffers display mode.") | |
3791 | |
3792 (if speedbar-buffers-key-map | |
3793 nil | |
3794 (setq speedbar-buffers-key-map (speedbar-make-specialized-keymap)) | |
3795 | |
3796 ;; Basic tree features | |
3797 (define-key speedbar-buffers-key-map "e" 'speedbar-edit-line) | |
3798 (define-key speedbar-buffers-key-map "\C-m" 'speedbar-edit-line) | |
3799 (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
|
3800 (define-key speedbar-buffers-key-map "=" 'speedbar-expand-line) |
22735 | 3801 (define-key speedbar-buffers-key-map "-" 'speedbar-contract-line) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3802 (define-key speedbar-buffers-key-map " " 'speedbar-toggle-line-expansion) |
22735 | 3803 |
3804 ;; Buffer specific keybindings | |
3805 (define-key speedbar-buffers-key-map "k" 'speedbar-buffer-kill-buffer) | |
3806 (define-key speedbar-buffers-key-map "r" 'speedbar-buffer-revert-buffer) | |
3807 | |
3808 ) | |
3809 | |
3810 (defvar speedbar-buffer-easymenu-definition | |
3811 '(["Jump to buffer" speedbar-edit-line t] | |
3812 ["Expand File Tags" speedbar-expand-line | |
3813 (save-excursion (beginning-of-line) | |
3814 (looking-at "[0-9]+: *.\\+. "))] | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3815 ["Flush Cache & Expand" speedbar-flush-expand-line |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3816 (save-excursion (beginning-of-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3817 (looking-at "[0-9]+: *.\\+. "))] |
22735 | 3818 ["Contract File Tags" speedbar-contract-line |
3819 (save-excursion (beginning-of-line) | |
3820 (looking-at "[0-9]+: *.-. "))] | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3821 ["Kill Buffer" speedbar-buffer-kill-buffer |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3822 (save-excursion (beginning-of-line) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3823 (looking-at "[0-9]+: *.[-+?]. "))] |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3824 ["Revert Buffer" speedbar-buffer-revert-buffer |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3825 (save-excursion (beginning-of-line) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3826 (looking-at "[0-9]+: *.[-+?]. "))] |
22735 | 3827 ) |
3828 "Menu item elements shown when displaying a buffer list.") | |
3829 | |
3830 (defun speedbar-buffer-buttons (directory zero) | |
3831 "Create speedbar buttons based on the buffers currently loaded. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3832 DIRECTORY is the directory to the currently active buffer, and ZERO is 0." |
22735 | 3833 (speedbar-buffer-buttons-engine nil)) |
3834 | |
3835 (defun speedbar-buffer-buttons-temp (directory zero) | |
3836 "Create speedbar buttons based on the buffers currently loaded. | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3837 DIRECTORY is the directory to the currently active buffer, and ZERO is 0." |
22735 | 3838 (speedbar-buffer-buttons-engine t)) |
3839 | |
3840 (defun speedbar-buffer-buttons-engine (temp) | |
3841 "Create speedbar buffer buttons. | |
3842 If TEMP is non-nil, then clicking on a buffer restores the previous display." | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3843 (speedbar-insert-separator "Active Buffers:") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3844 (let ((bl (buffer-list)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3845 (case-fold-search t)) |
22735 | 3846 (while bl |
3847 (if (string-match "^[ *]" (buffer-name (car bl))) | |
3848 nil | |
3849 (let* ((known (string-match speedbar-file-regexp | |
3850 (buffer-name (car bl)))) | |
3851 (expchar (if known ?+ ??)) | |
3852 (fn (if known 'speedbar-tag-file nil)) | |
3853 (fname (save-excursion (set-buffer (car bl)) | |
3854 (buffer-file-name)))) | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3855 (speedbar-make-tag-line 'bracket expchar fn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3856 (if fname (file-name-nondirectory fname)) |
22735 | 3857 (buffer-name (car bl)) |
3858 'speedbar-buffer-click temp | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3859 'speedbar-file-face 0) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3860 (speedbar-buffers-tail-notes (car bl)))) |
22735 | 3861 (setq bl (cdr bl))) |
3862 (setq bl (buffer-list)) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3863 (speedbar-insert-separator "Scratch Buffers:") |
22735 | 3864 (while bl |
3865 (if (not (string-match "^\\*" (buffer-name (car bl)))) | |
3866 nil | |
3867 (if (eq (car bl) speedbar-buffer) | |
3868 nil | |
3869 (speedbar-make-tag-line 'bracket ?? nil nil | |
3870 (buffer-name (car bl)) | |
3871 'speedbar-buffer-click temp | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3872 'speedbar-file-face 0) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3873 (speedbar-buffers-tail-notes (car bl)))) |
22735 | 3874 (setq bl (cdr bl))) |
3875 (setq bl (buffer-list)) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3876 ;;(speedbar-insert-separator "Hidden Buffers:") |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3877 ;;(while bl |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3878 ;; (if (not (string-match "^ " (buffer-name (car bl)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3879 ;; nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3880 ;; (if (eq (car bl) speedbar-buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3881 ;; nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3882 ;; (speedbar-make-tag-line 'bracket ?? nil nil |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3883 ;; (buffer-name (car bl)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3884 ;; 'speedbar-buffer-click temp |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3885 ;; 'speedbar-file-face 0) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3886 ;; (speedbar-buffers-tail-notes (car bl)))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3887 ;; (setq bl (cdr bl))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3888 )) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3889 |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3890 (defun speedbar-buffers-tail-notes (buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3891 "Add a note to the end of the last tag line. |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3892 Argument BUFFER is the buffer being tested." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3893 (let (mod ro) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3894 (save-excursion |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3895 (set-buffer buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3896 (setq mod (buffer-modified-p) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3897 ro buffer-read-only)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3898 (if ro (speedbar-insert-button "%" nil nil nil nil t)))) |
22735 | 3899 |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3900 (defun speedbar-buffers-item-info () |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3901 "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
|
3902 (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
|
3903 (let* ((item (speedbar-line-text)) |
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3904 (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
|
3905 (and buffer |
24475
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3906 (speedbar-message "%s%s %S %d %s" |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3907 (if (buffer-modified-p buffer) "* " "") |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3908 item |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3909 (save-excursion (set-buffer buffer) major-mode) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3910 (save-excursion (set-buffer buffer) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3911 (buffer-size)) |
1e20dcb26ff7
Added commentary about stealthy functions.
Karl Heuer <kwzh@gnu.org>
parents:
24321
diff
changeset
|
3912 (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
|
3913 |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3914 (defun speedbar-buffers-line-directory (&optional depth) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3915 "Fetch the full directory to the file (buffer) specified on the current line. |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3916 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
|
3917 (save-excursion |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3918 (end-of-line) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3919 (let ((start (point))) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3920 ;; Buffers are always at level 0 |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3921 (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
|
3922 nil |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3923 (let* ((bn (speedbar-line-text)) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3924 (buffer (if bn (get-buffer bn)))) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3925 (if buffer |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3926 (if (save-excursion |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3927 (end-of-line) |
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3928 (eq start (point))) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3929 (or (save-excursion (set-buffer buffer) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3930 default-directory) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3931 "") |
36047
e1126269be53
(speedbar-frame-parameters): No toolbar lines.
Eric M. Ludlam <zappo@gnu.org>
parents:
31562
diff
changeset
|
3932 (buffer-file-name buffer)))))))) |
24154
91c00b394901
(speedbar-item-info-file-helper): Add optional arg
Eric M. Ludlam <zappo@gnu.org>
parents:
23917
diff
changeset
|
3933 |
22735 | 3934 (defun speedbar-buffer-click (text token indent) |
3935 "When the users clicks on a buffer-button in speedbar. | |
3936 TEXT is the buffer's name, TOKEN and INDENT are unused." | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3937 (if dframe-power-click |
22735 | 3938 (let ((pop-up-frames t)) (select-window (display-buffer text))) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3939 (dframe-select-attached-frame speedbar-frame) |
22735 | 3940 (switch-to-buffer text) |
3941 (if token (speedbar-change-initial-expansion-list | |
3942 speedbar-previously-used-expansion-list-name)))) | |
3943 | |
3944 (defun speedbar-buffer-kill-buffer () | |
3945 "Kill the buffer the cursor is on in the speedbar buffer." | |
3946 (interactive) | |
3947 (or (save-excursion | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3948 (let ((text (speedbar-line-text))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3949 (if (and (get-buffer text) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3950 (speedbar-y-or-n-p (format "Kill buffer %s? " text))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3951 (kill-buffer text)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
3952 (speedbar-refresh))))) |
22735 | 3953 |
3954 (defun speedbar-buffer-revert-buffer () | |
3955 "Revert the buffer the cursor is on in the speedbar buffer." | |
3956 (interactive) | |
3957 (save-excursion | |
3958 (beginning-of-line) | |
3959 ;; If this fails, then it is a non-standard click, and as such, | |
3960 ;; perfectly allowed | |
22950
606be1490be7
(speedbar-edit-line, speedbar-buffer-kill-buffer,
Eric M. Ludlam <zappo@gnu.org>
parents:
22906
diff
changeset
|
3961 (if (re-search-forward "[]>?}] [^ ]" |
22735 | 3962 (save-excursion (end-of-line) (point)) |
3963 t) | |
3964 (let ((text (progn | |
3965 (forward-char -1) | |
3966 (buffer-substring (point) (save-excursion | |
3967 (end-of-line) | |
3968 (point)))))) | |
3969 (if (get-buffer text) | |
3970 (progn | |
3971 (set-buffer text) | |
3972 (revert-buffer t))))))) | |
3973 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3974 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3975 ;;; Useful hook values and such. |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3976 ;; |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3977 (defvar speedbar-highlight-one-tag-line nil |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3978 "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
|
3979 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3980 (defun speedbar-highlight-one-tag-line () |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3981 "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
|
3982 (speedbar-unhighlight-one-tag-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3983 (setq speedbar-highlight-one-tag-line |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3984 (speedbar-make-overlay (save-excursion (beginning-of-line) (point)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3985 (save-excursion (end-of-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3986 (forward-char 1) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3987 (point)))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3988 (speedbar-overlay-put speedbar-highlight-one-tag-line 'face |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3989 'speedbar-highlight-face) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3990 (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
|
3991 ) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3992 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3993 (defun speedbar-unhighlight-one-tag-line () |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
3994 "Unhighlight the currently highlighted line." |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3995 (if speedbar-highlight-one-tag-line |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3996 (progn |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3997 (speedbar-delete-overlay speedbar-highlight-one-tag-line) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3998 (setq speedbar-highlight-one-tag-line nil))) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
3999 (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
|
4000 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4001 (defun speedbar-recenter-to-top () |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4002 "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
|
4003 (recenter 1)) |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4004 |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4005 (defun speedbar-recenter () |
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4006 "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
|
4007 (recenter (/ (window-height (selected-window)) 2))) |
22735 | 4008 |
4009 | |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4010 ;;; Color loading section. |
21650 | 4011 ;; |
4012 (defface speedbar-button-face '((((class color) (background light)) | |
4013 (:foreground "green4")) | |
4014 (((class color) (background dark)) | |
4015 (:foreground "green3"))) | |
4016 "Face used for +/- buttons." | |
4017 :group 'speedbar-faces) | |
4018 | |
4019 (defface speedbar-file-face '((((class color) (background light)) | |
4020 (:foreground "cyan4")) | |
4021 (((class color) (background dark)) | |
4022 (:foreground "cyan")) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4023 (t (:bold t))) |
21650 | 4024 "Face used for file names." |
4025 :group 'speedbar-faces) | |
4026 | |
4027 (defface speedbar-directory-face '((((class color) (background light)) | |
4028 (:foreground "blue4")) | |
4029 (((class color) (background dark)) | |
4030 (:foreground "light blue"))) | |
46282
015a7038f5db
(speedbar-make-specialized-keymap): Fix docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
44584
diff
changeset
|
4031 "Face used for directory names." |
21650 | 4032 :group 'speedbar-faces) |
4033 (defface speedbar-tag-face '((((class color) (background light)) | |
4034 (:foreground "brown")) | |
4035 (((class color) (background dark)) | |
4036 (:foreground "yellow"))) | |
4037 "Face used for displaying tags." | |
4038 :group 'speedbar-faces) | |
4039 | |
4040 (defface speedbar-selected-face '((((class color) (background light)) | |
4041 (:foreground "red" :underline t)) | |
4042 (((class color) (background dark)) | |
4043 (:foreground "red" :underline t)) | |
4044 (t (:underline t))) | |
4045 "Face used to underline the file in the active window." | |
4046 :group 'speedbar-faces) | |
4047 | |
4048 (defface speedbar-highlight-face '((((class color) (background light)) | |
4049 (:background "green")) | |
4050 (((class color) (background dark)) | |
4051 (:background "sea green")) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4052 (((class grayscale monochrome) |
21650 | 4053 (background light)) |
4054 (:background "black")) | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4055 (((class grayscale monochrome) |
21650 | 4056 (background dark)) |
4057 (:background "white"))) | |
4058 "Face used for highlighting buttons with the mouse." | |
4059 :group 'speedbar-faces) | |
4060 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4061 (defface speedbar-separator-face '((((class color) (background light)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4062 (:background "blue" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4063 :foreground "white" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4064 :overline "gray")) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4065 (((class color) (background dark)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4066 (:background "blue" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4067 :foreground "white" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4068 :overline "gray")) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4069 (((class grayscale monochrome) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4070 (background light)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4071 (:background "black" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4072 :foreground "white" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4073 :overline "white")) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4074 (((class grayscale monochrome) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4075 (background dark)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4076 (:background "white" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4077 :foreground "black" |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4078 :overline "black"))) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4079 "Face used for separator labes in a display." |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4080 :group 'speedbar-faces) |
28902
5292e9f1f2ca
Updated the commentary section.
Eric M. Ludlam <zappo@gnu.org>
parents:
26659
diff
changeset
|
4081 |
21650 | 4082 ;; some edebug hooks |
4083 (add-hook 'edebug-setup-hook | |
4084 (lambda () | |
4085 (def-edebug-spec speedbar-with-writable def-body))) | |
4086 | |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4087 ;; Fix a font lock problem for some versions of Emacs |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4088 (if (boundp 'font-lock-global-modes) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4089 (if (listp font-lock-global-modes) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4090 (add-to-list 'font-lock-global-modes '(not speedbar-mode)) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4091 ) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4092 ) |
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4093 |
21650 | 4094 (provide 'speedbar) |
65752
12e5c2513853
* speedbar.el: New version 1.0pre3.
Chong Yidong <cyd@stupidchicken.com>
parents:
65296
diff
changeset
|
4095 ;;; speedbar ends here |
21650 | 4096 |
4097 ;; run load-time hooks | |
4098 (run-hooks 'speedbar-load-hook) |