Mercurial > emacs
annotate lisp/bs.el @ 79117:a704436b58e3
Correct typo.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Wed, 17 Oct 2007 02:08:48 +0000 |
parents | e091b0e7b0c7 |
children | 9f5ce463bdcf |
rev | line source |
---|---|
27016 | 1 ;;; bs.el --- menu for selecting and displaying buffers |
2 | |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64676
diff
changeset
|
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
75347 | 4 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
27016 | 5 ;; Author: Olaf Sylvester <Olaf.Sylvester@netsurf.de> |
6 ;; Maintainer: Olaf Sylvester <Olaf.Sylvester@netsurf.de> | |
7 ;; Keywords: convenience | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
77917
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, or (at your option) |
27016 | 14 ;; any later version. |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64091 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
27016 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; Version: 1.17 | |
64676
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
29 ;; X-URL: http://www.geekware.de/software/emacs |
27016 | 30 ;; |
31 ;; The bs-package contains a main function bs-show for poping up a | |
32 ;; buffer in a way similar to `list-buffers' and `electric-buffer-list': | |
33 ;; The new buffer offers a Buffer Selection Menu for manipulating | |
34 ;; the buffer list and buffers. | |
35 ;; | |
36 ;; ----------------------------------------------------------------------- | |
37 ;; | MR Buffer Size Mode File | | |
38 ;; | -- ------ ---- ---- ---- | | |
39 ;; |. bs.el 14690 Emacs-Lisp /home/sun/sylvester/el/bs.e$| | |
40 ;; | % executable.el 9429 Emacs-Lisp /usr/share/emacs/19.34/lisp$| | |
41 ;; | % vc.el 104893 Emacs-Lisp /usr/share/emacs/19.34/lisp$| | |
42 ;; | % test_vc.el 486 Emacs-Lisp /home/sun/sylvester/el/test$| | |
43 ;; | % vc-hooks.el 43605 Emacs-Lisp /usr/share/emacs/19.34/lisp$| | |
44 ;; ----------------------------------------------------------------------- | |
45 | |
46 ;;; Quick Installation und Customization: | |
47 | |
48 ;; Use | |
49 ;; M-x bs-show | |
50 ;; for buffer selection or optional bind a key to main function `bs-show' | |
51 ;; (global-set-key "\C-x\C-b" 'bs-show) ;; or another key | |
52 ;; | |
53 ;; For customization use | |
54 ;; M-x bs-customize | |
55 | |
56 | |
57 ;;; More Commentary: | |
58 | |
59 ;; bs-show will generate a new buffer named *buffer-selection*, which shows | |
60 ;; all buffers or a subset of them, and has possibilities for deleting, | |
61 ;; saving and selecting buffers. For more details see docstring of | |
62 ;; function `bs-mode'. A current configuration describes which buffers appear | |
63 ;; in *buffer-selection*. See docstring of variable `bs-configurations' for | |
64 ;; more details. | |
65 ;; | |
66 ;; The package bs combines the advantages of the Emacs functions | |
67 ;; `list-buffers' and `electric-buffer-list'. | |
68 ;; | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
69 ;; Additional features for Buffer Selection Menu: |
27016 | 70 ;; - configurable list of buffers (show only files etc.). |
71 ;; - comfortable way to change displayed subset of all buffers. | |
72 ;; - show sorted list of buffers. | |
73 ;; - cyclic navigation: | |
74 ;; - goes to top of buffer list if you are on last line and press down. | |
75 ;; - goes to end of buffer list if you are on first line and press up. | |
76 ;; - Offer an alternative buffer list by prefix key C-u. | |
77 | |
78 ;;; Cycling through buffers | |
79 | |
80 ;; This package offers two functions for buffer cycling. If you want to cycle | |
81 ;; through buffer list you can use `bs-cycle-next' or `bs-cycle-previous'. | |
82 ;; Bind these function to a key like | |
83 ;; (global-set-key [(f9)] 'bs-cycle-previous) | |
84 ;; (global-set-key [(f10)] 'bs-cycle-next) | |
85 ;; | |
86 ;; Both functions use a special subset of all buffers for cycling to avoid | |
87 ;; to go through internal buffers like *Messages*. | |
88 ;; | |
89 ;; Cycling through buffers ignores sorting because sorting destroys | |
90 ;; the logical buffer list. If buffer list is sorted by size you | |
91 ;; won't be able to cycle to the smallest buffer. | |
92 | |
93 ;;; Customization: | |
94 | |
95 ;; There is a customization group called `bs' in group `convenience'. | |
96 ;; Start customization by M-x bs-customize | |
97 ;; | |
98 ;; Buffer list | |
99 ;; ----------- | |
100 ;; You can define your own configurations by extending variable | |
101 ;; `bs-configurations' (see docstring for details). | |
102 ;; | |
103 ;; `bs-default-configuration' contains the name of default configuration. | |
104 ;; The default value is "files" which means to show only files. | |
105 ;; | |
106 ;; If you always want to see all buffers, customize variable | |
107 ;; `bs-default-configuration' in customization group `bs'. | |
108 ;; | |
109 ;; Configure sorting | |
110 ;; ----------------- | |
111 ;; You can define functions for sorting the buffer list. | |
112 ;; When selecting buffers, you can step through available sorting | |
113 ;; methods with key 'S'. | |
114 ;; To define a new way of sorting, customize variable `bs-sort-functions'. | |
115 ;; | |
116 ;; There are four basic functions for sorting: | |
117 ;; by buffer name, by mode, by size, or by filename | |
118 ;; | |
119 ;; Configure buffer cycling | |
120 ;; ------------------------ | |
121 ;; When cycling through buffer list the functions for cycling will use | |
122 ;; the current configuration of bs to calculate the buffer list. | |
123 ;; If you want to use a different configuration for cycling you have to set | |
124 ;; the variable `bs-cycle-configuration-name'. You can customize this variable. | |
125 ;; | |
126 ;; For example: If you use the configuration called "files-and-scratch" you | |
127 ;; can cycle through all file buffers and *scratch* although your current | |
128 ;; configuration perhaps is "files" which ignores buffer *scratch*. | |
129 | |
130 ;;; History: | |
131 | |
132 ;;; Code: | |
133 | |
134 ;; ---------------------------------------------------------------------- | |
135 ;; Globals for customization | |
136 ;; ---------------------------------------------------------------------- | |
137 | |
138 (defgroup bs nil | |
139 "Buffer Selection: Maintaining buffers by buffer menu." | |
27576 | 140 :version "21.1" |
30799 | 141 :link '(emacs-commentary-link "bs") |
64676
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
142 :link '(url-link "http://www.geekware.de/software/emacs") |
27016 | 143 :group 'convenience) |
144 | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
145 (defgroup bs-appearance nil |
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
146 "Buffer Selection appearance: Appearance of bs buffer menu." |
27016 | 147 :group 'bs) |
148 | |
149 (defcustom bs-attributes-list | |
150 '(("" 1 1 left bs--get-marked-string) | |
151 ("M" 1 1 left bs--get-modified-string) | |
152 ("R" 2 2 left bs--get-readonly-string) | |
153 ("Buffer" bs--get-name-length 10 left bs--get-name) | |
154 ("" 1 1 left " ") | |
155 ("Size" 8 8 right bs--get-size-string) | |
156 ("" 1 1 left " ") | |
157 ("Mode" 12 12 right bs--get-mode-name) | |
158 ("" 2 2 left " ") | |
159 ("File" 12 12 left bs--get-file-name) | |
160 ("" 2 2 left " ")) | |
161 "*List specifying the layout of a Buffer Selection Menu buffer. | |
162 Each entry specifies a column and is a list of the form of: | |
36415
55f2a0bdaf30
(bs-attributes-list): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents:
34048
diff
changeset
|
163 \(HEADER MINIMUM-LENGTH MAXIMUM-LENGTH ALIGNMENT FUN-OR-STRING) |
64676
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
164 |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
165 HEADER : String for header for first line or a function |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
166 which calculates column title. |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
167 MINIMUM-LENGTH : Minimum width of column (number or name of function). |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
168 The function must return a positive integer. |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
169 MAXIMUM-LENGTH : Maximum width of column (number or name of function) |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
170 (currently ignored). |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
171 ALIGNMENT : Alignment of column (`left', `right', `middle'). |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
172 FUN-OR-STRING : Name of a function for calculating the value or a |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
173 string for a constant value. |
98420b62843f
(bs-attributes-list): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
174 |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
175 The function gets as parameter the buffer where we have started |
27016 | 176 buffer selection and the list of all buffers to show. The function must |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
177 return a string representing the column's value." |
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
178 :group 'bs-appearance |
27016 | 179 :type '(repeat sexp)) |
180 | |
181 (defun bs--make-header-match-string () | |
182 "Return a regexp matching the first line of a Buffer Selection Menu buffer." | |
183 (let ((res "^\\(") | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
184 (ele bs-attributes-list)) |
27016 | 185 (while ele |
186 (setq res (concat res (car (car ele)) " *")) | |
187 (setq ele (cdr ele))) | |
188 (concat res "$\\)"))) | |
189 | |
39568
e67950065cf9
Change ;;; to ;; for outline-minor-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
38095
diff
changeset
|
190 ;; Font-Lock-Settings |
27016 | 191 (defvar bs-mode-font-lock-keywords |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
192 (list ;; header in font-lock-type-face |
30799 | 193 (list (bs--make-header-match-string) |
194 '(1 font-lock-type-face append) '(1 'bold append)) | |
195 ;; Buffername embedded by * | |
196 (list "^\\(.*\\*.*\\*.*\\)$" | |
30893
939272c1c28b
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
Dave Love <fx@gnu.org>
parents:
30799
diff
changeset
|
197 1 |
939272c1c28b
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
Dave Love <fx@gnu.org>
parents:
30799
diff
changeset
|
198 ;; problem in XEmacs with font-lock-constant-face |
939272c1c28b
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
Dave Love <fx@gnu.org>
parents:
30799
diff
changeset
|
199 (if (facep 'font-lock-constant-face) |
939272c1c28b
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
Dave Love <fx@gnu.org>
parents:
30799
diff
changeset
|
200 'font-lock-constant-face |
939272c1c28b
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
Dave Love <fx@gnu.org>
parents:
30799
diff
changeset
|
201 'font-lock-comment-face)) |
30799 | 202 ;; Dired-Buffers |
203 '("^..\\(.*Dired by .*\\)$" 1 font-lock-function-name-face) | |
204 ;; the star for modified buffers | |
205 '("^.\\(\\*\\) +[^\\*]" 1 font-lock-comment-face)) | |
27016 | 206 "Default font lock expressions for Buffer Selection Menu.") |
207 | |
208 (defcustom bs-max-window-height 20 | |
209 "*Maximal window height of Buffer Selection Menu." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
210 :group 'bs-appearance |
27016 | 211 :type 'integer) |
212 | |
213 (defvar bs-dont-show-regexp nil | |
214 "Regular expression specifying which buffers not to show. | |
215 A buffer whose name matches this regular expression will not be | |
216 included in the buffer list.") | |
217 | |
218 (defvar bs-must-show-regexp nil | |
219 "Regular expression for specifying buffers which must be shown. | |
220 A buffer whose name matches this regular expression will be | |
221 included in the buffer list. | |
222 Note that this variable is temporary: if the configuration is changed | |
223 it is reset to nil. Use `bs-must-always-show-regexp' to specify buffers | |
224 that must always be shown regardless of the configuration.") | |
225 | |
226 (defcustom bs-must-always-show-regexp nil | |
227 "*Regular expression for specifying buffers to show always. | |
228 A buffer whose name matches this regular expression will | |
229 be shown regardless of current configuration of Buffer Selection Menu." | |
230 :group 'bs | |
231 :type '(choice (const :tag "Nothing at all" nil) regexp)) | |
232 | |
233 (defvar bs-dont-show-function nil | |
234 "Function for specifying buffers not to show. | |
235 The function gets one argument - the buffer to test. The function must | |
236 return a value different from nil to ignore the buffer in | |
237 Buffer Selection Menu.") | |
238 | |
239 (defvar bs-must-show-function nil | |
240 "Function for specifying buffers which must be shown. | |
241 The function gets one argument - the buffer to test.") | |
242 | |
243 (defvar bs-buffer-sort-function nil | |
244 "Sort function to sort the buffers that appear in Buffer Selection Menu. | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
245 The function gets two arguments - the buffers to compare. |
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
246 It must return non-nil if the first buffer should sort before the second.") |
27016 | 247 |
248 (defcustom bs-maximal-buffer-name-column 45 | |
249 "*Maximum column width for buffer names. | |
250 The column for buffer names has dynamic width. The width depends on | |
251 maximal and minimal length of names of buffers to show. The maximal | |
252 width is bounded by `bs-maximal-buffer-name-column'. | |
253 See also `bs-minimal-buffer-name-column'." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
254 :group 'bs-appearance |
27016 | 255 :type 'integer) |
256 | |
257 (defcustom bs-minimal-buffer-name-column 15 | |
258 "*Minimum column width for buffer names. | |
259 The column for buffer names has dynamic width. The width depends on | |
260 maximal and minimal length of names of buffers to show. The minimal | |
261 width is bounded by `bs-minimal-buffer-name-column'. | |
262 See also `bs-maximal-buffer-name-column'." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
263 :group 'bs-appearance |
27016 | 264 :type 'integer) |
265 | |
266 (defconst bs-header-lines-length 2 | |
267 "Number of lines for headers in Buffer Selection Menu.") | |
268 | |
269 (defcustom bs-configurations | |
270 '(("all" nil nil nil nil nil) | |
271 ("files" nil nil nil bs-visits-non-file bs-sort-buffer-interns-are-last) | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
272 ("files-and-scratch" "^\\*scratch\\*$" nil nil bs-visits-non-file |
27016 | 273 bs-sort-buffer-interns-are-last) |
274 ("all-intern-last" nil nil nil nil bs-sort-buffer-interns-are-last)) | |
275 "*List of all configurations you can use in the Buffer Selection Menu. | |
276 A configuration describes which buffers appear in Buffer Selection Menu | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
277 and also the order of buffers. A configuration is a list with |
27016 | 278 six elements. The first element is a string and describes the configuration. |
279 The following five elements represent the values for Buffer Selection Menu | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
280 configuration variables `bs-must-show-regexp', `bs-must-show-function', |
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
281 `bs-dont-show-regexp', `bs-dont-show-function' and `bs-buffer-sort-function'. |
27016 | 282 By setting these variables you define a configuration." |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
283 :group 'bs-appearance |
27016 | 284 :type '(repeat sexp)) |
285 | |
286 (defcustom bs-default-configuration "files" | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
287 "*Name of default configuration used by the Buffer Selection Menu. |
27016 | 288 \\<bs-mode-map> |
289 Will be changed using key \\[bs-select-next-configuration]. | |
290 Must be a string used in `bs-configurations' for naming a configuration." | |
291 :group 'bs | |
292 :type 'string) | |
293 | |
294 (defcustom bs-alternative-configuration "all" | |
295 "*Name of configuration used when calling `bs-show' with \ | |
296 \\[universal-argument] as prefix key. | |
297 Must be a string used in `bs-configurations' for naming a configuration." | |
298 :group 'bs | |
299 :type 'string) | |
300 | |
301 (defvar bs-current-configuration bs-default-configuration | |
302 "Name of current configuration. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
303 Must be a string used in `bs-configurations' for naming a configuration.") |
27016 | 304 |
305 (defcustom bs-cycle-configuration-name nil | |
306 "*Name of configuration used when cycling through the buffer list. | |
307 A value of nil means to use current configuration `bs-default-configuration'. | |
308 Must be a string used in `bs-configurations' for naming a configuration." | |
309 :group 'bs | |
310 :type '(choice (const :tag "like current configuration" nil) | |
311 string)) | |
312 | |
313 (defcustom bs-string-show-always "+" | |
314 "*String added in column 1 indicating a buffer will always be shown." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
315 :group 'bs-appearance |
27016 | 316 :type 'string) |
317 | |
318 (defcustom bs-string-show-never "-" | |
319 "*String added in column 1 indicating a buffer will never be shown." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
320 :group 'bs-appearance |
27016 | 321 :type 'string) |
322 | |
323 (defcustom bs-string-current "." | |
324 "*String added in column 1 indicating the current buffer." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
325 :group 'bs-appearance |
27016 | 326 :type 'string) |
327 | |
328 (defcustom bs-string-current-marked "#" | |
329 "*String added in column 1 indicating the current buffer when it is marked." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
330 :group 'bs-appearance |
27016 | 331 :type 'string) |
332 | |
333 (defcustom bs-string-marked ">" | |
334 "*String added in column 1 indicating a marked buffer." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
335 :group 'bs-appearance |
27016 | 336 :type 'string) |
337 | |
338 (defcustom bs-string-show-normally " " | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
339 "*String added in column 1 indicating an unmarked buffer." |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
340 :group 'bs-appearance |
27016 | 341 :type 'string) |
342 | |
343 (defvar bs--name-entry-length 20 | |
344 "Maximum length of all displayed buffer names. | |
345 Used internally, only.") | |
346 | |
347 ;; ---------------------------------------------------------------------- | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
348 ;; Internal globals |
27016 | 349 ;; ---------------------------------------------------------------------- |
350 | |
351 (defvar bs-buffer-show-mark nil | |
352 "Flag for the current mode for showing this buffer. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
353 A value of nil means buffer will be shown depending on the current |
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
354 configuration. |
27016 | 355 A value of `never' means to never show the buffer. |
356 A value of `always' means to show buffer regardless of the configuration.") | |
357 | |
358 (make-variable-buffer-local 'bs-buffer-show-mark) | |
359 | |
360 ;; Make face named region (for XEmacs) | |
361 (unless (facep 'region) | |
362 (make-face 'region) | |
363 (set-face-background 'region "gray75")) | |
364 | |
365 (defun bs--sort-by-name (b1 b2) | |
366 "Compare buffers B1 and B2 by buffer name." | |
367 (string< (buffer-name b1) | |
30799 | 368 (buffer-name b2))) |
27016 | 369 |
370 (defun bs--sort-by-filename (b1 b2) | |
371 "Compare buffers B1 and B2 by file name." | |
372 (string< (or (buffer-file-name b1) "") | |
30799 | 373 (or (buffer-file-name b2) ""))) |
27016 | 374 |
375 (defun bs--sort-by-mode (b1 b2) | |
376 "Compare buffers B1 and B2 by mode name." | |
377 (save-excursion | |
378 (string< (progn (set-buffer b1) (format "%s" mode-name)) | |
30799 | 379 (progn (set-buffer b2) (format "%s" mode-name))))) |
27016 | 380 |
381 (defun bs--sort-by-size (b1 b2) | |
382 "Compare buffers B1 and B2 by buffer size." | |
383 (save-excursion | |
384 (< (progn (set-buffer b1) (buffer-size)) | |
385 (progn (set-buffer b2) (buffer-size))))) | |
386 | |
387 (defcustom bs-sort-functions | |
388 '(("by name" bs--sort-by-name "Buffer" region) | |
389 ("by size" bs--sort-by-size "Size" region) | |
390 ("by mode" bs--sort-by-mode "Mode" region) | |
391 ("by filename" bs--sort-by-filename "File" region) | |
392 ("by nothing" nil nil nil)) | |
393 "*List of all possible sorting aspects for Buffer Selection Menu. | |
394 You can add a new entry with a call to `bs-define-sort-function'. | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
395 Each element is a list of four elements (NAME FUNCTION REGEXP-FOR-SORTING FACE). |
27016 | 396 NAME specifies the sort order defined by function FUNCTION. |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
397 FUNCTION nil means don't sort the buffer list. Otherwise the function |
27016 | 398 must have two parameters - the buffers to compare. |
399 REGEXP-FOR-SORTING is a regular expression which describes the | |
400 column title to highlight. | |
401 FACE is a face used to fontify the sorted column title. A value of nil means | |
402 don't highlight." | |
403 :group 'bs | |
404 :type '(repeat sexp)) | |
405 | |
406 (defun bs-define-sort-function (name fun &optional regexp-for-sorting face) | |
407 "Define a new function for buffer sorting in Buffer Selection Menu. | |
408 NAME specifies the sort order defined by function FUN. | |
409 A value of nil for FUN means don't sort the buffer list. Otherwise the | |
410 functions must have two parameters - the buffers to compare. | |
411 REGEXP-FOR-SORTING is a regular expression which describes the | |
412 column title to highlight. | |
413 FACE is a face used to fontify the sorted column title. A value of nil means | |
414 don't highlight. | |
415 The new sort aspect will be inserted into list `bs-sort-functions'." | |
416 (let ((tupel (assoc name bs-sort-functions))) | |
417 (if tupel | |
30799 | 418 (setcdr tupel (list fun regexp-for-sorting face)) |
27016 | 419 (setq bs-sort-functions |
30799 | 420 (cons (list name fun regexp-for-sorting face) |
421 bs-sort-functions))))) | |
27016 | 422 |
423 (defvar bs--current-sort-function nil | |
424 "Description of the current function for sorting the buffer list. | |
425 This is an element of `bs-sort-functions'.") | |
426 | |
427 (defcustom bs-default-sort-name "by nothing" | |
428 "*Name of default sort behavior. | |
429 Must be \"by nothing\" or a string used in `bs-sort-functions' for | |
430 naming a sort behavior. Default is \"by nothing\" which means no sorting." | |
431 :group 'bs | |
432 :type 'string | |
433 :set (lambda (var-name value) | |
30799 | 434 (set var-name value) |
435 (setq bs--current-sort-function | |
436 (assoc value bs-sort-functions)))) | |
27016 | 437 |
438 (defvar bs--buffer-coming-from nil | |
439 "The buffer in which the user started the current Buffer Selection Menu.") | |
440 | |
441 (defvar bs--show-all nil | |
442 "Flag whether showing all buffers regardless of current configuration. | |
73642
d4b7bfddf3f5
(bs--show-all, bs--redisplay): Use "non-nil" in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
68924
diff
changeset
|
443 Non-nil means to show all buffers. Otherwise show buffers |
27016 | 444 defined by current configuration `bs-current-configuration'.") |
445 | |
446 (defvar bs--window-config-coming-from nil | |
447 "Window configuration before starting Buffer Selection Menu.") | |
448 | |
449 (defvar bs--intern-show-never "^ \\|\\*buffer-selection\\*" | |
450 "Regular expression specifying which buffers never to show. | |
451 A buffer whose name matches this regular expression will never be | |
452 included in the buffer list.") | |
453 | |
454 (defvar bs-current-list nil | |
455 "List of buffers shown in Buffer Selection Menu. | |
456 Used internally, only.") | |
457 | |
458 (defvar bs--marked-buffers nil | |
459 "Currently marked buffers in Buffer Selection Menu.") | |
460 | |
52243 | 461 (defvar bs-mode-map |
462 (let ((map (make-sparse-keymap))) | |
463 (define-key map " " 'bs-select) | |
464 (define-key map "f" 'bs-select) | |
465 (define-key map "v" 'bs-view) | |
466 (define-key map "!" 'bs-select-in-one-window) | |
467 (define-key map [mouse-2] 'bs-mouse-select) ;; for GNU EMACS | |
468 (define-key map [button2] 'bs-mouse-select) ;; for XEmacs | |
469 (define-key map "F" 'bs-select-other-frame) | |
470 (let ((key ?1)) | |
471 (while (<= key ?9) | |
472 (define-key map (char-to-string key) 'digit-argument) | |
473 (setq key (1+ key)))) | |
474 (define-key map "-" 'negative-argument) | |
475 (define-key map "\e-" 'negative-argument) | |
476 (define-key map "o" 'bs-select-other-window) | |
477 (define-key map "\C-o" 'bs-tmp-select-other-window) | |
478 ;; for GNU EMACS | |
479 (define-key map [mouse-3] 'bs-mouse-select-other-frame) | |
480 ;; for XEmacs | |
481 (define-key map [button3] 'bs-mouse-select-other-frame) | |
482 (define-key map [up] 'bs-up) | |
483 (define-key map "n" 'bs-down) | |
484 (define-key map "p" 'bs-up) | |
485 (define-key map [down] 'bs-down) | |
486 (define-key map "\C-m" 'bs-select) | |
487 (define-key map "b" 'bs-bury-buffer) | |
488 (define-key map "s" 'bs-save) | |
489 (define-key map "S" 'bs-show-sorted) | |
490 (define-key map "a" 'bs-toggle-show-all) | |
491 (define-key map "d" 'bs-delete) | |
492 (define-key map "\C-d" 'bs-delete-backward) | |
493 (define-key map "k" 'bs-delete) | |
494 (define-key map "g" 'bs-refresh) | |
495 (define-key map "C" 'bs-set-configuration-and-refresh) | |
496 (define-key map "c" 'bs-select-next-configuration) | |
497 (define-key map "q" 'bs-kill) | |
498 ;; (define-key map "z" 'bs-kill) | |
499 (define-key map "\C-c\C-c" 'bs-kill) | |
500 (define-key map "\C-g" 'bs-abort) | |
501 (define-key map "\C-]" 'bs-abort) | |
502 (define-key map "%" 'bs-toggle-readonly) | |
503 (define-key map "~" 'bs-clear-modified) | |
504 (define-key map "M" 'bs-toggle-current-to-show) | |
505 (define-key map "+" 'bs-set-current-buffer-to-show-always) | |
506 ;;(define-key map "-" 'bs-set-current-buffer-to-show-never) | |
507 (define-key map "t" 'bs-visit-tags-table) | |
508 (define-key map "m" 'bs-mark-current) | |
509 (define-key map "u" 'bs-unmark-current) | |
510 (define-key map ">" 'scroll-right) | |
511 (define-key map "<" 'scroll-left) | |
512 (define-key map "?" 'bs-help) | |
513 map) | |
27016 | 514 "Keymap of `bs-mode'.") |
515 | |
516 ;; ---------------------------------------------------------------------- | |
517 ;; Functions | |
518 ;; ---------------------------------------------------------------------- | |
519 | |
520 (defun bs-buffer-list (&optional list sort-description) | |
521 "Return a list of buffers to be shown. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
522 LIST is a list of buffers to test for appearance in Buffer Selection Menu. |
27016 | 523 The result list depends on the global variables `bs-dont-show-regexp', |
524 `bs-must-show-regexp', `bs-dont-show-function', `bs-must-show-function' | |
525 and `bs-buffer-sort-function'. | |
526 If SORT-DESCRIPTION isn't nil the list will be sorted by | |
527 a special function. SORT-DESCRIPTION is an element of `bs-sort-functions'." | |
528 (setq sort-description (or sort-description bs--current-sort-function) | |
30799 | 529 list (or list (buffer-list))) |
27016 | 530 (let ((result nil)) |
531 (while list | |
532 (let* ((buffername (buffer-name (car list))) | |
30799 | 533 (int-show-never (string-match bs--intern-show-never buffername)) |
534 (ext-show-never (and bs-dont-show-regexp | |
535 (string-match bs-dont-show-regexp | |
536 buffername))) | |
537 (extern-must-show (or (and bs-must-always-show-regexp | |
538 (string-match | |
539 bs-must-always-show-regexp | |
540 buffername)) | |
541 (and bs-must-show-regexp | |
542 (string-match bs-must-show-regexp | |
543 buffername)))) | |
544 (extern-show-never-from-fun (and bs-dont-show-function | |
545 (funcall bs-dont-show-function | |
546 (car list)))) | |
547 (extern-must-show-from-fun (and bs-must-show-function | |
548 (funcall bs-must-show-function | |
549 (car list)))) | |
54581
0a5e192bf05d
(bs-buffer-list): Use buffer-local-value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
550 (show-flag (buffer-local-value 'bs-buffer-show-mark (car list)))) |
30799 | 551 (if (or (eq show-flag 'always) |
552 (and (or bs--show-all (not (eq show-flag 'never))) | |
553 (not int-show-never) | |
554 (or bs--show-all | |
555 extern-must-show | |
556 extern-must-show-from-fun | |
557 (and (not ext-show-never) | |
558 (not extern-show-never-from-fun))))) | |
559 (setq result (cons (car list) | |
560 result))) | |
561 (setq list (cdr list)))) | |
27016 | 562 (setq result (reverse result)) |
563 ;; The current buffer which was the start point of bs should be an element | |
564 ;; of result list, so that we can leave with space and be back in the | |
565 ;; buffer we started bs-show. | |
566 (if (and bs--buffer-coming-from | |
30799 | 567 (buffer-live-p bs--buffer-coming-from) |
568 (not (memq bs--buffer-coming-from result))) | |
569 (setq result (cons bs--buffer-coming-from result))) | |
27016 | 570 ;; sorting |
571 (if (and sort-description | |
30799 | 572 (nth 1 sort-description)) |
573 (setq result (sort result (nth 1 sort-description))) | |
27016 | 574 ;; else standard sorting |
575 (bs-buffer-sort result)))) | |
576 | |
577 (defun bs-buffer-sort (buffer-list) | |
578 "Sort buffers in BUFFER-LIST according to `bs-buffer-sort-function'." | |
579 (if bs-buffer-sort-function | |
580 (sort buffer-list bs-buffer-sort-function) | |
581 buffer-list)) | |
582 | |
583 (defun bs--redisplay (&optional keep-line-p sort-description) | |
584 "Redisplay whole Buffer Selection Menu. | |
73642
d4b7bfddf3f5
(bs--show-all, bs--redisplay): Use "non-nil" in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
68924
diff
changeset
|
585 If KEEP-LINE-P is non-nil the point will stay on current line. |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
586 SORT-DESCRIPTION is an element of `bs-sort-functions'." |
27016 | 587 (let ((line (1+ (count-lines 1 (point))))) |
588 (bs-show-in-buffer (bs-buffer-list nil sort-description)) | |
589 (if keep-line-p | |
30799 | 590 (goto-line line)) |
27016 | 591 (beginning-of-line))) |
592 | |
593 (defun bs--goto-current-buffer () | |
594 "Goto line which represents the current buffer; | |
595 actually the line which begins with character in `bs-string-current' or | |
596 `bs-string-current-marked'." | |
30799 | 597 (let ((regexp (concat "^" |
598 (regexp-quote bs-string-current) | |
599 "\\|^" | |
600 (regexp-quote bs-string-current-marked))) | |
601 point) | |
27016 | 602 (save-excursion |
603 (goto-char (point-min)) | |
604 (if (search-forward-regexp regexp nil t) | |
30799 | 605 (setq point (- (point) 1)))) |
27016 | 606 (if point |
30799 | 607 (goto-char point)))) |
27016 | 608 |
609 (defun bs--current-config-message () | |
610 "Return a string describing the current `bs-mode' configuration." | |
611 (if bs--show-all | |
612 "Show all buffers." | |
613 (format "Show buffer by configuration %S" | |
30799 | 614 bs-current-configuration))) |
27016 | 615 |
79104
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
616 (defun bs--track-window-changes (frame) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
617 "Track window changes to refresh the buffer list. |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
618 Used from `window-size-change-functions'." |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
619 (let ((win (get-buffer-window "*buffer-selection*" frame))) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
620 (when win |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
621 (with-selected-window win |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
622 (bs-refresh) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
623 (bs--set-window-height))))) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
624 |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
625 (defun bs--remove-hooks () |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
626 "Remove `bs--track-window-changes' and auxiliary hooks." |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
627 (remove-hook 'window-size-change-functions 'bs--track-window-changes) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
628 ;; Remove itself |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
629 (remove-hook 'kill-buffer-hook 'bs--remove-hooks t) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
630 (remove-hook 'change-major-mode-hook 'bs--remove-hooks t)) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
631 |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
632 (define-derived-mode bs-mode () |
27016 | 633 "Major mode for editing a subset of Emacs' buffers. |
634 \\<bs-mode-map> | |
635 Aside from two header lines each line describes one buffer. | |
636 Move to a line representing the buffer you want to edit and select | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
637 buffer by \\[bs-select] or SPC. Abort buffer list with \\[bs-kill]. |
27016 | 638 There are many key commands similar to `Buffer-menu-mode' for |
639 manipulating the buffer list and buffers. | |
640 For faster navigation each digit key is a digit argument. | |
641 | |
642 \\[bs-select] or SPACE -- select current line's buffer and other marked buffers. | |
643 \\[bs-toggle-show-all] -- toggle between all buffers and a special subset. | |
644 \\[bs-select-other-window] -- select current line's buffer in other window. | |
645 \\[bs-tmp-select-other-window] -- make another window display that buffer and | |
646 remain in Buffer Selection Menu. | |
647 \\[bs-mouse-select] -- select current line's buffer and other marked buffers. | |
56993 | 648 \\[bs-save] -- save current line's buffer immediately. |
649 \\[bs-delete] -- kill current line's buffer immediately. | |
27016 | 650 \\[bs-toggle-readonly] -- toggle read-only status of current line's buffer. |
651 \\[bs-clear-modified] -- clear modified-flag on that buffer. | |
652 \\[bs-mark-current] -- mark current line's buffer to be displayed. | |
653 \\[bs-unmark-current] -- unmark current line's buffer to be displayed. | |
654 \\[bs-show-sorted] -- display buffer list sorted by next sort aspect. | |
655 \\[bs-set-configuration-and-refresh] -- ask user for a configuration and \ | |
656 apply selected configuration. | |
657 \\[bs-select-next-configuration] -- select and apply next \ | |
658 available Buffer Selection Menu configuration. | |
659 \\[bs-kill] -- leave Buffer Selection Menu without a selection. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
660 \\[bs-toggle-current-to-show] -- toggle status of appearance. |
27016 | 661 \\[bs-set-current-buffer-to-show-always] -- mark current line's buffer \ |
662 to show always. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
663 \\[bs-visit-tags-table] -- call `visit-tags-table' on current line's buffer. |
27016 | 664 \\[bs-help] -- display this help text." |
665 (make-local-variable 'font-lock-defaults) | |
666 (make-local-variable 'font-lock-verbose) | |
78976
467771c10c11
(bs-mode): Make sure global-font-lock-mode doesn't activate
Juanma Barranquero <lekktu@gmail.com>
parents:
78972
diff
changeset
|
667 (make-local-variable 'font-lock-global-modes) |
68924
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
668 (buffer-disable-undo) |
79104
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
669 (setq buffer-read-only t |
30799 | 670 truncate-lines t |
78950
569e6cbc4c70
Don't defvar `fontlock-verbose'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78236
diff
changeset
|
671 show-trailing-whitespace nil |
78976
467771c10c11
(bs-mode): Make sure global-font-lock-mode doesn't activate
Juanma Barranquero <lekktu@gmail.com>
parents:
78972
diff
changeset
|
672 font-lock-global-modes '(not bs-mode) |
30799 | 673 font-lock-defaults '(bs-mode-font-lock-keywords t) |
79105
e091b0e7b0c7
(bs-mode): Set hooks (accidentally left out in the previous commit).
Juanma Barranquero <lekktu@gmail.com>
parents:
79104
diff
changeset
|
674 font-lock-verbose nil) |
e091b0e7b0c7
(bs-mode): Set hooks (accidentally left out in the previous commit).
Juanma Barranquero <lekktu@gmail.com>
parents:
79104
diff
changeset
|
675 (add-hook 'window-size-change-functions 'bs--track-window-changes) |
e091b0e7b0c7
(bs-mode): Set hooks (accidentally left out in the previous commit).
Juanma Barranquero <lekktu@gmail.com>
parents:
79104
diff
changeset
|
676 (add-hook 'kill-buffer-hook 'bs--remove-hooks nil t) |
e091b0e7b0c7
(bs-mode): Set hooks (accidentally left out in the previous commit).
Juanma Barranquero <lekktu@gmail.com>
parents:
79104
diff
changeset
|
677 (add-hook 'change-major-mode-hook 'bs--remove-hooks nil t)) |
27016 | 678 |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
679 (defun bs--restore-window-config () |
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
680 "Restore window configuration on the current frame." |
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
681 (when bs--window-config-coming-from |
79104
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
682 (let ((frame (selected-frame))) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
683 (unwind-protect |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
684 (set-window-configuration bs--window-config-coming-from) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
685 (select-frame frame))) |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
686 (setq bs--window-config-coming-from nil))) |
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
687 |
27016 | 688 (defun bs-kill () |
78952
e1da8e0b5ae2
(bs-kill): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
78950
diff
changeset
|
689 "Let buffer disappear and reset window configuration." |
27016 | 690 (interactive) |
691 (bury-buffer (current-buffer)) | |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
692 (bs--restore-window-config)) |
27016 | 693 |
694 (defun bs-abort () | |
695 "Ding and leave Buffer Selection Menu without a selection." | |
30799 | 696 (interactive) |
27016 | 697 (ding) |
698 (bs-kill)) | |
699 | |
700 (defun bs-set-configuration-and-refresh () | |
701 "Ask user for a configuration and apply selected configuration. | |
702 Refresh whole Buffer Selection Menu." | |
703 (interactive) | |
704 (call-interactively 'bs-set-configuration) | |
705 (bs--redisplay t)) | |
706 | |
707 (defun bs-refresh () | |
708 "Refresh whole Buffer Selection Menu." | |
709 (interactive) | |
710 (bs--redisplay t)) | |
711 | |
712 (defun bs--set-window-height () | |
713 "Change the height of the selected window to suit the current buffer list." | |
714 (unless (one-window-p t) | |
68502
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
715 (fit-window-to-buffer (selected-window) bs-max-window-height))) |
27016 | 716 |
717 (defun bs--current-buffer () | |
718 "Return buffer on current line. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
719 Raise an error if not on a buffer line." |
27016 | 720 (beginning-of-line) |
721 (let ((line (+ (- bs-header-lines-length) | |
30799 | 722 (count-lines 1 (point))))) |
27016 | 723 (if (< line 0) |
30799 | 724 (error "You are on a header row")) |
27016 | 725 (nth line bs-current-list))) |
726 | |
727 (defun bs--update-current-line () | |
728 "Update the entry on current line for Buffer Selection Menu." | |
729 (let ((buffer (bs--current-buffer)) | |
30799 | 730 (inhibit-read-only t)) |
27016 | 731 (beginning-of-line) |
732 (delete-region (point) (line-end-position)) | |
733 (bs--insert-one-entry buffer) | |
734 (beginning-of-line))) | |
735 | |
736 (defun bs-view () | |
737 "View current line's buffer in View mode. | |
738 Leave Buffer Selection Menu." | |
739 (interactive) | |
740 (view-buffer (bs--current-buffer))) | |
741 | |
742 (defun bs-select () | |
743 "Select current line's buffer and other marked buffers. | |
744 If there are no marked buffers the window configuration before starting | |
745 Buffer Selectin Menu will be restored. | |
746 If there are marked buffers each marked buffer and the current line's buffer | |
747 will be selected in a window. | |
748 Leave Buffer Selection Menu." | |
749 (interactive) | |
750 (let ((buffer (bs--current-buffer))) | |
751 (bury-buffer (current-buffer)) | |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
752 (bs--restore-window-config) |
27016 | 753 (switch-to-buffer buffer) |
754 (if bs--marked-buffers | |
30799 | 755 ;; Some marked buffers for selection |
756 (let* ((all (delq buffer bs--marked-buffers)) | |
757 (height (/ (1- (frame-height)) (1+ (length all))))) | |
758 (delete-other-windows) | |
759 (switch-to-buffer buffer) | |
760 (while all | |
761 (split-window nil height) | |
762 (other-window 1) | |
763 (switch-to-buffer (car all)) | |
764 (setq all (cdr all))) | |
765 ;; goto window we have started bs. | |
766 (other-window 1))))) | |
27016 | 767 |
768 (defun bs-select-other-window () | |
769 "Select current line's buffer by `switch-to-buffer-other-window'. | |
770 The window configuration before starting Buffer Selectin Menu will be restored | |
771 unless there is no other window. In this case a new window will be created. | |
772 Leave Buffer Selection Menu." | |
773 (interactive) | |
774 (let ((buffer (bs--current-buffer))) | |
775 (bury-buffer (current-buffer)) | |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
776 (bs--restore-window-config) |
27016 | 777 (switch-to-buffer-other-window buffer))) |
778 | |
779 (defun bs-tmp-select-other-window () | |
780 "Make the other window select this line's buffer. | |
781 The current window remains selected." | |
782 (interactive) | |
783 (let ((buffer (bs--current-buffer))) | |
784 (display-buffer buffer t))) | |
785 | |
786 (defun bs-select-other-frame () | |
787 "Select current line's buffer in new created frame. | |
788 Leave Buffer Selection Menu." | |
789 (interactive) | |
790 (let ((buffer (bs--current-buffer))) | |
791 (bury-buffer (current-buffer)) | |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
792 (bs--restore-window-config) |
27016 | 793 (switch-to-buffer-other-frame buffer))) |
794 | |
795 (defun bs-mouse-select-other-frame (event) | |
796 "Select selected line's buffer in new created frame. | |
797 Leave Buffer Selection Menu. | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
798 EVENT: a mouse click event." |
27016 | 799 (interactive "e") |
800 (mouse-set-point event) | |
801 (bs-select-other-frame)) | |
802 | |
803 (defun bs-mouse-select (event) | |
804 "Select buffer on mouse click EVENT. | |
805 Select buffer by `bs-select'." | |
806 (interactive "e") | |
807 (mouse-set-point event) | |
808 (bs-select)) | |
809 | |
810 (defun bs-select-in-one-window () | |
811 "Select current line's buffer in one window and delete other windows. | |
812 Leave Buffer Selection Menu." | |
813 (interactive) | |
814 (bs-select) | |
815 (delete-other-windows)) | |
816 | |
817 (defun bs-bury-buffer () | |
818 "Bury buffer on current line." | |
819 (interactive) | |
820 (bury-buffer (bs--current-buffer)) | |
821 (bs--redisplay t)) | |
822 | |
823 (defun bs-save () | |
824 "Save buffer on current line." | |
825 (interactive) | |
826 (let ((buffer (bs--current-buffer))) | |
827 (save-excursion | |
828 (set-buffer buffer) | |
829 (save-buffer)) | |
830 (bs--update-current-line))) | |
831 | |
832 (defun bs-visit-tags-table () | |
833 "Visit the tags table in the buffer on this line. | |
834 See `visit-tags-table'." | |
835 (interactive) | |
836 (let ((file (buffer-file-name (bs--current-buffer)))) | |
837 (if file | |
30799 | 838 (visit-tags-table file) |
27016 | 839 (error "Specified buffer has no file")))) |
840 | |
841 (defun bs-toggle-current-to-show () | |
842 "Toggle status of showing flag for buffer in current line." | |
843 (interactive) | |
844 (let ((buffer (bs--current-buffer)) | |
30799 | 845 res) |
27016 | 846 (save-excursion |
847 (set-buffer buffer) | |
848 (setq res (cond ((null bs-buffer-show-mark) | |
30799 | 849 'never) |
850 ((eq bs-buffer-show-mark 'never) | |
851 'always) | |
852 (t nil))) | |
27016 | 853 (setq bs-buffer-show-mark res)) |
854 (bs--update-current-line) | |
855 (bs--set-window-height) | |
856 (bs--show-config-message res))) | |
857 | |
858 (defun bs-set-current-buffer-to-show-always (&optional not-to-show-p) | |
859 "Toggle status of buffer on line to `always shown'. | |
860 NOT-TO-SHOW-P: prefix argument. | |
861 With no prefix argument the buffer on current line is marked to show | |
862 always. Otherwise it is marked to show never." | |
863 (interactive "P") | |
864 (if not-to-show-p | |
865 (bs-set-current-buffer-to-show-never) | |
866 (bs--set-toggle-to-show (bs--current-buffer) 'always))) | |
867 | |
868 (defun bs-set-current-buffer-to-show-never () | |
869 "Toggle status of buffer on line to `never shown'." | |
870 (interactive) | |
871 (bs--set-toggle-to-show (bs--current-buffer) 'never)) | |
872 | |
873 (defun bs--set-toggle-to-show (buffer what) | |
874 "Set value `bs-buffer-show-mark' of buffer BUFFER to WHAT. | |
875 Redisplay current line and display a message describing | |
876 the status of buffer on current line." | |
54581
0a5e192bf05d
(bs-buffer-list): Use buffer-local-value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
877 (with-current-buffer buffer (setq bs-buffer-show-mark what)) |
27016 | 878 (bs--update-current-line) |
879 (bs--set-window-height) | |
880 (bs--show-config-message what)) | |
881 | |
882 (defun bs-mark-current (count) | |
883 "Mark buffers. | |
884 COUNT is the number of buffers to mark. | |
885 Move cursor vertically down COUNT lines." | |
886 (interactive "p") | |
887 (let ((dir (if (> count 0) 1 -1)) | |
30799 | 888 (count (abs count))) |
27016 | 889 (while (> count 0) |
890 (let ((buffer (bs--current-buffer))) | |
30799 | 891 (if buffer |
892 (setq bs--marked-buffers (cons buffer bs--marked-buffers))) | |
893 (bs--update-current-line) | |
894 (bs-down dir)) | |
27016 | 895 (setq count (1- count))))) |
896 | |
897 (defun bs-unmark-current (count) | |
898 "Unmark buffers. | |
899 COUNT is the number of buffers to unmark. | |
900 Move cursor vertically down COUNT lines." | |
901 (interactive "p") | |
902 (let ((dir (if (> count 0) 1 -1)) | |
30799 | 903 (count (abs count))) |
27016 | 904 (while (> count 0) |
905 (let ((buffer (bs--current-buffer))) | |
30799 | 906 (if buffer |
907 (setq bs--marked-buffers (delq buffer bs--marked-buffers))) | |
908 (bs--update-current-line) | |
909 (bs-down dir)) | |
27016 | 910 (setq count (1- count))))) |
911 | |
912 (defun bs--show-config-message (what) | |
913 "Show message indicating the new showing status WHAT. | |
914 WHAT is a value of nil, `never', or `always'." | |
915 (bs-message-without-log (cond ((null what) | |
30799 | 916 "Buffer will be shown normally.") |
917 ((eq what 'never) | |
918 "Mark buffer to never be shown.") | |
919 (t "Mark buffer to show always.")))) | |
27016 | 920 |
921 (defun bs-delete () | |
922 "Kill buffer on current line." | |
923 (interactive) | |
924 (let ((current (bs--current-buffer)) | |
30799 | 925 (inhibit-read-only t)) |
41312
f78848439507
(bs-delete): Signal an error if the buffer cannot be deleted.
Eli Zaretskii <eliz@gnu.org>
parents:
39568
diff
changeset
|
926 (unless (kill-buffer current) |
f78848439507
(bs-delete): Signal an error if the buffer cannot be deleted.
Eli Zaretskii <eliz@gnu.org>
parents:
39568
diff
changeset
|
927 (error "Buffer was not deleted")) |
27016 | 928 (setq bs-current-list (delq current bs-current-list)) |
929 (beginning-of-line) | |
930 (delete-region (point) (save-excursion | |
30799 | 931 (end-of-line) |
932 (if (eobp) (point) (1+ (point))))) | |
27016 | 933 (if (eobp) |
30799 | 934 (progn |
935 (backward-delete-char 1) | |
936 (beginning-of-line) | |
937 (recenter -1))) | |
27016 | 938 (bs--set-window-height))) |
939 | |
940 (defun bs-delete-backward () | |
941 "Like `bs-delete' but go to buffer in front of current." | |
942 (interactive) | |
943 (let ((on-last-line-p (save-excursion (end-of-line) (eobp)))) | |
944 (bs-delete) | |
945 (unless on-last-line-p | |
30799 | 946 (bs-up 1)))) |
27016 | 947 |
948 (defun bs-show-sorted () | |
78976
467771c10c11
(bs-mode): Make sure global-font-lock-mode doesn't activate
Juanma Barranquero <lekktu@gmail.com>
parents:
78972
diff
changeset
|
949 "Show buffer list sorted by next sort aspect." |
27016 | 950 (interactive) |
951 (setq bs--current-sort-function | |
30799 | 952 (bs-next-config-aux (car bs--current-sort-function) |
953 bs-sort-functions)) | |
27016 | 954 (bs--redisplay) |
955 (bs--goto-current-buffer) | |
956 (bs-message-without-log "Sorted %s" (car bs--current-sort-function))) | |
957 | |
958 (defun bs-apply-sort-faces (&optional sort-description) | |
959 "Set text properties for the sort described by SORT-DESCRIPTION. | |
960 SORT-DESCRIPTION is an element of `bs-sort-functions'. | |
961 Default is `bs--current-sort-function'." | |
962 (let ((sort-description (or sort-description | |
30799 | 963 bs--current-sort-function))) |
27016 | 964 (save-excursion |
965 (goto-char (point-min)) | |
30615
35d2f8b86ee9
(bs-apply-sort-faces): Don't use window-system, since all
Eli Zaretskii <eliz@gnu.org>
parents:
27576
diff
changeset
|
966 (if (and (nth 2 sort-description) |
35d2f8b86ee9
(bs-apply-sort-faces): Don't use window-system, since all
Eli Zaretskii <eliz@gnu.org>
parents:
27576
diff
changeset
|
967 (search-forward-regexp (nth 2 sort-description) nil t)) |
35d2f8b86ee9
(bs-apply-sort-faces): Don't use window-system, since all
Eli Zaretskii <eliz@gnu.org>
parents:
27576
diff
changeset
|
968 (let ((inhibit-read-only t)) |
35d2f8b86ee9
(bs-apply-sort-faces): Don't use window-system, since all
Eli Zaretskii <eliz@gnu.org>
parents:
27576
diff
changeset
|
969 (put-text-property (match-beginning 0) |
35d2f8b86ee9
(bs-apply-sort-faces): Don't use window-system, since all
Eli Zaretskii <eliz@gnu.org>
parents:
27576
diff
changeset
|
970 (match-end 0) |
35d2f8b86ee9
(bs-apply-sort-faces): Don't use window-system, since all
Eli Zaretskii <eliz@gnu.org>
parents:
27576
diff
changeset
|
971 'face |
35d2f8b86ee9
(bs-apply-sort-faces): Don't use window-system, since all
Eli Zaretskii <eliz@gnu.org>
parents:
27576
diff
changeset
|
972 (or (nth 3 sort-description) |
35d2f8b86ee9
(bs-apply-sort-faces): Don't use window-system, since all
Eli Zaretskii <eliz@gnu.org>
parents:
27576
diff
changeset
|
973 'region))))))) |
27016 | 974 |
975 (defun bs-toggle-show-all () | |
976 "Toggle show all buffers / show buffers with current configuration." | |
977 (interactive) | |
978 (setq bs--show-all (not bs--show-all)) | |
979 (bs--redisplay) | |
980 (bs--goto-current-buffer) | |
981 (bs-message-without-log "%s" (bs--current-config-message))) | |
982 | |
983 (defun bs-toggle-readonly () | |
984 "Toggle read-only status for buffer on current line. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
985 Uses function `vc-toggle-read-only'." |
27016 | 986 (interactive) |
987 (let ((buffer (bs--current-buffer))) | |
988 (save-excursion | |
989 (set-buffer buffer) | |
990 (vc-toggle-read-only)) | |
991 (bs--update-current-line))) | |
992 | |
993 (defun bs-clear-modified () | |
994 "Set modified flag for buffer on current line to nil." | |
995 (interactive) | |
996 (let ((buffer (bs--current-buffer))) | |
997 (save-excursion | |
998 (set-buffer buffer) | |
999 (set-buffer-modified-p nil))) | |
1000 (bs--update-current-line)) | |
1001 | |
1002 (defun bs--nth-wrapper (count fun &rest args) | |
1003 "Call COUNT times function FUN with arguments ARGS." | |
1004 (setq count (or count 1)) | |
1005 (while (> count 0) | |
1006 (apply fun args) | |
1007 (setq count (1- count)))) | |
1008 | |
1009 (defun bs-up (arg) | |
1010 "Move cursor vertically up ARG lines in Buffer Selection Menu." | |
1011 (interactive "p") | |
1012 (if (and arg (numberp arg) (< arg 0)) | |
1013 (bs--nth-wrapper (- arg) 'bs--down) | |
1014 (bs--nth-wrapper arg 'bs--up))) | |
1015 | |
1016 (defun bs--up () | |
1017 "Move cursor vertically up one line. | |
1018 If on top of buffer list go to last line." | |
68502
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1019 (if (> (count-lines 1 (point)) bs-header-lines-length) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1020 (forward-line -1) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1021 (goto-char (point-max)) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1022 (beginning-of-line) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1023 (recenter -1))) |
27016 | 1024 |
1025 (defun bs-down (arg) | |
1026 "Move cursor vertically down ARG lines in Buffer Selection Menu." | |
1027 (interactive "p") | |
1028 (if (and arg (numberp arg) (< arg 0)) | |
1029 (bs--nth-wrapper (- arg) 'bs--up) | |
1030 (bs--nth-wrapper arg 'bs--down))) | |
1031 | |
1032 (defun bs--down () | |
1033 "Move cursor vertically down one line. | |
1034 If at end of buffer list go to first line." | |
68502
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1035 (if (eq (line-end-position) (point-max)) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1036 (goto-line (1+ bs-header-lines-length)) |
6ede67948264
Allow non-default values of `bs-header-lines-length'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68447
diff
changeset
|
1037 (forward-line 1))) |
27016 | 1038 |
1039 (defun bs-visits-non-file (buffer) | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
1040 "Return whether BUFFER visits no file. |
27016 | 1041 A value of t means BUFFER belongs to no file. |
1042 A value of nil means BUFFER belongs to a file." | |
1043 (not (buffer-file-name buffer))) | |
1044 | |
1045 (defun bs-sort-buffer-interns-are-last (b1 b2) | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
1046 "Function for sorting internal buffers at the end of all buffers." |
27016 | 1047 (string-match "^\\*" (buffer-name b2))) |
1048 | |
1049 ;; ---------------------------------------------------------------------- | |
1050 ;; Configurations: | |
1051 ;; ---------------------------------------------------------------------- | |
1052 | |
1053 (defun bs-config-clear () | |
78950
569e6cbc4c70
Don't defvar `fontlock-verbose'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78236
diff
changeset
|
1054 "Reset all variables which specify a configuration. |
27016 | 1055 These variables are `bs-dont-show-regexp', `bs-must-show-regexp', |
1056 `bs-dont-show-function', `bs-must-show-function' and | |
1057 `bs-buffer-sort-function'." | |
1058 (setq bs-dont-show-regexp nil | |
30799 | 1059 bs-must-show-regexp nil |
1060 bs-dont-show-function nil | |
1061 bs-must-show-function nil | |
1062 bs-buffer-sort-function nil)) | |
27016 | 1063 |
1064 (defun bs-config--only-files () | |
1065 "Define a configuration for showing only buffers visiting a file." | |
1066 (bs-config-clear) | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1067 (setq ;; I want to see *-buffers at the end |
30799 | 1068 bs-buffer-sort-function 'bs-sort-buffer-interns-are-last |
1069 ;; Don't show files who don't belong to a file | |
1070 bs-dont-show-function 'bs-visits-non-file)) | |
27016 | 1071 |
1072 (defun bs-config--files-and-scratch () | |
1073 "Define a configuration for showing buffer *scratch* and file buffers." | |
1074 (bs-config-clear) | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1075 (setq ;; I want to see *-buffers at the end |
30799 | 1076 bs-buffer-sort-function 'bs-sort-buffer-interns-are-last |
1077 ;; Don't show files who don't belong to a file | |
1078 bs-dont-show-function 'bs-visits-non-file | |
1079 ;; Show *scratch* buffer. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1080 bs-must-show-regexp "^\\*scratch\\*$")) |
27016 | 1081 |
1082 (defun bs-config--all () | |
1083 "Define a configuration for showing all buffers. | |
1084 Reset all according variables by `bs-config-clear'." | |
1085 (bs-config-clear)) | |
1086 | |
1087 (defun bs-config--all-intern-last () | |
1088 "Define a configuration for showing all buffers. | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1089 Internal buffers appear at end of all buffers." |
27016 | 1090 (bs-config-clear) |
1091 ;; I want to see *-buffers at the end | |
1092 (setq bs-buffer-sort-function 'bs-sort-buffer-interns-are-last)) | |
1093 | |
1094 (defun bs-set-configuration (name) | |
1095 "Set configuration to the one saved under string NAME in `bs-configurations'. | |
1096 When called interactively ask user for a configuration and apply selected | |
1097 configuration." | |
1098 (interactive (list (completing-read "Use configuration: " | |
30799 | 1099 bs-configurations |
1100 nil | |
1101 t))) | |
27016 | 1102 (let ((list (assoc name bs-configurations))) |
1103 (if list | |
30799 | 1104 (if (listp list) |
1105 (setq bs-current-configuration name | |
1106 bs-must-show-regexp (nth 1 list) | |
1107 bs-must-show-function (nth 2 list) | |
1108 bs-dont-show-regexp (nth 3 list) | |
1109 bs-dont-show-function (nth 4 list) | |
1110 bs-buffer-sort-function (nth 5 list)) | |
1111 ;; for backward compability | |
1112 (funcall (cdr list))) | |
27016 | 1113 ;; else |
1114 (ding) | |
1115 (bs-message-without-log "No bs-configuration named %S." name)))) | |
1116 | |
1117 (defun bs-help () | |
1118 "Help for `bs-show'." | |
1119 (interactive) | |
1120 (describe-function 'bs-mode)) | |
1121 | |
1122 (defun bs-next-config-aux (start-name list) | |
1123 "Get the next assoc after START-NAME in list LIST. | |
1124 Will return the first if START-NAME is at end." | |
1125 (let ((assocs list) | |
30799 | 1126 (length (length list)) |
1127 pos) | |
27016 | 1128 (while (and assocs (not pos)) |
1129 (if (string= (car (car assocs)) start-name) | |
30799 | 1130 (setq pos (- length (length assocs)))) |
27016 | 1131 (setq assocs (cdr assocs))) |
1132 (setq pos (1+ pos)) | |
1133 (if (eq pos length) | |
30799 | 1134 (car list) |
27016 | 1135 (nth pos list)))) |
1136 | |
1137 (defun bs-next-config (name) | |
1138 "Return next configuration with respect to configuration with name NAME." | |
1139 (bs-next-config-aux name bs-configurations)) | |
1140 | |
1141 (defun bs-select-next-configuration (&optional start-name) | |
1142 "Apply next configuration START-NAME and refresh buffer list. | |
1143 If START-NAME is nil the current configuration `bs-current-configuration' | |
1144 will be used." | |
1145 (interactive) | |
1146 (let ((config (bs-next-config (or start-name bs-current-configuration)))) | |
1147 (bs-set-configuration (car config)) | |
1148 (setq bs-default-configuration bs-current-configuration) | |
1149 (bs--redisplay t) | |
1150 (bs--set-window-height) | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1151 (bs-message-without-log "Selected configuration: %s" (car config)))) |
27016 | 1152 |
1153 (defun bs-show-in-buffer (list) | |
1154 "Display buffer list LIST in buffer *buffer-selection*. | |
1155 Select buffer *buffer-selection* and display buffers according to current | |
1156 configuration `bs-current-configuration'. Set window height, fontify buffer | |
1157 and move point to current buffer." | |
1158 (setq bs-current-list list) | |
1159 (switch-to-buffer (get-buffer-create "*buffer-selection*")) | |
1160 (bs-mode) | |
1161 (let* ((inhibit-read-only t) | |
30799 | 1162 (map-fun (lambda (entry) |
1163 (length (buffer-name entry)))) | |
1164 (max-length-of-names (apply 'max | |
1165 (cons 0 (mapcar map-fun list)))) | |
1166 (name-entry-length (min bs-maximal-buffer-name-column | |
1167 (max bs-minimal-buffer-name-column | |
1168 max-length-of-names)))) | |
27016 | 1169 (erase-buffer) |
1170 (setq bs--name-entry-length name-entry-length) | |
1171 (bs--show-header) | |
1172 (while list | |
1173 (bs--insert-one-entry (car list)) | |
1174 (insert "\n") | |
1175 (setq list (cdr list))) | |
1176 (delete-backward-char 1) | |
1177 (bs--set-window-height) | |
1178 (bs--goto-current-buffer) | |
1179 (font-lock-fontify-buffer) | |
68924
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1180 (bs-apply-sort-faces) |
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1181 (set-buffer-modified-p nil))) |
27016 | 1182 |
1183 (defun bs-next-buffer (&optional buffer-list sorting-p) | |
1184 "Return next buffer and buffer list for buffer cycling in BUFFER-LIST. | |
1185 Ignore sorting when SORTING-P is nil. | |
1186 If BUFFER-LIST is nil the result of `bs-buffer-list' will be used as | |
1187 buffer list. The result is a cons of normally the second element of | |
1188 BUFFER-LIST and the buffer list used for buffer cycling." | |
1189 (let* ((bs--current-sort-function (if sorting-p | |
30799 | 1190 bs--current-sort-function)) |
1191 (bs-buffer-list (or buffer-list (bs-buffer-list)))) | |
27016 | 1192 (cons (or (car (cdr bs-buffer-list)) |
30799 | 1193 (car bs-buffer-list) |
1194 (current-buffer)) | |
1195 bs-buffer-list))) | |
27016 | 1196 |
1197 (defun bs-previous-buffer (&optional buffer-list sorting-p) | |
1198 "Return previous buffer and buffer list for buffer cycling in BUFFER-LIST. | |
1199 Ignore sorting when SORTING-P is nil. | |
1200 If BUFFER-LIST is nil the result of `bs-buffer-list' will be used as | |
1201 buffer list. The result is a cons of last element of BUFFER-LIST and the | |
1202 buffer list used for buffer cycling." | |
1203 (let* ((bs--current-sort-function (if sorting-p | |
30799 | 1204 bs--current-sort-function)) |
1205 (bs-buffer-list (or buffer-list (bs-buffer-list)))) | |
27016 | 1206 (cons (or (car (last bs-buffer-list)) |
30799 | 1207 (current-buffer)) |
1208 bs-buffer-list))) | |
27016 | 1209 |
1210 (defun bs-message-without-log (&rest args) | |
1211 "Like `message' but don't log it on the message log. | |
47119
7a265d2c1031
(bs-message-without-log): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
41312
diff
changeset
|
1212 All arguments ARGS are transferred to function `message'." |
27016 | 1213 (let ((message-log-max nil)) |
1214 (apply 'message args))) | |
1215 | |
1216 (defvar bs--cycle-list nil | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1217 "Current buffer list used for cycling.") |
27016 | 1218 |
1219 ;;;###autoload | |
1220 (defun bs-cycle-next () | |
1221 "Select next buffer defined by buffer cycling. | |
1222 The buffers taking part in buffer cycling are defined | |
1223 by buffer configuration `bs-cycle-configuration-name'." | |
1224 (interactive) | |
1225 (let ((bs--buffer-coming-from (current-buffer)) | |
30799 | 1226 (bs-dont-show-regexp bs-dont-show-regexp) |
1227 (bs-must-show-regexp bs-must-show-regexp) | |
1228 (bs-dont-show-function bs-dont-show-function) | |
1229 (bs-must-show-function bs-must-show-function) | |
36925
11256092b610
(bs-cycle-next, bs-cycle-previous): Fix handling of
Gerd Moellmann <gerd@gnu.org>
parents:
36415
diff
changeset
|
1230 (bs--show-all nil)) |
11256092b610
(bs-cycle-next, bs-cycle-previous): Fix handling of
Gerd Moellmann <gerd@gnu.org>
parents:
36415
diff
changeset
|
1231 (bs-set-configuration (or bs-cycle-configuration-name bs-default-configuration)) |
27016 | 1232 (let ((bs-buffer-sort-function nil) |
30799 | 1233 (bs--current-sort-function nil)) |
27016 | 1234 (let* ((tupel (bs-next-buffer (if (or (eq last-command |
30799 | 1235 'bs-cycle-next) |
1236 (eq last-command | |
1237 'bs-cycle-previous)) | |
1238 bs--cycle-list))) | |
1239 (next (car tupel)) | |
1240 (cycle-list (cdr tupel))) | |
77917
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1241 (unless (window-dedicated-p (selected-window)) |
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1242 ;; We don't want the frame iconified if the only window in the frame |
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1243 ;; happens to be dedicated; let's get the error from switch-to-buffer |
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1244 (bury-buffer)) |
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1245 (switch-to-buffer next) |
30799 | 1246 (setq bs--cycle-list (append (cdr cycle-list) |
1247 (list (car cycle-list)))) | |
1248 (bs-message-without-log "Next buffers: %s" | |
1249 (or (cdr bs--cycle-list) | |
1250 "this buffer")))))) | |
27016 | 1251 |
1252 ;;;###autoload | |
1253 (defun bs-cycle-previous () | |
1254 "Select previous buffer defined by buffer cycling. | |
1255 The buffers taking part in buffer cycling are defined | |
1256 by buffer configuration `bs-cycle-configuration-name'." | |
1257 (interactive) | |
1258 (let ((bs--buffer-coming-from (current-buffer)) | |
30799 | 1259 (bs-dont-show-regexp bs-dont-show-regexp) |
1260 (bs-must-show-regexp bs-must-show-regexp) | |
1261 (bs-dont-show-function bs-dont-show-function) | |
1262 (bs-must-show-function bs-must-show-function) | |
36925
11256092b610
(bs-cycle-next, bs-cycle-previous): Fix handling of
Gerd Moellmann <gerd@gnu.org>
parents:
36415
diff
changeset
|
1263 (bs--show-all nil)) |
11256092b610
(bs-cycle-next, bs-cycle-previous): Fix handling of
Gerd Moellmann <gerd@gnu.org>
parents:
36415
diff
changeset
|
1264 (bs-set-configuration (or bs-cycle-configuration-name bs-default-configuration)) |
27016 | 1265 (let ((bs-buffer-sort-function nil) |
30799 | 1266 (bs--current-sort-function nil)) |
27016 | 1267 (let* ((tupel (bs-previous-buffer (if (or (eq last-command |
30799 | 1268 'bs-cycle-next) |
1269 (eq last-command | |
1270 'bs-cycle-previous)) | |
1271 bs--cycle-list))) | |
1272 (prev-buffer (car tupel)) | |
1273 (cycle-list (cdr tupel))) | |
77917
32e17b491f4f
(bs-cycle-previous): Don't modify the cycle list until
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1274 (switch-to-buffer prev-buffer) |
30799 | 1275 (setq bs--cycle-list (append (last cycle-list) |
1276 (reverse (cdr (reverse cycle-list))))) | |
1277 (bs-message-without-log "Previous buffers: %s" | |
1278 (or (reverse (cdr bs--cycle-list)) | |
1279 "this buffer")))))) | |
27016 | 1280 |
1281 (defun bs--get-value (fun &optional args) | |
1282 "Apply function FUN with arguments ARGS. | |
1283 Return result of evaluation. Will return FUN if FUN is a number | |
1284 or a string." | |
1285 (cond ((numberp fun) | |
30799 | 1286 fun) |
1287 ((stringp fun) | |
1288 fun) | |
1289 (t (apply fun args)))) | |
27016 | 1290 |
1291 (defun bs--get-marked-string (start-buffer all-buffers) | |
1292 "Return a string which describes whether current buffer is marked. | |
1293 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1294 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu. |
27016 | 1295 The result string is one of `bs-string-current', `bs-string-current-marked', |
1296 `bs-string-marked', `bs-string-show-normally', `bs-string-show-never', or | |
1297 `bs-string-show-always'." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1298 (cond ;; current buffer is the buffer we started buffer selection. |
30799 | 1299 ((eq (current-buffer) start-buffer) |
1300 (if (memq (current-buffer) bs--marked-buffers) | |
1301 bs-string-current-marked ; buffer is marked | |
1302 bs-string-current)) | |
1303 ;; current buffer is marked | |
1304 ((memq (current-buffer) bs--marked-buffers) | |
1305 bs-string-marked) | |
1306 ;; current buffer hasn't a special mark. | |
1307 ((null bs-buffer-show-mark) | |
1308 bs-string-show-normally) | |
1309 ;; current buffer has a mark not to show itself. | |
1310 ((eq bs-buffer-show-mark 'never) | |
1311 bs-string-show-never) | |
1312 ;; otherwise current buffer is marked to show always. | |
1313 (t | |
1314 bs-string-show-always))) | |
27016 | 1315 |
1316 (defun bs--get-modified-string (start-buffer all-buffers) | |
1317 "Return a string which describes whether current buffer is modified. | |
1318 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1319 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
27016 | 1320 (if (buffer-modified-p) "*" " ")) |
1321 | |
1322 (defun bs--get-readonly-string (start-buffer all-buffers) | |
1323 "Return a string which describes whether current buffer is read only. | |
1324 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1325 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
27016 | 1326 (if buffer-read-only "%" " ")) |
1327 | |
1328 (defun bs--get-size-string (start-buffer all-buffers) | |
1329 "Return a string which describes the size of current buffer. | |
1330 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1331 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
27016 | 1332 (int-to-string (buffer-size))) |
1333 | |
1334 (defun bs--get-name (start-buffer all-buffers) | |
1335 "Return name of current buffer for Buffer Selection Menu. | |
1336 The name of current buffer gets additional text properties | |
1337 for mouse highlighting. | |
1338 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1339 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
68447
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1340 (propertize (buffer-name) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1341 'help-echo "mouse-2: select this buffer, mouse-3: select in other frame" |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1342 'mouse-face 'highlight)) |
27016 | 1343 |
1344 (defun bs--get-mode-name (start-buffer all-buffers) | |
1345 "Return the name of mode of current buffer for Buffer Selection Menu. | |
1346 START-BUFFER is the buffer where we started buffer selection. | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1347 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
27016 | 1348 mode-name) |
1349 | |
1350 (defun bs--get-file-name (start-buffer all-buffers) | |
1351 "Return string for column 'File' in Buffer Selection Menu. | |
1352 This is the variable `buffer-file-name' of current buffer. | |
27576 | 1353 If current mode is `dired-mode' or `shell-mode' it returns the |
27016 | 1354 default directory. |
1355 START-BUFFER is the buffer where we started buffer selection. | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
1356 ALL-BUFFERS is the list of buffers appearing in Buffer Selection Menu." |
68924
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1357 (propertize (if (member major-mode '(shell-mode dired-mode)) |
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1358 default-directory |
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1359 (or buffer-file-name "")) |
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1360 'mouse-face 'highlight |
526bb84288e1
(bs-mode): Use `buffer-disable-undo'.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
1361 'help-echo "mouse-2: select this buffer, mouse-3: select in other frame")) |
27016 | 1362 |
1363 (defun bs--insert-one-entry (buffer) | |
1364 "Generate one entry for buffer BUFFER in Buffer Selection Menu. | |
1365 It goes over all columns described in `bs-attributes-list' | |
1366 and evaluates corresponding string. Inserts string in current buffer; | |
1367 normally *buffer-selection*." | |
1368 (let ((string "") | |
30799 | 1369 (columns bs-attributes-list) |
1370 (to-much 0) | |
27016 | 1371 (apply-args (append (list bs--buffer-coming-from bs-current-list)))) |
1372 (save-excursion | |
1373 (while columns | |
30799 | 1374 (set-buffer buffer) |
1375 (let ((min (bs--get-value (nth 1 (car columns)))) | |
1376 ;;(max (bs--get-value (nth 2 (car columns)))) refered no more | |
1377 (align (nth 3 (car columns))) | |
1378 (fun (nth 4 (car columns))) | |
1379 (val nil) | |
1380 new-string) | |
1381 (setq val (bs--get-value fun apply-args)) | |
1382 (setq new-string (bs--format-aux val align (- min to-much))) | |
1383 (setq string (concat string new-string)) | |
1384 (if (> (length new-string) min) | |
1385 (setq to-much (- (length new-string) min))) | |
1386 ) ; let | |
1387 (setq columns (cdr columns)))) | |
27016 | 1388 (insert string) |
1389 string)) | |
1390 | |
1391 (defun bs--format-aux (string align len) | |
78972
3ae0d15a80ab
(bs--get-marked-string, bs--get-modified-string, bs--get-readonly-string,
Juanma Barranquero <lekktu@gmail.com>
parents:
78954
diff
changeset
|
1392 "Pad STRING to length LEN with alignment ALIGN. |
27016 | 1393 ALIGN is one of the symbols `left', `middle', or `right'." |
68447
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1394 (let* ((width (length string)) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1395 (len (max len width))) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1396 (format (format "%%%s%ds" (if (eq align 'right) "" "-") len) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1397 (if (eq align 'middle) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1398 (concat (make-string (/ (- len width) 2) ?\s) string) |
0d6e07750ed8
(bs--format-aux): Implement `middle' alignment as described in the docstring for
Juanma Barranquero <lekktu@gmail.com>
parents:
65286
diff
changeset
|
1399 string)))) |
27016 | 1400 |
1401 (defun bs--show-header () | |
1402 "Insert header for Buffer Selection Menu in current buffer." | |
78950
569e6cbc4c70
Don't defvar `fontlock-verbose'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78236
diff
changeset
|
1403 (dolist (string (bs--create-header)) |
569e6cbc4c70
Don't defvar `fontlock-verbose'.
Juanma Barranquero <lekktu@gmail.com>
parents:
78236
diff
changeset
|
1404 (insert string "\n"))) |
27016 | 1405 |
1406 (defun bs--get-name-length () | |
1407 "Return value of `bs--name-entry-length'." | |
1408 bs--name-entry-length) | |
1409 | |
1410 (defun bs--create-header () | |
1411 "Return all header lines used in Buffer Selection Menu as a list of strings." | |
1412 (list (mapconcat (lambda (column) | |
30799 | 1413 (bs--format-aux (bs--get-value (car column)) |
1414 (nth 3 column) ; align | |
1415 (bs--get-value (nth 1 column)))) | |
1416 bs-attributes-list | |
1417 "") | |
1418 (mapconcat (lambda (column) | |
1419 (let ((length (length (bs--get-value (car column))))) | |
1420 (bs--format-aux (make-string length ?-) | |
1421 (nth 3 column) ; align | |
1422 (bs--get-value (nth 1 column))))) | |
1423 bs-attributes-list | |
1424 ""))) | |
27016 | 1425 |
1426 (defun bs--show-with-configuration (name &optional arg) | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1427 "Display buffer list of configuration with name NAME. |
27016 | 1428 Set configuration NAME and determine window for Buffer Selection Menu. |
1429 Unless current buffer is buffer *buffer-selection* we have to save | |
1430 the buffer we started Buffer Selection Menu and the current window | |
1431 configuration to restore buffer and window configuration after a | |
1432 selection. If there is already a window displaying *buffer-selection* | |
1433 select this window for Buffer Selection Menu. Otherwise open a new | |
1434 window. | |
1435 The optional argument ARG is the prefix argument when calling a function | |
1436 for buffer selection." | |
1437 (bs-set-configuration name) | |
1438 (let ((bs--show-all (or bs--show-all arg))) | |
30799 | 1439 (unless (string= "*buffer-selection*" (buffer-name)) |
27016 | 1440 ;; Only when not in buffer *buffer-selection* |
1441 ;; we have to set the buffer we started the command | |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
1442 (setq bs--buffer-coming-from (current-buffer))) |
30799 | 1443 (let ((liste (bs-buffer-list)) |
73859
75ac3e7c76de
(bs--window-for-buffer): Remove.
Juanma Barranquero <lekktu@gmail.com>
parents:
73850
diff
changeset
|
1444 (active-window (get-window-with-predicate |
75ac3e7c76de
(bs--window-for-buffer): Remove.
Juanma Barranquero <lekktu@gmail.com>
parents:
73850
diff
changeset
|
1445 (lambda (w) |
75ac3e7c76de
(bs--window-for-buffer): Remove.
Juanma Barranquero <lekktu@gmail.com>
parents:
73850
diff
changeset
|
1446 (string= (buffer-name (window-buffer w)) |
79104
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
1447 "*buffer-selection*")) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
1448 nil (selected-frame)))) |
30799 | 1449 (if active-window |
1450 (select-window active-window) | |
79104
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
1451 (bs--restore-window-config) |
4801bb53c00e
(bs--window-config-coming-from): Revert 2006-11-09 change.
Juanma Barranquero <lekktu@gmail.com>
parents:
78976
diff
changeset
|
1452 (setq bs--window-config-coming-from (current-window-configuration)) |
73850
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
1453 (when (> (window-height (selected-window)) 7) |
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
1454 (split-window-vertically) |
c089b114a8ec
(bs--redisplay): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73642
diff
changeset
|
1455 (other-window 1))) |
30799 | 1456 (bs-show-in-buffer liste) |
1457 (bs-message-without-log "%s" (bs--current-config-message))))) | |
27016 | 1458 |
1459 (defun bs--configuration-name-for-prefix-arg (prefix-arg) | |
1460 "Convert prefix argument PREFIX-ARG to a name of a buffer configuration. | |
1461 If PREFIX-ARG is nil return `bs-default-configuration'. | |
1462 If PREFIX-ARG is an integer return PREFIX-ARG element of `bs-configurations'. | |
1463 Otherwise return `bs-alternative-configuration'." | |
34048
9e0243647685
Fix typos and spelling errors.
Gerd Moellmann <gerd@gnu.org>
parents:
34043
diff
changeset
|
1464 (cond ;; usually activation |
30799 | 1465 ((null prefix-arg) |
1466 bs-default-configuration) | |
1467 ;; call with integer as prefix argument | |
1468 ((integerp prefix-arg) | |
1469 (if (and (< 0 prefix-arg) (<= prefix-arg (length bs-configurations))) | |
1470 (car (nth (1- prefix-arg) bs-configurations)) | |
1471 bs-default-configuration)) | |
1472 ;; call by prefix argument C-u | |
1473 (t bs-alternative-configuration))) | |
27016 | 1474 |
1475 ;; ---------------------------------------------------------------------- | |
1476 ;; Main function bs-customize and bs-show | |
1477 ;; ---------------------------------------------------------------------- | |
1478 | |
1479 ;;;###autoload | |
1480 (defun bs-customize () | |
1481 "Customization of group bs for Buffer Selection Menu." | |
1482 (interactive) | |
1483 (customize-group "bs")) | |
1484 | |
1485 ;;;###autoload | |
1486 (defun bs-show (arg) | |
30799 | 1487 "Make a menu of buffers so you can manipulate buffers or the buffer list. |
27016 | 1488 \\<bs-mode-map> |
1489 There are many key commands similar to `Buffer-menu-mode' for | |
78954
fad130192ad9
(bs-string-show-normally, bs-sort-functions, bs--get-file-name):
Juanma Barranquero <lekktu@gmail.com>
parents:
78952
diff
changeset
|
1490 manipulating the buffer list and the buffers themselves. |
27016 | 1491 User can move with [up] or [down], select a buffer |
1492 by \\[bs-select] or [SPC]\n | |
1493 Type \\[bs-kill] to leave Buffer Selection Menu without a selection. | |
1494 Type \\[bs-help] after invocation to get help on commands available. | |
1495 With prefix argument ARG show a different buffer list. Function | |
1496 `bs--configuration-name-for-prefix-arg' determine accordingly | |
1497 name of buffer configuration." | |
1498 (interactive "P") | |
1499 (setq bs--marked-buffers nil) | |
1500 (bs--show-with-configuration (bs--configuration-name-for-prefix-arg arg))) | |
1501 | |
39568
e67950065cf9
Change ;;; to ;; for outline-minor-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
38095
diff
changeset
|
1502 ;; Now provide feature bs |
27016 | 1503 (provide 'bs) |
1504 | |
52401 | 1505 ;;; arch-tag: c0d9ab34-bf06-4368-ae9d-af88878e6802 |
27016 | 1506 ;;; bs.el ends here |